home *** CD-ROM | disk | FTP | other *** search
/ Freesoft 1999 February / Freesoft_1999-02_cd.bin / Nerecenz / Utils / autoit_v1_4.exe / Examples / calc.ini next >
Text File  |  1999-01-17  |  264b  |  18 lines

  1. ; Example Script
  2. ; ==============
  3. ; Runs calc and does a few calcs, pauses then exits
  4.  
  5. Run, calc.exe
  6. WinWaitActive, Calcula
  7. Send, 2*2=
  8. Sleep, 1000
  9. Send, {DEL}#4*4=
  10. Sleep, 1000
  11. Send, {DEL}#16*16=
  12. Sleep, 1000
  13. Send, !{F4}
  14. WinWaitClose, Calculator
  15.  
  16.  
  17.  
  18.