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,

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?