-- Lingo syntaxwindowObjRef.visible // JavaScript syntaxwindowObjRef.visible;
Window property; determines whether a window is visible (TRUE) or not (FALSE). Read/write.
This statement makes the window named Control_Panel visible:
-- Lingo syntax
window("Control_Panel").visible = TRUE
// JavaScript syntax
window("Control_Panel").visible = true;