SETWPOS
Syntax SETWPOS windowname [x y] 
 
Explanation

SETWPOS takes as input the name of the window to move, and a list of two positive integers specifying the position of the upper left corner of the window (in screen coordinates). The current position is reported by WPOS.

Change a window's size using SETWINSIZE or SETWSIZE.

Examples SETWPOS "GRAPHICS [50 10] 
(The Graphics window moves to the right to window coordinate 50 and down to window coordinate 10.)
SETWPOS "GRAPHICS LIST (FIRST WPOS "GRAPHICS) + 50 LAST WPOS "GRAPHICS 
(The Graphics window shifts 50 pixels to the right.) 

TopIndex