ghosh123 has asked for the wisdom of the Perl Monks concerning the following question:
Hi
I have a repeat() function in my perl tk code which should by default invoke a routine every 5 secs.
How can I change its timer through an Entry box widget. Suppose I have an Entry box widget and whatever value I put in it, the repeat() should call the event with that frequency instead of the default.
my $entry = $frame->Entry(-textvariable=>\$time)->pack;
I have seen this link below , but not quite able to figure out how to do it, please give an example
http://search.cpan.org/dist/Tk/pod/after.pod
Thanks.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: perl tk repeat() problem
by BrowserUk (Patriarch) on Feb 22, 2013 at 15:02 UTC | |
|
Re: perl tk repeat() problem
by Anonymous Monk on Feb 22, 2013 at 15:04 UTC |