in reply to Re: Perl/Tk and "wait" box
in thread Perl/Tk and "wait" box
You can display and update TK windows without ever using MainLoop()
There are two methods you can call to do this
$widget->idletasks;
and
$widget->update;
idletasks will not take new input into account, update will.
You can look at the Tk::Widget docs to find out more about them.