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 Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss