in reply to Delete the text widget contents using perl_tk

use the following way
use Tk; use Tk::Text ; . . . my $txt = $mw->Text( -background =>'white', )-> pack (); . . . $txt -> delete('1.0','end');
Refer the Links.
Tk::Text

--$ugum@r--

Replies are listed 'Best First'.
Re^2: Delete the text widget contents using perl_tk
by choroba (Cardinal) on Apr 17, 2010 at 07:48 UTC
    Please, do not link to sites that break copyright.
      Ok, I removed the copyright link. Actually I don't know this.