system.gui.getOpenedWindows
This function is used in Python Scripting.
Description
Finds all of the currently open windows, returning a tuple of references to them.
Client Permission Restrictions
This scripting function has no Client Permission restrictions.
Syntax
system.gui.getOpenedWindows()
Parameters
None
Returns
PyTuple - A tuple of the opened windows. Not their names, but the actual window objects themselves.
Scope
Client
Code Examples
Example #1
# This example prints out the path of each currently opened window to the console.
windows = system.gui.getOpenedWindows()
print 'There are %d windows open' % len(windows)
for window in windows:
print window.getPath()