SETACTIVEWINDOW (SETACTIVEW)
Syntax SETACTIVEWINDOW windowname
SETACTIVEW windowname

 
Explanation

SETACTIVEWINDOW sets the currently active window. SETACTIVEWINDOW is equivalent to clicking on a window with the mouse cursor. The name of the active window is reported by the ACTIVEWINDOW command and is contained in the :CURRENT.WINDOW system variable. :CURRENT.WINDOW may also be changed to set the active window.

A list of available windows may be obtained with the EVERY "WINDOW command. When Logo starts, available windows are TOOLBAR COLORPICKER TOOLBOX GRAPHICS LISTENER and WORKSPACEVIEW.

If a window is not visible, SETACTIVEWINDOW makes it visible and then sets it as the currently active window.


Example SETACTIVEWINDOW "GRAPHICS
(The Graphics window becomes the currently active window.)

TopIndex