home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / Vyzkuste / autoit / AutoIt.exe / AutoIt.msi / Cabs.w1.cab / Calc.aut < prev    next >
Text File  |  1999-09-15  |  471b  |  28 lines

  1. ; Example Script
  2. ; ==============
  3. ;
  4. ; OS:     Windows 9x/NT
  5. ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
  6. ;
  7. ; Runs calc and does a few calcs, pauses then exits
  8.  
  9. MsgBox, 4, AutoIt Example, Run calculator automation script?
  10. IfMsgBox, NO, Goto, denied
  11.  
  12. Run, calc.exe
  13. WinWaitActive, Calcula
  14. Send, 2*2=
  15. Sleep, 1000
  16. Send, {DEL}#4*4=
  17. Sleep, 1000
  18. Send, {DEL}#16*16=
  19. Sleep, 1000
  20. WinClose, Calculator
  21. WinWaitClose, Calculator
  22.  
  23. denied:
  24. Exit
  25.  
  26.  
  27.  
  28.