Set Visibility
From UBot Studio
(Difference between revisions)
(Created page with "$Set Visibility is a Settings Command in the Professional edition of UBot Studio. This command will allow you to determine the visibility of certain tas...") |
(→Example) |
||
Line 18: | Line 18: | ||
set visibility("Visible") | set visibility("Visible") | ||
navigate("http://www.ubotstudio.com/resources", "Wait") | navigate("http://www.ubotstudio.com/resources", "Wait") | ||
− | <pre> | + | </pre> |
Running this script will navigate to the url while displaying the webpage in the browser. | Running this script will navigate to the url while displaying the webpage in the browser. |
Revision as of 21:05, 15 December 2012
$Set Visibility is a Settings Command in the Professional edition of UBot Studio.
This command will allow you to determine the visibility of certain tasks you run within the browser. If you set the visibility to Invisible, the browser area will become blank. Any tasks being done within the browser will become invisible.
Example
set visibility("Invisible") navigate("http://www.ubotstudio.com/resources", "Wait")
Running this script will navigate to the url without displaying the webpage in the browser. The set visibility command is set to Invisible. File:Invisible.png
set visibility("Visible") navigate("http://www.ubotstudio.com/resources", "Wait")
Running this script will navigate to the url while displaying the webpage in the browser. The set visibility command is set to Visible.