Difference between revisions of "Timer.new"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | + | '''Available since:''' Gideros 2011.6<br/> | |
− | ''' | + | '''Class:''' [[Timer]]<br/> |
− | ''' | + | |
− | === | + | === Description === |
− | + | Creates a new '''Timer''' object with the specified delay and repeatCount states. | |
− | Creates a new | ||
− | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
− | + | Timer.new(delay,repeatCount) | |
− | </ | + | </syntaxhighlight> |
− | === | + | |
− | '''delay''': (any) | + | === Parameters === |
− | '''repeatCount''': | + | '''delay''': (any) the time interval between timer events in milliseconds<br/> |
+ | '''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<br/> | ||
{{Timer}} | {{Timer}} |
Latest revision as of 13:34, 22 November 2023
Available since: Gideros 2011.6
Class: Timer
Description
Creates a new Timer object with the specified delay and repeatCount states.
Timer.new(delay,repeatCount)
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