in reply to Re^2: creating simple GUI
in thread creating simple GUI
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;
|
|---|