Go to documentation repository
...
| Code Block |
|---|
if(Event.SourceType=="LOCAL_TIMER" && Event.Action=="TRIGGERED" && Event.SourceId==333) //it is possible to use Event.SourceId == "333", i.e. string ID
{
var actuallyKilled = KillTimer(333);
if(actuallyKilled == 1)
{
DoReactStr("CAM","1","REC","");
}
}
if(Event.SourceType=="MACRO"&& Event.SourceId == "1" && Event.Action == "RUN")
{
SetTimer(333,2000); //333 - id, 2000 msec = 2 sec - period
} |