is_window

Declaration

is_window (name: STRING): BOOLEAN

Description

Returns True if name is a window created with make_window, otherwise False.

See Also

make_window
window and frame functions
Window_Manager

Example

script make_explain_window is
  if not is_window ('explanation') then
    make_window ('explanation')
end end