Help for this page

Select Code to Download


  1. or download this
    $top->Busy;
    call_you_sub_here();
    $top->Unbusy;
    
  2. or download this
    use Tk;
    my $mw = MainWindow->new;
    $mw->Button(-text => "Goodbye World!", -command =>sub{exit})->pack;
    ...
                -command =>sub{$mw->Busy; sleep 1;$mw->Unbusy;})
       ->pack;
    MainLoop;