window.isOpen

Syntax window.isOpen (title)

Params title is the name of the window you want to determine as being open.

Action Determines if the window is open.

Returns True if the window is open, false otherwise.

Examples With the examples window open, type and execute:
window.isOpen (@examples)


   » true

Close the examples window. Now type and execute:
window.isOpen ("examples")


   » false

Notes Hidden windows are still "open."

See Also window.open

window.close

Discuss