> 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
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
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.
--