Re: Tk window and contents will not display

2010-08-14 Thread Chris Hare
On Aug 14, 2010, at 6:46 PM, Peter Otten wrote: > Chris Hare wrote: > >> >> On Aug 14, 2010, at 5:49 PM, Peter Otten wrote: >> >>> Chris Hare wrote: >>> Thanks Peter. I threw away what I started with and merged your code into my class: class externalLoopDisplay: >>

Re: Tk window and contents will not display

2010-08-14 Thread Peter Otten
Chris Hare wrote: > > On Aug 14, 2010, at 5:49 PM, Peter Otten wrote: > >> Chris Hare wrote: >> >>> Thanks Peter. I threw away what I started with and merged your code >>> into my class: >>> >>> class externalLoopDisplay: >>> >>>def show(self): >>>main.logging.debug("externalLoop

Re: Tk window and contents will not display

2010-08-14 Thread Chris Hare
On Aug 14, 2010, at 5:49 PM, Peter Otten wrote: > Chris Hare wrote: > >> Thanks Peter. I threw away what I started with and merged your code into >> my class: >> >> class externalLoopDisplay: >> >>def show(self): >>main.logging.debug("externalLoopDisplay.show:","start") >> >>

Re: Tk window and contents will not display

2010-08-14 Thread Peter Otten
Chris Hare wrote: > Thanks Peter. I threw away what I started with and merged your code into > my class: > > class externalLoopDisplay: > > def show(self): > main.logging.debug("externalLoopDisplay.show:","start") > > self.window = Tk() > > self.btnClose = Butt

Re: Tk window and contents will not display

2010-08-14 Thread Chris Hare
On Aug 14, 2010, at 3:14 PM, Peter Otten wrote: > Chris Hare wrote: > >> The scenario is this: >> >> I want to loop around all of the images in a given directory (which I know >> will be images, but I guess I should check), show an image in a window, >> wait 2 seconds and show the next one and

Re: Tk window and contents will not display

2010-08-14 Thread Peter Otten
Chris Hare wrote: > The scenario is this: > > I want to loop around all of the images in a given directory (which I know > will be images, but I guess I should check), show an image in a window, > wait 2 seconds and show the next one and repeat that indefinitley, which > will be until the user cl