Top | Previous | Next |
system.gui.findWindow |
Description Finds and returns a list of windows with the given path. If the window is not open, an empty list will be returned. Useful for finding all instances of an open window that were opened with system.gui.openWindowInstance Syntax system.gui.findWindow(path) Parameters String path - The path of the window to search for Returns List - A list of window objects. May be empty if window is not open, or have more than one entry if multiple windows are open. Scope Client Examples This example finds all of the open instances of the window named "Popup" and closes them all.
allInstances = system.gui.findWindow("Popup") for window in allInstances: system.nav.closeWindow(window) |