bio595 has asked for the wisdom of the Perl Monks concerning the following question:

In the Tk that is on CPAN, there is a method you can call on the main windows that goes like this:
$mw->repeat(10, sub{ #code to be executed });
Every 10 miliseconds the code in the sub would be executed. How do you achieve the same using tkx??

Replies are listed 'Best First'.
Re: tkx repeat
by Anonymous Monk on Dec 06, 2008 at 08:10 UTC
    Use
    Tkx::after( $milisecones, sub { });
        thanks i'll try that