jimmer 0 Posted January 12, 2005 Hello, I was just wondering if I could make a certain action activate once a pixel meets a certain point? Say.... the color X meets a certain area of x and y. could it be done, so it triggers an action such as Send("") Share this post Link to post Share on other sites
nOne 0 Posted January 12, 2005 something like this ? $pixelcolor = 16777251 $i = 0 $xpos = 400 $ypos = 200 while $i = 0 if ($pixelcolor == PixelGetColor($xpos,$ypos) ;do something $i = 1 endif wend Share this post Link to post Share on other sites