Re: Update Label when Scale value changes

2005-04-19 Thread Kent Johnson
codecraig wrote: Yea that is what i needed. Can you recommend a good Tkinter site (or book, but preferably site) about learning Tkinter. I've tried: http://www.python.org/moin/TkInter http://www.pythonware.com/library/tkinter/introduction/ I also like http://infohost.nmt.edu/tcc/help/pubs/tkinter/

Re: Update Label when Scale value changes

2005-04-19 Thread Jørgen Cederberg
codecraig wrote: Yea that is what i needed. Can you recommend a good Tkinter site (or book, but preferably site) about learning Tkinter. I've tried: http://www.python.org/moin/TkInter http://www.pythonware.com/library/tkinter/introduction/ But I am looking for more about events, etc. Thanks Hi the

Re: Update Label when Scale value changes

2005-04-19 Thread codecraig
Yea that is what i needed. Can you recommend a good Tkinter site (or book, but preferably site) about learning Tkinter. I've tried: http://www.python.org/moin/TkInter http://www.pythonware.com/library/tkinter/introduction/ But I am looking for more about events, etc. Thanks -- http://mail.pyt

Re: Update Label when Scale value changes

2005-04-19 Thread Jørgen Cederberg
codecraig wrote: Hi, I am using Tkinter and I have a Label and a Scale. I want to update my label everytime the Scale value changes. What is the best way of doing this? Do i have to bind for every event type? Or is there some better way? If I do have to bind each type of event to the scale,

Update Label when Scale value changes

2005-04-19 Thread codecraig
Hi, I am using Tkinter and I have a Label and a Scale. I want to update my label everytime the Scale value changes. What is the best way of doing this? Do i have to bind for every event type? Or is there some better way? If I do have to bind each type of event to the scale, what types occur