home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 June
/
PCWorld_1998-06_cd.bin
/
software
/
sharware
/
komunik
/
QMODEM
/
QM4VT100.ZIP
/
VT100.SCR
< prev
Wrap
Text File
|
1989-03-02
|
1KB
|
61 lines
;
; **** VT100 QMODEM 4.0 script for IBM 3708 LOGON ****
; **** 1989 Jim Klocek Woodridge, IL ****
;
ColorFG 7
ColorBG 0
; setup string variable data for primary system logon
string this
When "NO CARRIER" Error
TurnOff Noise
graphics vt100
loadkey vt100.key
; Set logon data for desired application. Insert application logon data
; string in between the quotes in the following line.
ASSIGN 0 "XXXXXX"
Timeout 5 skip1
skip1:
Send "^M"
; This line will send a password from the phone book dialing entry to the
; 3708.
Waitfor "===> "
Send "$password^M"
; Tell 3708 you are a VT100
Timeout 120
;Waitfor "C2: Type the number of your terminal:
Waitfor "===> "
Send "5^M"
; wait for the following request from 3708 and reply "1"
;Waitfor "C3: Type the number of the desired connection:
Waitfor "===> "
Send "1^M"
; send string set in ASSIGN 0 above for application logon
;Waitfor "C4: You can now type your system logon
Waitfor "===> "
Send "$0"
Exit
; on error reload qmodem.key and switch to ANSI terminal emulation
Error:
graphics ansi
loadkey qmodem.key
hangup
*Exit