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 / Adlib.aut < prev    next >
Text File  |  1999-09-14  |  594b  |  28 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 (using Adlib)
  8.  
  9. MsgBox, 4, AutoIt Example, This will run Notepad type in some text\, and then quit (using Adlib). 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. WinWaitClose, Untitled - Notepad
  20.  
  21. denied:
  22. Exit
  23.  
  24. [Adlib]
  25. Notepad, save the changes?, Send, !n
  26.  
  27.  
  28.