execFunction: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Remove caution warning.) |
||
Line 5: | Line 5: | ||
|description= | |description= | ||
Executes a built-in macro function or user-defined function (UDF) on one or more clients. No output from the executed function will be presented on the targets. {{func|execFunction}} allows you to defer the running of the function until after the currently running macro has ended. If you defer a series of {{func|execFunction}} calls, they will be queued in order and executed after the currently running macro. | Executes a built-in macro function or user-defined function (UDF) on one or more clients. No output from the executed function will be presented on the targets. {{func|execFunction}} allows you to defer the running of the function until after the currently running macro has ended. If you defer a series of {{func|execFunction}} calls, they will be queued in order and executed after the currently running macro. | ||
|usage= | |usage= | ||
Revision as of 20:27, 5 April 2021
execFunction() Function
Note: This function can only be used in a Trusted Macro
• Introduced in version 1.5.7
Executes a built-in macro function or user-defined function (UDF) on one or more clients. No output from the executed function will be presented on the targets. execFunction() allows you to defer the running of the function until after the currently running macro has ended. If you defer a series of execFunction() calls, they will be queued in order and executed after the currently running macro.
Usage
execFunction(functionName, arguments)
execFunction(functionName, arguments, defer)
execFunction(functionName, arguments, defer, targets)
execFunction(functionName, arguments, defer, targets, delim)
Parameters
functionName
- The function to "execute".arguments
- A JSON array of arguments for the function.defer
- Executes the function after the current macro has completed if non zero, defaults to zero.targets
- are the user names (so not token names) but the names of the users that are logged in. The options "gm", "gm-self", "self", "not-self", "not-gm", "not-gm-self", "none", and "all" are also valid parameters to give. E.g.: "tim, tom, tarra". Defaults to self (so if no parameter is given the function is executed locally only).delim
- The delimiter used to separate the values in the String List that is given, defaults to","
. If"json"
is specified, a JSON array is expected instead of a String List.
Example
To run a song on every client, the GM can use
[h: song = "https://ia800300.us.archive.org/29/items/Muzyka-CC/Aleksand_Sjakin_-_Flight_in_space.mp3"]
[h: execFunction("playStream", json.append("[]", song, 1, 0.8), 0, "all")]