Documentation for Axxon PSIM 1.0.0-1.0.1.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

The DISPLAY object corresponds to the Display system object.

The events presented in the table come from the DISPLAY object. Procedures are run when the corresponding event occurs. The event procedure format for the Display object looks like this:

OnEvent("DISPLAY","_id_","_event_")

Description of events of the DISPLAY object:

Event

Description

ACTIVATE

Display is activated

DEACTIVATE

Display is deactivated

ACTIVATEDDisplay is activated on the remote computer. The computer name is transferred in the param0 <> parameter

Operator format to describe actions with the screen is:

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

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

Command – command description

Parameters

Description

ACTIVATE – show display.

macro_slave_id<>

Name of computer on which display is to be shown

DEACTIVATE – hide display.

macro_slave_id<>

Name of computer on which display is to be hidden

Note.

If «macro_slave_id» parameter is not set the command will be performed for all computers in the system.

Properties of the DISPLAY object are shown in the table.

Properties of the DISPLAY object

Description

flags

Flags

id

Object ID

name

Object name

parent_id

Parent object ID

Example of using events and reactions of the DISPLAY object:

  1. Show first display on the CLIENT computer while activating the first time zone.

    OnEvent("TIME_ZONE","1","ACTIVATE")
    {
      DoReact("DISPLAY","1","ACTIVATE","macro_slave_id< CLIENT >");
    }
  • No labels