UI window
From UBot Studio
(Difference between revisions)
(Created page with "This command is a UI Command. This command will allow you to create a settings window that you can find under the settings drop down in UBot Studio. You can p...") |
|||
| (2 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
This command is a [[UI Commands|UI Command]]. This command will allow you to create a settings window that you can find under the | This command is a [[UI Commands|UI Command]]. This command will allow you to create a settings window that you can find under the | ||
| − | settings drop down in UBot Studio. You can place other UI commands within the UI window command instead of the arranging them on the UI. | + | settings drop down in UBot Studio. ' |
| + | |||
| + | You can place other UI commands within the UI window command instead of the arranging them on the UI. | ||
| + | |||
| + | '''Label:''' refers to the label for the UI Window. | ||
| + | |||
| + | |||
== Example == | == Example == | ||
| Line 16: | Line 22: | ||
| − | [[File: | + | [[File:ppp5.jpg]] |
Latest revision as of 18:10, 26 December 2016
This command is a UI Command. This command will allow you to create a settings window that you can find under the settings drop down in UBot Studio. '
You can place other UI commands within the UI window command instead of the arranging them on the UI.
Label: refers to the label for the UI Window.
[edit] Example
navigate("http://www.ubotstudio.com/playground/simple-form", "Wait")
ui window("Settings") {
ui text box("name:", #name)
}
type text(<username field>, #name, "Standard")
Running the command types the value of the UI text box in the UI window into the specified field.
