Re: [Tutor] A problem with a Tkinter program (using the text widget)

2005-02-05 Thread Alan Gauld
> Whats wrong here ?? : > from Tkinter import * > def p_text(): > print text.get() > root=Tk() > text=Text(root).pack() pack() retirns None, YOu *must* use two steps: text = Text() text.pack() > button=Button(root,text="Click here!!",command=p_text).pack() > root.mainloop() > > I get an

Re: [Tutor] A problem with a Tkinter program (using the text widget)

2005-02-05 Thread Kent Johnson
Mark Kels wrote: Hi all. Whats wrong here ?? : from Tkinter import * def p_text(): print text.get() root=Tk() text=Text(root).pack() pack() doesn't return a value. You have to do text = Text(root) text.pack() I've been bitten by this one more than once myself :-( Kent button=Button(root,text="C

[Tutor] A problem with a Tkinter program (using the text widget)

2005-02-05 Thread Mark Kels
Hi all. Whats wrong here ?? : from Tkinter import * def p_text(): print text.get() root=Tk() text=Text(root).pack() button=Button(root,text="Click here!!",command=p_text).pack() root.mainloop() I get an error that says that nontype object has no attribute 'get'... whats wrong ?? Thanks. --