Go to documentation repository
The NotifyEventGlobal method is used to generate system events. The generated event is transmitted to all system kernels connected via the net. For the NotifyEventGlobal method the event is specified using the MsgObject object.
Method call syntax
function NotifyEventGlobal (msgevent : MsgObject)
Method arguments:
msgevent - required argument. It sets the event transmitted to the system. It takes the following values: MsgObject objects created earlier in the script.
Example. When Macro 1 starts, the first camera is set for recording. The command is to be transmitted to all system kernels as the event to be registered in the Events Log.
Note
While executing this script, camera1 is not set for recording.
if (Event.SourceType == "MACRO"&& Event.SourceId == "1" && Event.Action == "RUN") { var msgevent = CreateMsg(); msgevent.SourceType = "CAM"; msgevent.SourceId = "1"; msgevent.Action = "REC"; NotifyEventGlobal(msgevent); }