SetFocus
void SetFocus(string object)Description
Attempts to set the keyboard focus to the specified UI object.
Parameter
- object - The identifier (string) of the UI object to receive focus.
Return
Returns no value.
Example
void main()
{
SetFocus("SubmitButton");
}