system.gui.getWindowNames
This function is used in Python Scripting.
Description
Returns a list of the paths of all windows in the current project, sorted alphabetically.
Client Permission Restrictions
This scripting function has no Client Permission restrictions.
Syntax
system.gui.getWindowNames()
Parameters
None
Returns
PyTuple - A tuple of strings, representing the path of each window defined in the current project.
Scope
Client
Code Examples
Example #1
# This example would open windows that begin with "Motor" and pass in the currently selected motor number.
motor = event.source.parent.number
windows = system.gui.getWindowNames()
for path in windows:
if name[:5] == "Motor":
system.nav.openWindow(path, {"motorNumber":motor})