Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. id is a required argument. It specifies the timer ID. Possible values : are int or string type.
  2. milliseconds is a required argument. It specifies the period with which the timer will trigger if it is not stopped by the KillTimer method. It is specified in milliseconds. Possible values: int type.

...

Code Block
if(Event.SourceType=="LOCAL_TIMER" && Event.Action=="TRIGGERED" && Event.SourceId==333) // you can specify Event.SourceId == "333", that is use the string identifier type 
{
  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
}