Is something like this what you are looking for:
use warnings; use strict; use Tk; my $main = MainWindow->new (); my $progressta = $main->Label ()->pack (); for (1..10) { $progressta->configure (-text => "Robocopy is now processing $_"); $main->update (); sleep (2); } MainLoop ();
In reply to Re: Perl Tk--Delay
by GrandFather
in thread Perl Tk--Delay
by FM
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |