repeat tkinter

R

Robin

How can I make a command within a tkinter application repeat itself
over and over in intervals of a certain time.
Thanks,
-Robin
 
P

Peter Otten

Robin said:
How can I make a command within a tkinter application repeat itself
over and over in intervals of a certain time.
.... global color
.... if color == "blue":
.... color = "red"
.... else:
.... color = "blue"
.... root["background"] = color
.... root.after(500, switch_color)
....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,174
Messages
2,570,940
Members
47,486
Latest member
websterztechnologies01

Latest Threads

Top