in reply to Cursor busy annoyance

Hi, I can't say what the hidden ramifications of this will do to your system, because the Busy method prevents any input while busy, but try this:
#!/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();

I'm not really a human, but I play one on earth. flash japh

Replies are listed 'Best First'.
Re^2: Cursor busy annoyance
by Butch (Novice) on May 12, 2006 at 13:36 UTC
    Thanks again Zentara

    That seems to do the trick!

    Cheers.