Difference between revisions of "ACTIVATE SCREEN"
Yvonnemilne (Talk | contribs) |
Helengeorge (Talk | contribs) (→Products) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
==Purpose== | ==Purpose== | ||
Activate full screen display | Activate full screen display | ||
Line 12: | Line 8: | ||
==See Also== | ==See Also== | ||
− | [[ACTIVATE WINDOW]], [[CLEAR WINDOWS]], [[DEACTIVATE WINDOW]], [[DEFINE WINDOW]], [[HIDE WINDOW]], [[MODIFY MEMO]], [[MOVE WINDOW]], [[RELEASE WINDOWS]], [[RESIZE WINDOW]], [[RESTORE WINDOW]], [[SAVE WINDOW]], [[SHOW WINDOW]], [[SET COMMANDWINDOW]], [[SET ERRORWINDOW]], [[SET KEY]], [[SET PROCEDURE]], [[SET TRACEWINDOW]], [[SET WINDOW OF EDIT]], [[SET WINDOW OF MEMO]], [[WCOLS()]], [[WEXIST()]], [[WONTOP()]], [[WOUTPUT()]], [[WROWS()]], [[WVISIBLE()]] | + | [[ACTIVATE WINDOW]], [[CLEAR WINDOWS]], [[DEACTIVATE WINDOW]], [[DEFINE WINDOW]], [[HIDE WINDOW]], [[MODIFY MEMO]], [[MOVE WINDOW]], [[RELEASE WINDOWS]], [[RESIZE WINDOW]], [[RESTORE WINDOW]], [[SAVE WINDOW]], [[SHOW WINDOW]], [[SET COMMANDWINDOW]], [[SET ERRORWINDOW]], [[SET KEY]], [[SET PROCEDURE]], [[SET TRACEWINDOW]], [[SET WINDOW OF EDIT]], [[SET WINDOW OF MEMO]], [[WCOLS()]], [[WEXIST()]], [[WONTOP()]], [[WOUTPUT()]], [[WROWS()]], [[WTITLE()]], [[WVISIBLE()]] |
Line 37: | Line 33: | ||
==Products== | ==Products== | ||
− | Recital | + | Recital [[Category:Documentation]] |
− | [[Category:Documentation]] | + | |
[[Category:Commands]] | [[Category:Commands]] | ||
+ | [[Category:Screen Windows]] | ||
+ | [[Category:Screen Windows Commands]] |
Latest revision as of 14:00, 10 November 2009
Purpose
Activate full screen display
Syntax
ACTIVATE SCREEN
See Also
ACTIVATE WINDOW, CLEAR WINDOWS, DEACTIVATE WINDOW, DEFINE WINDOW, HIDE WINDOW, MODIFY MEMO, MOVE WINDOW, RELEASE WINDOWS, RESIZE WINDOW, RESTORE WINDOW, SAVE WINDOW, SHOW WINDOW, SET COMMANDWINDOW, SET ERRORWINDOW, SET KEY, SET PROCEDURE, SET TRACEWINDOW, SET WINDOW OF EDIT, SET WINDOW OF MEMO, WCOLS(), WEXIST(), WONTOP(), WOUTPUT(), WROWS(), WTITLE(), WVISIBLE()
Description
The ACTIVATE SCREEN command disables the active window and redirects output to the entire screen. Displayed windows remain on the screen, and subsequent output is displayed behind the windows.
A window is an area of the screen designated for output and input. Windows are defined with the DEFINE WINDOW command, and are displayed to the screen with the ACTIVATE WINDOW or SHOW WINDOW commands. There is no limit to the number of defined windows.
The HIDE WINDOW command may be used in a hot-key procedure to switch the screen display from windows to full screen. Hot-keys allow a procedure to be called when the user presses a particular key.
Example
define window temp_output; from 16,45 to 22,79; title "Output Window"; float; grow activate window temp_output activate screen
Products
Recital