Moving Windows, Removing Windows, Accessing Inactive Windows
To |
Do This |
Move Windows |
Use the 'MOVE' mnemonic, which provides a new position for the upper-left corner of the current window and redraws it. |
Remove Windows |
>PRINT 'POP',
>PRINT 'DROP'(WINDOW), Using the 'DROP' mnemonic with the current window removes it and continues the display process at the next window in the list. Attempting to remove the only active window or a non-existent window will generate an error. |
Access Inactive Windows |
Use the 'GOTO' mnemonic, which accepts a one-integer designating a window number. If the window exists it becomes the current window. If the referenced window does not exist, the terminal driver will generate an !ERROR=13. If the window desired is the window prior to the current window, the mnemonic 'SWAP' is the easiest access. This makes the prior window on the list the current window. 12000 REM 12000"cycle through current windows |