Xav Posted June 18, 2013 Posted June 18, 2013 (edited) Heres an example that I have made but it's really slow... Is there any other way that I can make it work faster ? (I am looking for a pixel over 10000000 [decimals colors]). expandcollapse popuphotkeyset('l',"ex") func ex() Exit EndFunc sleep(2000) $x = 955 $y = 60 while 1 $color = PixelGetColor($x, $y) ;msgbox(0,'',$color) mousemove($x,$y,1) if $color > 10000000 Then mousemove($x,$y,1) Exit Else $x = $x + 1 EndIf if $x > 1140 Then $x = 955 $y = $y + 1 EndIf If $y > 245 and $x >955 Then ; did all the way Exit EndIf WEnd Thanks, Xav Edited June 18, 2013 by Xav
FireFox Posted June 18, 2013 Posted June 18, 2013 Hi,There is a Pixel library in the Examples Scripts forum, which is more efficient for your needs.Br, FireFox.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now