home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / qbasic / asylib11.zip / ASYDEMO.SCR < prev    next >
Text File  |  1988-10-30  |  773b  |  26 lines

  1. ; Sample Script file source for AsyLIB 1.1
  2. ; See documentation for complete script command
  3. ;  list, syntax and arguments.
  4. ; Comments are prefaced with a semi colon, quotes are __NOT__
  5. ; used to delimit arguments, string or otherwise
  6. ;
  7.  
  8. ATIME 5                           ; set default alarm time to 5
  9.  
  10. ALARM 1                           ; but sound it for a cycle to signal start
  11.  
  12. MLOAD asydemo.mac                 ; load the macro file ASYDEMO.MAC
  13.  
  14. DIAL 1                            ; dial entry 1
  15.  
  16. WAITFOR raphics 40                ; wait up to 40 secs for prompt
  17.  
  18. IF WAITFOR
  19.   MSEND 1                         ; send name(s)
  20.   PASSWORD                        ; send DIR linked password
  21. ENDIF
  22.  
  23. ALARM
  24.  
  25. ENDS                              ; end script
  26.