Documentation for Intellect 4.10.4. Documentation for other versions of Intellect is available too.

Previous page TELEMETRY_EXT  TIME_ZONE Next page


The MACRO object corresponds to the Macros system object.

The MACRO object sends events presented in the table.  Procedure is started when the corresponding event appears.

Format of events procedure for the Macros object:

OnEvent("MACRO","_id_","_event_")

Event

Description

ParametersParameter descriptions

"RUN"

Action is performed

sender<>The name of the computer on which the macro was executed.
user_id<>The identifier of the user who executed the macro.

Operator format to describe actions with the macros is:

DoReact("MACRO","_id_","_command_" [,"_parameters_"]);

List of commands and parameters for the MACRO object is presented in the following table:

Commandcommand description

Parameters

Description

"RUN" – perform action

-

-

"SETUP" – set parameters for macro

name<>

Object name.

flags<>

Flags.

state<>

Object state.

hidden<>

«Hidden» flag.

local<>

 «Local» flag.


Properties of the MACRO object are shown in the table.

Properties of the MACRO object

Description of properties

ID<>

Object ID.

PARENT_ID<>

Parent object ID.


The MACRO object can be in the following states:

State of the MACRO object

Description

"NORM"

Normal.


Examples of using events and reaction of the MACRO object:

  1. Set the current position of video camera to preset while performing the macro 1.

    OnEvent("MACRO","1","RUN")
    {
        DoReact("TELEMETRY","1","SET_PRESET","TEL_PRIOR<1>");
    }
  2. Perform macro 2 in case of camera is armed.

    OnEvent("CAM","1","ARM")
    {
        DoReact("MACRO", "2", "RUN");
    }
  • No labels