home *** CD-ROM | disk | FTP | other *** search
-
- genlines OFF
- genlabels OFF
-
- /*
-
- TYMNET - A navigatioon script for use by other scripts.
-
- 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
-
- */
-
- assume device "XPC"
- assume terminal "DEC"
-
- ScriptDesc = "Login to Tymnet with host name contained in NetID"
-
- sp = chr(32)
-
- if device = "XPC" then do "TYMXPC"
-
- w = freewin
- window w, zone 11, color blue
- title #w, " Logging into TYMNET ... "
- print #w
- print #w, sp; speed; sp;
-
- wait 3 seconds for '~?'
- reply "a";
-
- watch for
- "host" :
- "in" :
- "name" :
- "error" : bye : end
- endwatch
-
- wait 2 ticks
- reply NetID
- end
-
-