Difference between revisions of "Pause"
From Wiki
(→Example 1) |
|||
| Line 20: | Line 20: | ||
return %something | return %something | ||
</pre> | </pre> | ||
| − | + | =See Also= | |
| − | {{ | + | {{Flow Control}} |
Revision as of 16:58, 5 September 2007
Synopsis
pause
Description
The pause command will stop execution of the current script, but it can be resumed by pressing the "Play" button.
Example 1
onhotkey F12
{
display ok The script is currently paused. press the EasyUO play button to restart.
pause
}
Example 2
sub somesub
; If we are debugging, pause script execution here to check current variables.
if %debug
pause
set %something %1
return %something
See Also
Flow Control
- Flow control commands allow scripts to make decisions based on the evaluation of boolean expressions.
| break | Jumps to first statement outside of loop |
| call | Transfers execution to another script file |
| continue | Jumps execution of a loop to next iteration |
| exit | Exits a called script |
| for | Creates a counting loop |
| gosub | Transfers execution to the matching sub |
| goto | Jumps to another part of the script given by a label |
| halt | Stops the script |
| if | Executes code based on the evaluation of an expression |
| pause | Temporarily stops the execution of the current script |
| repeat..until | Creates a loop that checks condition after execution |
| return | Returns from a sub |
| stop | Ends the script |
| while | Creates a loop that checks condition before execution |