Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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
languagejavascript
function DoReactSetup (objtype : String, id : String, param<value> [, param<value>] : String )

Method arguments:

  1. objtype - is a required argument. The It corresponds to the type of the system object the parameters of which are to be changed. It takes the following values:  type – String, range – existing object types.which parameter values you want to set. Possible values: String type, range is limited by object types registered in the system.
  2. id is a required argument. It corresponds to the identification (registration) number of the object specified by the objtype argument. Possible values: String type, range is limited by the identification numbers of id - required argument. Identification number of the object of the type set in the objtype argument. It takes the following values:  type – String, range – existing identification numbers of the objects of the specified type registered in the system.
  3. param<value> - is a required argument. Several You can specify several arguments of this type can be specified. The parameters of the action.. It corresponds to the parameter(s) of the system object reaction.

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
languagejavascript
 if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN")
{
DoReactSetup ("MONITOR","1","REMOVE_ALL","");
}