Difference between revisions of "Pause"
From Wiki
(→Example 2) |
(→Example 2) |
||
| (2 intermediate revisions by one other user not shown) | |||
| Line 4: | Line 4: | ||
==== Example 1 ==== | ==== Example 1 ==== | ||
<pre> | <pre> | ||
| − | + | onhotkey F12 | |
| − | + | ||
{ | { | ||
display ok The script is currently paused. press the EasyUO play button to restart. | display ok The script is currently paused. press the EasyUO play button to restart. | ||
| Line 15: | Line 14: | ||
<pre> | <pre> | ||
sub somesub | sub somesub | ||
| − | ; If we are debugging, pause script execution here to check current variables. | + | ; If we are debugging, pause script execution here to check current variables... |
if %debug | if %debug | ||
pause | pause | ||
| Line 22: | Line 21: | ||
</pre> | </pre> | ||
| − | {{ | + | =See Also= |
| + | {{Flow Control}} | ||
Latest revision as of 00:48, 3 May 2008
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 |