Documentation for Intellect 4.11.0-4.11.3. Documentation for other versions of Intellect is available too.

Previous page The DoReactSetup method  The NotifyEventStr method Next page


The DoReactGlobal method is used to generate reactions of system objects. The DoReactGlobal method sends a reaction to the required object. The reaction is sent not only to the kernel on which the object is registered, but to the entire system. In the DoReactGlobal method, the reaction is specified by the MsgObject object.

Syntax for method invocation:

 function  DoReactGlobal(msgevent : MsgObject)

Method arguments:

  1. msgevent is a required argument. It specifies the reaction sent to the specified object. Possible values: the MsgObject objects created earlier in the script.

Example. On macro 2, arm sensor 2. The command must be sent to all system kernels as a reaction to be registered in the Event Viewer.

 if (Event.SourceType == "MACRO"&& Event.SourceId == "2" && Event.Action == "RUN")
{
var msgevent = CreateMsg();
msgevent.SourceType = "GRAY";
msgevent.SourceId = "2";
msgevent.Action = "ARM";
DoReactGlobal(msgevent);
}