Skip to main content
Version: 7.9

system.gui.getOpenedWindowNames

This function is used in Python Scripting.

Description

Finds all of the currently open windows, returning a tuple of their paths.

Client Permission Restrictions

This scripting function has no Client Permission restrictions.

Syntax

system.gui.getOpenedWindowNames()

Parameters

None

Returns

PyTuple - A tuple of strings, representing the path of each window that is open.

Scope

All

Code Examples

Example #1
# This example prints out into the console the full path for each opened window.

windows = system.gui.getOpenedWindowNames()
print 'There are %d windows open' % len(windows)
for path in windows:
print path