Programming with Delay, Stop, Break, Or, And, and Else commands
When programming in Composer, you have the following Programming Controls available to create advanced programming:
- Delay—Lets you delay an action from taking place.
- Stop—Lets you stop the programming script.
- Break—Lets you break out of a ‘While’ or loop or 'If' statement when a specified condition is met and returns to the programming outside of the loop.
- Or—Lets you group conditionals together with an 'or' logical grouping. If any of the conditionals is true, the programming continues.
- And—Lets you group conditionals together with an 'and' logical grouping. If all of the conditionals are true, the programming continues.
- Else—Lets you program an alternate set of programming for a conditional. If the conditional succeeds, the programming continues under the 'if' statement. If the conditional fails, the programming continues under the 'else' statement.