in reply to Re^2: [Tkx] Buffering/Updating issue for text element
in thread [Tkx] Buffering/Updating issue for text element
Here is one way to make a non-blocking delay without sleep
#!/usr/bin/perl use warnings; use strict; use Tk; $|=1; my $count = 0; my $loop = 0; my $mw = new MainWindow(); $mw->Label( -textvariable => \$count )->pack; $mw->Button( -text => 'Start', -command => \&long_job ) ->pack( -side => 'left' ); $mw->Button( -text => 'Stop', -command => sub { $loop = 0; print "$cou +nt\n"; } ) ->pack( -side => 'left' ); MainLoop(); sub long_job { my $var; my $timer = $mw->repeat(1000, sub{$var++} ); $loop =1; while($loop){ $loop++; $mw->waitVariable(\$var); $count++; } DoOneEvent(); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: [Tkx] Buffering/Updating issue for text element
by Anonymous Monk on Aug 28, 2010 at 11:52 UTC | |
by zentara (Cardinal) on Aug 28, 2010 at 12:08 UTC |