How can I access the 'Entry' string in another function?

2006-07-04 Thread arvind
hi all, i've created the myclass instance and calles the function second(). i want to access the text entered in 'w' through Entry widget in function third() i am getting the 'fuction not having 'w' attribute error. how to overcome it? class myclass: senter='arvind' def __init__(self):

Re: How can I access the 'Entry' string in another function?

2006-07-04 Thread Marc 'BlackJack' Rintsch
In [EMAIL PROTECTED], arvind wrote: i've created the myclass instance and calles the function second(). i want to access the text entered in 'w' through Entry widget in function third() i am getting the 'fuction not having 'w' attribute error. how to overcome it? Make `w` an attribute of