SteeLpwnage 0 Posted July 12, 2010 how could I scan pixel color in the selected window not the whole screen Share this post Link to post Share on other sites
JohnOne 1,603 Posted July 12, 2010 By setting the PixelCoordMode Option with the appropriate flag << helpfile. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
Maximus1 1 Posted July 13, 2010 (edited) $coordcol=PixelSearch( 100,100,100,100, $color) searches the pixel at 100x100 for a defined color and brings 0(color not found) or 1(color found). after that you can use... If Not @error Then ...do anything... Edited July 13, 2010 by Maximus1 Share this post Link to post Share on other sites