in reply to Status of progress bar in perl

Use module Tk::ProgressBar
my $ progress = $ widget-> ProgressBar (      -Width => 20,     -Length => 300,     -From => 0,       -To => 100,     -Colors => [0, "# 0090F0"],     -Gap => 0,     -Troughcolor =>"# A5A5A5" ) -> Pack (qw /-side bottom-fill x-expand 0 /)
Have you worked on PerlTk threads?

Replies are listed 'Best First'.
Re^2: Status of progress bar in perl
by Anonymous Monk on Jul 19, 2011 at 09:18 UTC
    That assumes this is not some kind of GUI automation situation ... :)