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 / Notepad.aut < prev    next >
Text File  |  1999-09-15  |  570b  |  27 lines

  1. ; Example Script
  2. ; ==============
  3. ;
  4. ; OS:     Windows 9x/NT
  5. ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
  6. ;
  7. ; Runs notepad, types stuff in, pauses then exits
  8.  
  9. MsgBox, 4, AutoIt Example, This will run Notepad type in some text\, and then quit. Run?
  10. IfMsgBox, NO, Goto, denied
  11.  
  12. Run, notepad.exe
  13. WinWaitActive, Untitled -
  14. Send, aAbBcCdDeEfF {!}"$\%{^}&*()_-{+}=#{ENTER}
  15. Sleep, 1000
  16. Send, 12345678
  17. Send, {BS 4}#{BACKSPACE 4}
  18. Send, !{F4}
  19. WinWaitActive, Notepad, save the changes?
  20. Send, !n
  21. WinWaitClose, Untitled - Notepad
  22.  
  23. denied:
  24. Exit
  25.  
  26.  
  27.