Re: RE: Calling parent's method

2005-12-20 Thread Артем Аветисян
Thanks, Jack. I wasn't smart enough to read 'Scrolled' documentation carefully ;) According to the UNDO stack issue, $text_undo->Tk::Text::delete('1.0', 'end'); really does not present in the $text_undo->{UNDO} array. Artem A. Avetisyan. P.S. It is strange how many useful features are kept off d

RE: Calling parent's method

2005-12-19 Thread Jack D.
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of ? > Sent: December 19, 2005 7:48 AM > To: perl-win32-users@listserv.ActiveState.com > Subject: Calling parent's method > > Why is that > > $text_undo = $down_packer1->Scrolled( >

Re: Calling parent's method

2005-12-19 Thread Reinhard Pagitsch
Артем Аветисян wrote: $text_undo->Tk::Text::delete('1.0', 'end'); #I need Tk::Text::delete in order not to disturb UNDO stack I think it have to be $text_undo->delete('1.0', 'end'); The pack for the scroled: ->pack(qw/-expand yes -fill both/); regards, Reinhard ___