守株待兔
2011-08-23 09:38:39 UTC
here is the code
from Tkinter import *
class Alarm(Frame):
def __init__(self):
Frame.__init__(self)
self.bell()
if __name__ == '__main__':
Alarm().mainloop()
there is no sound when it run ,why?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tkinter-discuss/attachments/20110823/9febde38/attachment.html>
from Tkinter import *
class Alarm(Frame):
def __init__(self):
Frame.__init__(self)
self.bell()
if __name__ == '__main__':
Alarm().mainloop()
there is no sound when it run ,why?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tkinter-discuss/attachments/20110823/9febde38/attachment.html>