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?_______________________________________________ Tkinter-discuss mailing list [email protected] http://mail.python.org/mailman/listinfo/tkinter-discuss
