grandMA3 User Manual Publication
Timer(string, integer, integer[, string[, handle]])
grandMA3 User Manual » Plugins » Lua Functions - Object-Free API » Timer(string, integer, integer[, string[, handle]])
|
Version 2.1
|
Description
The Timer Lua function call a different function using a timer. The other function can be called multiple times using the timer interval.
Arguments
-
Function:
This is the name of the function that is called multiple times using the timer.
-
Integer:
This is the wait time between the calls. The value is in seconds.
-
Integer:
This is the number of times the function is called.
-
Function | nil (optional):
This is an optional argument that is the name of a function that is called when the Timer function is finished.
-
Handle (optional):
This is an optional argument for a handle to an object that is passed to the called function.
Return
This function does not return anything.
Example
This example prints a greeting three times and then calls a clean up function:
Lua |
-- Function that will be called several times. |