Top  | Previous | Next

system.gui.getOpenedWindowNames

Description

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

Syntax

system.gui.getOpenedWindowNames()

Parameters

none

Returns

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

Scope

Client

Examples

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