in reply to Perl Tk Forgetting a Widget

You are close, your use of packForget is wrong. There is no pack('forget'). Also you need to watch your memory when destroying widgets, Tk has a nasty habit of leaving refcounts around which cause memory gains over time. So try to reuse the $tx variable. Here is how I would do it. Don't destroy the Frame, as that causes an unpleasant window size change.
#!/usr/bin/perl use warnings; use strict; use Tk; my $mw = MainWindow->new; my $mainFrame = $mw->Frame()->pack(-side=>'top'); my $tx; # reuse global to prevent memory gains rebuild(); #setup first use # script is called, runs, outputs to Scrolled above, user # chooses new option and sub clear() is called: my $button = $mw->Button(-text=> 'Clear', -command => \&clear )->pack(); my $button1 = $mw->Button(-text=> 'Rebuild', -command => \&rebuild )->pack(); MainLoop; sub clear{ #$mainFrame ->destroy(); # don't, causes screen jitter $tx->packForget; # $tx ->pack('forget'); #wrong usage #clean out a top level # my @w = $tl->packSlaves; # foreach (@w) { $_->packForget; } } sub rebuild{ $tx = $mainFrame->Scrolled(qw/Text -font normal -width 73 -height 15 -wrap word -scrollbars e/); $tx->pack; tie *STDOUT, 'Tk::Text', $tx; print "foobar!".time."\n"; }

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh

Replies are listed 'Best First'.
Re^2: Perl Tk Forgetting a Widget
by keszler (Priest) on Oct 15, 2011 at 15:28 UTC

    I agree re Tk's nasty habits. I don't understand the desire to destroy/recreate or forget/repack. Why not just clear all the text from the widget?

    sub clear { $tx->delete('1.0','end'); }
      Why not just clear all the text from the widget?

      So he could rebuild another page for that Frame, perhaps a Canvas with a chart on it?


      I'm not really a human, but I play one on earth.
      Old Perl Programmer Haiku ................... flash japh

        That would be a good reason. My statement was in reference to the OP's

        I want to be able to forget/destroy/delete the widget when I move to a new option in the menu so I can create a fresh one to output text from the next script the user will run. [emphasis added]

        If the purpose of destroying or forgetting is to clear the widget, using widget->delete is more efficient.