Difference between revisions of "Timer.new"

From GiderosMobile
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Class:''' [[Timer]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/Timer|Timer]]<br/>
+
 
=== <translate>Description</translate> ===
+
=== Description ===
<translate><br />
+
Creates a new '''Timer''' object with the specified delay and repeatCount states.
Creates a new [[Special:MyLanguage/Timer|Timer]] object with the specified delay and repeatCount states.<br />
+
<syntaxhighlight lang="lua">
<br /></translate>
+
Timer.new(delay,repeatCount)
<source lang="lua">
+
</syntaxhighlight>
Timer.new(delay,repeatCount)
+
 
</source>
+
=== Parameters ===
=== <translate>Parameters</translate> ===
+
'''delay''': (any) the time interval between timer events in milliseconds<br/>
'''delay''': (any) <translate>The time interval between timer events in milliseconds.</translate> <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/>
'''repeatCount''': (default = 0) <translate>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.</translate> <br/>
 
  
 
{{Timer}}
 
{{Timer}}

Latest revision as of 14: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