Operation Manual

Error! Reference source not found. User Guide
72
Example Script File
The following is a sample script file with the proper syntax
conventions. This script file could be used to log on to Compu-
serve.
wait 3000
send 100 “\r”
wait 3000
send 100 “CIS\r”
wait 3000 “:”
send 100 “user id\r”
wait 3000
send 100 “password\r”
wait 60000 “!”
send 100 “GO PPPCONNECT\r”
Command Explanation
wait 3000 Pause for 3 seconds
send 100 “\r” Send the carriage return
character, pausing for 100 ms
between characters.
wait 3000 Pause for 3 seconds
send 100 “CIS\r” Send the string “CIS”, fol-
lowed by a carriage return
character. Pause for 100 ms
between each character.
wait 3000 “:” Wait for 3 seconds to receive
the character “:”.
If the character is not received
in this time, the connection
will be dropped.