WinSetVar

Purpose:

This method assigns a string value to a VisualNEO Win variable.

Category:

VisualNEO Win Communication

Syntax:

WinSetVar "windows var" "value"

windows var

VisualNEO Win variable name to assign the value. Do not use [ and ]

value

Value to store.

Example:

WinSetVar "winvar" "Hello from VisualNEO Web!"


WinGetVar

Purpose:

This method returns a string containing the contents of a VisualNEO Win variable.

Category:

VisualNEO Win Communication

Syntax:

WinGetVar "windows var" [result var]

windows var

VisualNEO Win variable name to get the value from. Do not use [ and ]

result var

Variable to store the result.

Example:

WinGetVar "winvar" [myVar]


WinExecAction

Purpose:

Use this method to execute VisualNEO Win actions. Your WebApp must be embedded in a Browser Object inside VisualNEO Win

Category:

VisualNEO Win Communication

Syntax:

WinExecAction "action"

action

VisualNEO Win action to execute.

Example:

WinExecAction 'AlertBox "Hello" "Hello from the Web Browser!"'