|
NAMETk::ProgressIndicator - Another, simpler ProgressBar SYNOPSIS use Tk::ProgressIndicator;
my $MainWindow = MainWindow->new();
$ProgressIndicator = $MainWindow->ProgressIndicator
(
'-current' => 0,
'-limit' => 200,
'-increment' => 10,
'-height' => 20,
'-width' => 400
);
Tk::MainLoop;
...
$ProgressIndicator->configure ('-current' => ++$index);
DESCRIPTIONA progress bar widget. AUTHORSDamion K. Wilson, dkw@rcm.bm HISTORYPOD ERRORSHey! The above document had some coding errors, which are explained below:
|