home *** CD-ROM | disk | FTP | other *** search
/ Freesoft 1999 February / Freesoft_1999-02_cd.bin / Nerecenz / Utils / autoit_v1_4.exe / Examples / word.ini < prev   
INI File  |  1999-01-17  |  879b  |  35 lines

  1. ; Example Script
  2. ; ==============
  3. ; Assumes MS Word installed in C:\Program Files\Microsoft Office with
  4. ; typical clip art installed.
  5.  
  6. ; Run MS Word and wait until it's active
  7.  
  8.   Run, C:\Program Files\Microsoft Office\Office\WinWord.exe
  9.   WinWaitActive, Microsoft Word
  10.  
  11. ; Send some text and open the clip gallery
  12.  
  13.   Send, Line one of some text{!}#{ENTER}
  14.   Send, Line two of some text.#{ENTER 2}
  15.   Send, !i#p#c
  16.  
  17. ; Wait for the clip gallery to be active and select a piccy
  18.  
  19.   WinWaitActive, Microsoft Clip Gallery
  20.   Send, +{TAB 6}#{DOWN 21}#{RIGHT}#!i
  21.  
  22. ; Insert the picture and type some more text under the picture
  23.  
  24.   WinWaitActive, Microsoft Word
  25.   Send, {RIGHT 5}#{PGDN}#{DOWN}
  26.   Send, {ENTER}#This is some text under the picture{!}
  27.   Sleep, 1000
  28.  
  29. ; Close word
  30.   Send, !{F4}
  31.   WinWaitClose, Microsoft Word
  32.  
  33. [ADLIB]
  34.   Microsoft Word,changes,!n
  35.