"ast" <[email protected]> a écrit dans le message de 
news:[email protected]...


I have the idea to run an other thread to emit the sound, but I didn't try yet.
Is it the solution ?


nope, still doesn't work !

-------------------------------------------
from tkinter import Tk, Frame
from winsound import Beep

def mybeep():
   Beep(2000, 1000)

root = Tk()

f = Frame(root, width=300, height=300)
f.pack()

f.config(bg='Yellow')
root.after(1, mybeep)
--------------------------------------------
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to