Re: A smallish Tkinter question

2005-04-25 Thread Miki Tebeka
Hello Nick, > """ > What I want: A little window to open with a 0 in it. Every second, the > 0 should increment by 1. > What I get: A one second delay, see the window with a 1 in it, and then > nothing appears to happen. Never see the 0, never see a 2. Any quick > clues? Thanks. Nick. (Python 2.4

Re: A smallish Tkinter question

2005-04-21 Thread mediocre_person
***Many*** thanks. I was getting right confused, but this is pretty clear. I had also tried, in run(...): while True: sleep(1.0) ... But it's clear from your response why this also didn't work! Nick. -- http://mail.python.org/mailman/listinfo/python-list

Re: A smallish Tkinter question

2005-04-21 Thread Fredrik Lundh
Mediocre Person wrote: What I want: A little window to open with a 0 in it. Every second, the 0 should increment by 1. What I get: A one second delay, see the window with a 1 in it, and then nothing appears to happen. Never see the 0, never see a 2. Any quick clues? Thanks. Nick. (Python 2.4, Win9

Re: A smallish Tkinter question

2005-04-21 Thread Martin Franklin
[EMAIL PROTECTED] wrote: """ What I want: A little window to open with a 0 in it. Every second, the 0 should increment by 1. What I get: A one second delay, see the window with a 1 in it, and then nothing appears to happen. Never see the 0, never see a 2. Any quick clues? Thanks. Nick. (Python 2.4

Re: A smallish Tkinter question

2005-04-21 Thread Kent Johnson
[EMAIL PROTECTED] wrote: """ What I want: A little window to open with a 0 in it. Every second, the 0 should increment by 1. What I get: A one second delay, see the window with a 1 in it, and then nothing appears to happen. Never see the 0, never see a 2. Any quick clues? Thanks. Nick. (Python 2.4

A smallish Tkinter question

2005-04-21 Thread mediocre_person
""" What I want: A little window to open with a 0 in it. Every second, the 0 should increment by 1. What I get: A one second delay, see the window with a 1 in it, and then nothing appears to happen. Never see the 0, never see a 2. Any quick clues? Thanks. Nick. (Python 2.4, Win98). """ from Tkint