Re: Clearing the Tkinter Window

2005-12-16 Thread Fredrik Lundh
"Dustan" <[EMAIL PROTECTED]> wrote: >I don't want to destroy the root, I just want to remove the widgets > (the exact opposite of what Martin was saying). I started working on > James' idea, but it'll be a while before I have it fully implemented to > test. each widget has a "children" attribute

Re: Clearing the Tkinter Window

2005-12-16 Thread Dustan
I don't want to destroy the root, I just want to remove the widgets (the exact opposite of what Martin was saying). I started working on James' idea, but it'll be a while before I have it fully implemented to test. -- http://mail.python.org/mailman/listinfo/python-list

Re: Clearing the Tkinter Window

2005-12-16 Thread Martin Franklin
James Stroud wrote: > Dustan wrote: > >>I'm a newbie here, especially with Tkinter. I'm writing a program that >>has 3 phases, if you will, in which I would have to clear the window >>and insert new widgets. Is this possible, and if so, how? I'm writing >>my application class based on Frame, if

Re: Clearing the Tkinter Window

2005-12-15 Thread James Stroud
Dustan wrote: > I'm a newbie here, especially with Tkinter. I'm writing a program that > has 3 phases, if you will, in which I would have to clear the window > and insert new widgets. Is this possible, and if so, how? I'm writing > my application class based on Frame, if that helps at all. > It