Difference between revisions of "Pause"
From Wiki
(→Example 2) |
|||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{command header|Flow Control}} | {{command header|Flow Control}} | ||
− | {{body|pause|The ''pause'' command will stop execution of the current script, but it can be resumed by pressing the "Play" button. | + | {{body|pause|The ''pause'' command will stop execution of the current script, but it can be resumed by pressing the "Play" button.}} |
− | ==== Example ==== | + | ==== 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 12: | Line 11: | ||
</pre> | </pre> | ||
− | {{ | + | ==== Example 2 ==== |
+ | <pre> | ||
+ | sub somesub | ||
+ | ; If we are debugging, pause script execution here to check current variables... | ||
+ | if %debug | ||
+ | pause | ||
+ | set %something %1 | ||
+ | return %something | ||
+ | </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 |