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

  1. ; Example Script
  2. ; ==============
  3. ; Runs notepad, types stuff in, pauses then exits
  4.  
  5. Run, notepad.exe
  6. WinWaitActive, Untitled -
  7. Send, aAbBcCdDeEfF {!}"$%{^}&*()_-{+}=#{ENTER}
  8. Sleep, 1000
  9. Send, 12345678
  10. Send, {BS 4}#{BACKSPACE 4}
  11. Send, !{F4}
  12. WinWaitActive, Notepad, save the changes?
  13. Send, !n
  14. WinWaitClose, Untitled - Notepad
  15.  
  16.  
  17.  
  18.