Decrement
From UBot Studio
(Difference between revisions)
(Created page with "Decrement is a Data Command. This command will decrement a variable set to a number by one. == Example == <pre> navigate("http://www.google.com/", "Wait")...") |
(→Example) |
||
Line 3: | Line 3: | ||
This command will decrement a variable set to a number by one. | This command will decrement a variable set to a number by one. | ||
== Example == | == Example == | ||
+ | |||
+ | |||
<pre> | <pre> | ||
Line 14: | Line 16: | ||
</pre> | </pre> | ||
+ | |||
+ | |||
The number 5 in the variable #one is decremented until it gets to 0. | The number 5 in the variable #one is decremented until it gets to 0. | ||
Notice that in order to decrement the number in the variable, the variable is inserted into the decrement command. | Notice that in order to decrement the number in the variable, the variable is inserted into the decrement command. | ||
+ | |||
+ | |||
+ | |||
[[File:decrement.png]] | [[File:decrement.png]] |
Revision as of 18:06, 22 March 2013
Decrement is a Data Command.
This command will decrement a variable set to a number by one.
Example
navigate("http://www.google.com/", "Wait") set(#one, 5, "Global") loop(5) { decrement(#one) type text(<name="q">, #one, "Standard") }
The number 5 in the variable #one is decremented until it gets to 0.
Notice that in order to decrement the number in the variable, the variable is inserted into the decrement command.