Re: [Tkinter-discuss] Tkinter doesnt respond until after wait command

2010-10-09 Thread Firat Ozgul
Hello, Take a look at this code: http://paste-it.net/public/l0b490d/ 2010/10/9 Wave71 > > I create and object (text) > then I want it to wait for about 3 seconds > then I want it to delete that object > > import time > > text = w.create_text(x,y, text) > time.sleep(3) > w.delete(text) > > > Bu

[Tkinter-discuss] Tkinter doesnt respond until after wait command

2010-10-09 Thread Wave71
I create and object (text) then I want it to wait for about 3 seconds then I want it to delete that object import time text = w.create_text(x,y, text) time.sleep(3) w.delete(text) But when I execute this, It waits until the sleep time is done, and then it displays the window, but by then, the