Re: Help please! strange Tkinter behavior has me totally baffled.

2010-08-25 Thread Steve Ferg
Thanks mucho! That was it! -- Steve Ferg -- http://mail.python.org/mailman/listinfo/python-list

Help please! strange Tkinter behavior has me totally baffled.

2010-08-24 Thread Steve Ferg
I have a short Python script that uses Tkinter to display an image. Here is the script === import sys, os from Tkinter import * root = Tk() # A: create a global variable named root def showPicture(imageFilename): # global

Re: Help please! strange Tkinter behavior has me totally baffled.

2010-08-24 Thread Peter Otten
Steve Ferg wrote: I have a short Python script that uses Tkinter to display an image. Here is the script === import sys, os from Tkinter import * root = Tk() # A: create a global variable named root def