abort: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added version.)
(Added version change.)
Line 20: Line 20:
Hah! you will never see this! [abort(0)]
Hah! you will never see this! [abort(0)]
</source>
</source>
|changes=
{{change|1.3b49|No message is displayed if called from a macroLink.}}
}}
}}
[[Category:Miscellaneous Function]]
[[Category:Miscellaneous Function]]

Revision as of 21:56, 22 March 2009

abort() Function

Introduced in version 1.3b42
Aborts the execution of the current macro and discards all output from the macro if the argument is 0. This function is generally used to abort the processing of a macro if user clicks on the cancel button on a dialog created with the input() function. Any properties set before the abort will contain the values you set them to. That is abort(0) will not undo any changes you made

Usage

abort(num)

Examples

The following example will create a dialog box for the user to enter a value for the variable named blah, if the user clicks on cancel then res will be 0 so the abort() function will cause the macro to terminate, otherwise res will not be 0 so the macro will continue.
[h: res = input("blah")] [h: abort(res)]

This example discards any output in the macro.

Hah! you will never see this! [abort(0)]

Version Changes

  • 1.3b49 - No message is displayed if called from a macroLink.