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 / PixelSearch.au3 < prev    next >
Text File  |  2004-09-22  |  403b  |  13 lines

  1. ; Find a pure red pixel in the range 0,0-20,300
  2. $coord = PixelSearch( 0, 0, 20, 300, 0xFF0000 )
  3. If Not @error Then
  4.     MsgBox(0, "X and Y are:", $coord[0] & "," & $coord[1])
  5. EndIf
  6.  
  7.  
  8. ; Find a pure red pixel or a red pixel within 10 shades variations of pure red
  9. $coord = PixelSearch( 0, 0, 20, 300, 0xFF0000, 10 )
  10. If Not @error Then
  11.     MsgBox(0, "X and Y are:", $coord[0] & "," & $coord[1])
  12. EndIf
  13.