home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / telecom / vlt_455 / rexx / dialbix.scp < prev    next >
Text File  |  1991-02-12  |  509b  |  34 lines

  1. #   DialBix.scp
  2. #
  3. #   This is a sample script to dial BIX through tymnet. Fill in the
  4. #   right parameters...
  5. #
  6. screengadgets off
  7. lines  40
  8. parity none
  9. echo on
  10.  
  11. send "ATDT --- ----*R"        # Put phone number here
  12.  
  13. wait "~"
  14.  
  15. delay 1
  16. emit "a"
  17. send "a"
  18.  
  19. on "Name" goto rest
  20.  
  21. loop:
  22. wait "in:"
  23. delay 2
  24. send "*X08bix*R"        # *X08 -> set tymnet up for local echo.
  25. emit "*X08bix*R"
  26. goto loop
  27.  
  28. rest:
  29. send "---------*R"        # Your account name
  30. emit "---------*R"
  31. beep
  32.  
  33. exit quiet            # You'll have to type your password yourself.
  34.