in reply to run command every x seconds
In the context of a Tk GUI, you probably want to check out something called "Tk::after" (I'm not sure how to link to an online man page for that, but if you have Perl Tk installed, just run "perldoc Tk::after")while (1) { # do something, then… sleep( $x ); # maybe do something else... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: run command every x seconds (Tk links)
by kcott (Archbishop) on Feb 27, 2014 at 07:56 UTC | |
|
Re^2: run command every x seconds
by amboxer21 (Sexton) on Feb 27, 2014 at 04:48 UTC | |
by graff (Chancellor) on Feb 27, 2014 at 05:01 UTC |