in reply to Perl Tk--Delay

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 ();

Perl is Huffman encoded by design.

Replies are listed 'Best First'.
Re^2: Perl Tk--Delay
by FM (Acolyte) on Oct 22, 2005 at 03:28 UTC
    Thanks