home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / WinGetHandle.au3 < prev    next >
Text File  |  2004-11-29  |  520b  |  14 lines

  1. ; Identify the Notepad window that contains the text "this one" and get a handle to it
  2.  
  3. ; Change into the WinTitleMatchMode that supports classnames and handles
  4. AutoItSetOption("WinTitleMatchMode", 4)
  5.  
  6. ; Get the handle of a notepad window that contains "this one"
  7. $handle = WinGetHandle("classname=Notepad", "this one")
  8. If @error Then
  9.     MsgBox(4096, "Error", "Could not find the correct window")
  10. Else
  11.     ; Send some text directly to this window's edit control
  12.     ControlSend($handle, "", "Edit1", "AbCdE")
  13. EndIf
  14.