Top | Previous | Next |
system.gui.getOpenedWindows |
Description Finds all of the currently open windows, returning a tuple of references to them. 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 Examples This example prints out the path of each currently opened window to the console.
windows = system.gui.getOpenedWindows() |