RobotStudio event

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