Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/04/2011, 21:35
Avatar de razpeitia
razpeitia
Moderador
 
Fecha de Ingreso: marzo-2005
Ubicación: Monterrey, México
Mensajes: 7.321
Antigüedad: 19 años, 8 meses
Puntos: 1360
Respuesta: wx.sound y boton

Código Python:
Ver original
  1. import wx
  2.  
  3. class ventana(wx.Frame):
  4.     def __init__(self,parent):
  5.         wx.Frame.__init__(self,parent)
  6.        
  7.         self.flag = True
  8.        
  9.         self.boton=wx.Button(self,label="inicio",pos=(290,290))
  10.         self.entrada=wx.TextCtrl(self, pos=(200,250))
  11.         self.boton2=wx.Button(self,label="escribir",pos=(200,200))
  12.         self.boton.Bind(wx.EVT_BUTTON,self.onboton)
  13.        
  14.         self.Show()
  15.        
  16.     def onboton(self,event):
  17.         if(self.flag):
  18.             sonido=wx.Sound("hola buenos dias.wav")
  19.             sonido.Play(wx.SOUND_SYNC)
  20.             sonido.Stop()
  21.             self.flag = False
  22. app=wx.App()
  23. ventana(None)
  24. app.MainLoop()

Un simple flag?