home *** CD-ROM | disk | FTP | other *** search
- ; Sample MS-Kermit script file for making an outside data call from a
- ; Columbia ROLMphone 120D, 240D, or 400D.
- ;
- ; Notes:
- ; 1. Substitute the number you want to dial for "7654321" below.
- ; 2. The CBX does not give a "CALL COMPLETE" message when dialing out,
- ; so a 30-second pause has been used instead. You may adjust the
- ; the length of this pause.
- ;
- set speed 2400 ; Use 2400 bps for dialing out
- set input timeout proceed
- pause 1
- output \13 ; Send a carriage return
- input 10 MODIFY? ; Look for CBX prompt
- if fail goto xxx
- output call 93 7654321 ; Tell CBX to call this number
- pause 30 ; Wait 30 seconds for answer
- connect ; Begin terminal emulation
- stop ; Stop script execution when user returns
- :xxx
- echo CBX does not respond.\13 ; Give error message if no CBX prompt
- echo Check your connection and try again.\13
- stop
-