home *** CD-ROM | disk | FTP | other *** search
-
- /*
- ALTF10: Tell the beginning user that he can just
- press Alt-F10 to run the MENU script.
- Checks for existence of MENU.XTC
- Also loads the function key.
-
- ALTF10
-
- ALTF10_GENERAL: Like AltF10, but doesn't check anything or load
- the function key. Expects main script to do these.
-
- ALTF10_GENERAL
-
-
- ALTI_GENERAL: Like AltF10, but doesn't check anything or load
- the function key. Expects main script to do these.
- Just tells Joe User about Alt-I. Used for second
- session Menu front end, etc.
-
- ALTI_GENERAL
-
- Copyright (c) 1986, 1989, Digital Communications Associates, Inc.
- All rights reserved
- For Crosstalk Mk. 4, Ver 1.1 - 01-19-89 by Sheldon T. Hall
-
- */
-
- include XTWASTE
- include XTNOPAUS
- include XTPTHFND
-
- proc ALTF10
-
- PATH_FIND xtpath, "MENU.XTC"
- if null(NEW_STR) then PATH_FIND xtpath, "MENU.XTS"
- if null(NEW_STR) then exit
-
- proc_win = freewin
-
- NOPAUSE "Press ^AK Alt_F10 ^AN for the v1.x Menu system", proc_win
- WASTE 4
- shut #proc_win
-
- fkey 40, "@do menu", "Use the v1.x Menu system"
-
- endproc
-
- proc ALTF10_GENERAL
-
- proc_win = freewin
-
- NOPAUSE "Press ^AK Alt_F10 ^AN for your preferred interface", proc_win
- WASTE 4
- shut #proc_win
-
- endproc
-
- proc ALTI_GENERAL
-
- proc_win = freewin
-
- NOPAUSE "Press ^AK Alt_I ^AN for an index of other sessions", proc_win
- WASTE 4
- shut #proc_win
-
- endproc
-