I don't know how you show your message, but the code below updates the title bar of the main window to "show progress"
use warnings; use strict; use Tk; my $main= MainWindow->new (-title => "Test window"); $main->update (); sleep (2); $main->title ("Message"); $main->update (); sleep (2); $main->title ("Startup done"); MainLoop;
In reply to Re^3: creating simple GUI
by GrandFather
in thread creating simple GUI
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |