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
All
Code Examples
Code Snippet
#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