Stop Script
From UBot Studio
(Difference between revisions)
(Created page with "This command will stop the script and is generally used for debugging purposes. Clicking the run button runs the the script from the beginning. == Example == <pre> load html(...") |
|||
(2 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | This command will stop the script and is generally used for debugging purposes. Clicking the run button runs the the script from the beginning. | + | |
+ | This command is a [[Flow Commands|Flow Command]]. This command will stop the script and is generally used for debugging purposes. Clicking the run button runs the the script from the beginning. | ||
== Example == | == Example == | ||
Line 8: | Line 9: | ||
</pre> | </pre> | ||
+ | |||
Running the script will run the first command and stop after doing so, since the pause command is under the first command. No other commands will be able to run after that stop script command. | Running the script will run the first command and stop after doing so, since the pause command is under the first command. No other commands will be able to run after that stop script command. | ||
− | [[File:stop. | + | |
+ | [[File:stop.jpg]] |
Latest revision as of 15:38, 16 September 2013
This command is a Flow Command. This command will stop the script and is generally used for debugging purposes. Clicking the run button runs the the script from the beginning.
[edit] Example
load html("hello world!") stop script navigate("http://www.ubotstudio.com/resources", "Wait")
Running the script will run the first command and stop after doing so, since the pause command is under the first command. No other commands will be able to run after that stop script command.