Go to documentation repository
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:
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); }