Contents
Strategic Partner Links
Sepasoft - MES Modules
Cirrus Link - MQTT Modules
Resources
Knowledge Base Articles
Inductive University
Forum
IA Support
SDK Documentation
SDK Examples
Finds all of the currently open windows, returning a tuple of references to them.
This scripting function has no Client Permission restrictions.
system.gui.getOpenedWindows()
None
PyTuple - A tuple of the opened windows. Not their names, but the actual window objects themselves.
Client
# 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()