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";
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.