in reply to Re: Creating a non-UI event in Perl/Tk
in thread Creating a non-UI event in Perl/Tk
Each iteration of the loop is a few ms, and I call $mw->update after adjusting the ProgressBar once each loop. Works like a charm, thank you again!my $mw = Tk::MainWindow; # set up all the widgets... $mw->after(0,\&main_loop); sub main_loop { ... }
|
|---|