Go to documentation repository
The DoReactSetup method is used for to temporary changing change the parameters of the system object. It The method changes only the specified parameters of the object, leaving other parameters intactunchanged.
Method call syntaxSyntax for method invocation:
Code Block | ||
---|---|---|
| ||
function DoReactSetup (objtype : String, id : String, param<value> [, param<value>] : String ) |
Method arguments:
Syntax for setting a value to a parameter corresponds to a stringOne parameter has the following syntax:
“param<value>”, where
param – is a name of the parameter;
value – is a value of the parameter.
Several parameters have the following syntaxSyntax for setting a value to several parameters corresponds to a string:
“param1<value1>,param2<value2>…”.
Elements of the list are separated by commas with no white spacewithout spaces.
The Possible values of the param argument can take the following values: values of the : String type, range is limited by the available parameters of the specified action. The “value” argument can take the following values: reaction. Possible values of the value argument: String type, the range depends on the parameter that you want to set.
Example. When Macro On macro 1 starts, temporary remove all cameras on from the first monitor.
Code Block | ||
---|---|---|
| ||
if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN") { DoReactSetup ("MONITOR","1","REMOVE_ALL",""); } |