UI button
From UBot Studio
(Difference between revisions)
(Created page with "This command is a UI Command. This command creates a button on the UI area within your bot. After dragging the command into the scripting area, you can fill t...") |
|||
Line 1: | Line 1: | ||
This command is a [[UI Commands|UI Command]]. | This command is a [[UI Commands|UI Command]]. | ||
− | This command creates a button on the UI area within your bot. After dragging the command into the scripting area, you can fill the command with others commands, and the end user will only have to click that button to run the task within the command. Clicking the Run button in UBot Studio does not execute the commands. | + | This command creates a button on the UI area within your bot. |
+ | |||
+ | After dragging the command into the scripting area, you can fill the command with others commands, and the end user will only have to click that button to run the task within the command. | ||
+ | |||
+ | Clicking the Run button in UBot Studio does not execute the commands. | ||
== Example == | == Example == |
Revision as of 15:37, 14 April 2013
This command is a UI Command. This command creates a button on the UI area within your bot.
After dragging the command into the scripting area, you can fill the command with others commands, and the end user will only have to click that button to run the task within the command.
Clicking the Run button in UBot Studio does not execute the commands.
Example
ui button("Google Search") { navigate("google.com", "Wait") wait(5) type text(<name="q">, "Taupe", "Standard") }
Clicking the button on the UI labeled Google Search navigates to google and searches for the word "Taupe".