Forum Migration Notice
We're transitioning to a more modern community platform by the end of this year. Learn about the upcoming changes and what to expect.

Suspend event routine check

There is a way to suspend the execution or prevent the execution of Event routine ? like iSleep to the trap routine ?

Thanks !

Comments

  • soup
    soup ✭✭✭
    Conditional logic in the routine to determine what to do?
  • It was my second option if there isn't a way to sleep the event.
  • lemster68
    lemster68 ✭✭✭
    edited March 2018
    IF conditionX = TRUE THEN
      do stuff here;
    ELSE
      ! do nothing
      optional:  RETURN;
    ENDIF
    Lee Justice