Re: [Tutor] tkSimpleDialog, Tkinter, and IDLE

2008-02-18 Thread Kent Johnson
Wayne Watson wrote: > Is tkSimpleDialog really a part of Tkinter? It's kind of an add-on, I guess, not in the main Tkinter module: http://docs.python.org/lib/node685.html > I sometimes see code that has: > > from tkinter import * > import tkSimpleDialog > > The from gets all the names, function

Re: [Tutor] tkSimpleDialog, Tkinter, and IDLE

2008-02-18 Thread Ryan
I don't know anything about tkSimpleDialog, but when you try "import tkinter", make sure it's "import Tkinter". The "T" in Tkinter must be capitalized. On Mon, 2008-02-18 at 07:09 -0800, Wayne Watson wrote: > Is tkSimpleDialog really a part of Tkinter? The reason I ask is that it seems > to be neg

[Tutor] tkSimpleDialog, Tkinter, and IDLE

2008-02-18 Thread Wayne Watson
Is tkSimpleDialog really a part of Tkinter? The reason I ask is that it seems to be neglected in material on Tkinter. For example, in by Shipman. Further, I sometimes see code that has: from tkinter import * import tkSimpleDialog The from gets all the names, functions too, so why is it i