in reply to Cursor busy annoyance
#!/usr/bin/perl use warnings; use strict; use Tk; my $mw = MainWindow->new(); $mw->geometry('200x200+500+500'); my $message = $mw->Label( -text => "busy cursor test")->pack( -fill => 'x' ); #comment this block out for normal busy operation { no warnings; sub Tk::Widget::Busy{} } $mw->repeat(500, sub{ $mw->Busy }); $mw->repeat(600, sub{ $mw->Unbusy }); MainLoop();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Cursor busy annoyance
by Butch (Novice) on May 12, 2006 at 13:36 UTC |