Timer.new
From GiderosMobile
Available since: Gideros 2011.6
Class: Timer
Description
Creates a new Timer object with the specified delay and repeatCount states.
<syntaxhighlight lang="lua">
Timer.new(delay,repeatCount)
</source>
Parameters
delay: (any) The time interval between timer events in milliseconds.
repeatCount: The number of repetitions. A value of 0 runs the timer infinitely. If nonzero, the timer runs the specified number of times and then stops.