in reply to Re^3: Simple Tkx loop question
in thread Simple Tkx loop question

Something like the following will work:
# After 100ms call my_routine(). Tkx::after(100, sub { my_routine(); }); Tkx::MainLoop();

Also, if you need a good tutorial on Tkx, check out

http://www.tkdocs.com/tutorial/

There are lots of examples and each example is shown in Tcl, Ruby, Perl, and Python.

Replies are listed 'Best First'.
Re^5: Simple Tkx loop question
by DreamT (Pilgrim) on Feb 26, 2010 at 08:33 UTC
    Thanks, that solved it:-) I will have a look at the tutorial.