Re: Tkinter how to access the widget by name

2012-10-16 Thread woooee
On Oct 14, 1:11 pm, Владимир Пылев clinicalf...@gmail.com wrote: label = Label(frame, width = 40, text='text', name = 'name') ... name_='name' configure(name_) ... def configure(name_)         #And how can that be?         # At least let the text you want to change I do not

Re: Tkinter how to access the widget by name

2012-10-16 Thread Владимир Пылев
вторник, 16 октября 2012 г., 2:26:22 UTC+4 пользователь Prasad, Ramit написал: ? wrote: I'm a little teapot ... himself the question: if I want to appeal to the widget, knowing his name... ? # appropriated the name of the widget label = Label(frame, width = 40,

RE: Tkinter how to access the widget by name

2012-10-15 Thread Prasad, Ramit
? wrote: I'm a little teapot ... himself the question: if I want to appeal to the widget, knowing his name... ? # appropriated the name of the widget label = Label(frame, width = 40, text='text', name = 'name') ... name_='name' configure(name_) ... def configure(name_)

Tkinter how to access the widget by name

2012-10-14 Thread Владимир Пылев
I'm a little teapot ... himself the question: if I want to appeal to the widget, knowing his name... ? # appropriated the name of the widget label = Label(frame, width = 40, text='text', name = 'name') ... name_='name' configure(name_) ... def configure(name_) #And how can that be?