False
From UBot Studio
(Difference between revisions)
(Created page with "This command is a Qualifier Function. This command returns false. == Example == <pre> ui check box("Navigate to Google?", #checkhere) if($comparison(...") |
Revision as of 17:13, 7 January 2013
This command is a Qualifier Function. This command returns false.
Example
ui check box("Navigate to Google?", #checkhere) if($comparison(#checkhere, "=", $false)) { then { navigate("google.com", "Wait") } else { } }
The script checks the variable assigned to the UI Check box to see if it returns false using the false qualifier in the comparison qualifier.
The variable for the UI check box returns false when the checkbox is left unchecked. Once set to false, the comparison qualifier evaluates the variable and matches it against the false qualifier. If the two values match, the script navigates to google.com.