Versions Compared

Key

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

MAP Map

The format of the events procedure for the Map:

Code Block
OnEvent("MAP", "_id_","_event_" [,"_parameters_"])

Operator format to describe actions with the Map:

Code Block
DoReact("MAP","_id_","_command_" [,"_parameters_"]);

Example. Hide Camera 10 on Map 1 on Macro 10.

Code Block
OnEvent("MACRO","10","RUN")
{
    DoReact("MAP","1","HIDE_OBJECT","objtype<CAM>,objid<10>,hide<1>");
}