Timer.
UITimer(<period>,<action>,[<data>]) --> UITimer object
// Run showTime() each second. t := UITimer( 1000, {|data| showTime() } )
Andrey Cherepanov <<skull@eas.lrn.ru>>
No dependies of platform.
Restart timer with new parameters.
start([<period>],[<action>],[<data>]) <period> - Number. New period in milliseconds (1/1000 second) between <action> call. <action> - Code block. New called code block. <data> - Any type. New data connected to timer.
No arguments
Returns NIL.
Stop running timer.
stop()
No arguments
Returns NIL.
Constructor. Run timer.
UITimer(<period>,<action>,[<data>]) --> UITimer object
Returns NIL.