system.vision.goForward
This function replaces system.nav.goForward. Any scripts containing Vision Client scoped functions that were replaced with system.vision syntax will still work to maintain backwards compatibility. Only the system.vision variations will appear in the Script Editor's autocomplete popup.
This function is used in Python Scripting.
Description​
When using the typical navigation strategy, this function will navigate "forward" to the last main-screen window the user was on when they executed a system.vision.goBack().
This function is available on secondary desktops via the system.vision.desktop function. See the Multi-Monitor Clients page for more details on secondary desktops.
Client Permission Restrictions​
This scripting function has no Client Permission restrictions.
Syntax​
system.vision.goForward()
Parameters​
Nothing
Returns​
Window - A reference to window that was navigated to. Refer to the list of window objects.
Scope​
Vision Client
Code Examples​
# This code would go in a button to move to the last screen that used system.vision.goBack().
system.vision.goForward()