ON ERROR

From Macros Wiki
Revision as of 21:51, 8 May 2015 by Mikeo (talk | contribs) (Created page with "{{Up}} {{Command|syntax=ON_ERROR GOTO <label> |description=:If there is an error in the macro this command will goto the defined label and continue the...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Up

Command

ON_ERROR GOTO <label>


If there is an error in the macro this command will goto the defined label and continue the macro from there.

Parameters

<label>
A custom label for the macro. It must be on a new line and it must start with a colon. All the text after the colon is the label name.

Example

ON_ERROR GOTO MyError