Thread

From UBot Studio
(Difference between revisions)
Jump to: navigation, search
(Created page with "This command runs the contained commands in a separate thread from the main script allowing multiple commands to run at the same time. (Professional and Developer Editions Onl...")

Revision as of 18:20, 29 December 2012

This command runs the contained commands in a separate thread from the main script allowing multiple commands to run at the same time. (Professional and Developer Editions Only)


Example

thread {
    in new browser {
        navigate("http://www.google.com", "Wait")
        wait(3)
    }
}
navigate("http://www.google.com", "Wait")

Running the script will open a new browser window and navigate to google, while simultaneously navigating to google in the main browser.

The thread command makes the simultaneous running of each command possible.

File:Thread.png

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox