Assignment

Declares a variable and a value that can be used later. Variables store a value that can be used throughout a script. Using variables can help you create more flexible scripts because the data can change as the application changes. See Declaring variables in Text View for information.

Syntax

Variable = Value

Arguments

Argument Description
Variable Variable name.
Value Numeric or string literal, expression, function, variable, or datasheet value.

Example

loginName = ("Administrator")

Window("WysiCRM").EditBox("textBoxUser").SetText(loginName)