Go to documentation repository
The SetObjectState method changes the state of objects.
Method call syntax
function SetObjectState(objtype : String, id : String, state : String)
Method arguments:
Usage examples
Example. Check if Camera 1 is armed every hour. If Camera 1 is disarmed, arm it.
Note
The Timer object with identification number 1 should be created beforehand. Set the Minutes parameter of the Timer object to 30.The timer would go off every hour at half past the hour – 09:30, 10:30, 11:30, etc.
if (Event.SourceType == "TIMER" && Event.SourceId == "1" && Event.Action == "TRIGGER") { if (GetObjectState("CAM", "1") == "DISARMED") { SetObjectState("CAM", "1", "ARMED"); } }