Código Python:
Ver originalimport wx
class ventana(wx.Frame):
def __init__(self,parent):
wx.Frame.__init__(self,parent)
self.flag = True
self.boton=wx.Button(self,label="inicio",pos=(290,290))
self.entrada=wx.TextCtrl(self, pos=(200,250))
self.boton2=wx.Button(self,label="escribir",pos=(200,200))
self.boton.Bind(wx.EVT_BUTTON,self.onboton)
self.Show()
def onboton(self,event):
if(self.flag):
sonido=wx.Sound("hola buenos dias.wav")
sonido.Play(wx.SOUND_SYNC)
sonido.Stop()
self.flag = False
app=wx.App()
ventana(None)
app.MainLoop()
Un simple flag?