Title: | *OLD* ALL-IN-1 (tm) Support Conference |
Notice: | Closed - See Note 4331.l to move to IOSG::ALL-IN-1 |
Moderator: | IOSG::PYE |
Created: | Thu Jan 30 1992 |
Last Modified: | Tue Jan 23 1996 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 4343 |
Total number of notes: | 18308 |
As a cost-cutting and environment-friendly procedure, we have written a small command file which displays the word "Save Enery, turn off terminal after work", highlighted. It works fine as long as the user log out from DCL by typing "$LOGOUT". However, for some captive users or advanced users, they just type LO in ALL-IN-1. I have modified form DEFAULT so that it looks like this: ;;LO;; COMMAND SYS$MANAGER:LOGOUT\BYE The problem is that BYE clears the screen so that the message will stay in the screen for less than a second. Do anyone know a way to get around this? Regards, Adam.
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
162.1 | At least 2 ways to do this | SIOG::T_REDMOND | Thoughts of an Idle Mind | Wed Mar 04 1992 08:26 | 11 |
Change the ;;LO;; definition to WAIT Save Energy, turn off terminal after work \ BYE The message will be displayed and the user will have to hit return before BYE is called. Or call a script that includes a CLEAR, .BOX directive, followed by .WAIT and then BYE. Tony | |||||
162.2 | .PAUSE | FAILTE::LAAHS | Two Cute Celts are better than one | Wed Mar 04 1992 10:03 | 1 |
Or .PAUSE n seconds before the BYE | |||||
162.3 | Great! I'll go for .PAUSE | HGOVC::WONGKALOK | Thu Mar 05 1992 01:38 | 6 | |
You guys are great! They are the solutions I've been looking for. Both are good but I prefer the .PAUSE solution because it does not require the user to hit return. Thanks, Adam. |