Looks like its possible with color only...
I gotta give it a try later, when i find the time XD...
//EDIT:
startx, starty is the point where the ref- image starts, just pick 1pixel more to the left and one more down, so that you dont start at the grid.
It doesnt always detect the right captcha, but im not in the mood to refine it :3
Code:
program New;
var
x,y,xw,xh, TempColor : Integer;
x1,y1 : Integer;
startx, starty : Integer;
GotCol : Boolean;
go : Integer;
begin
go := BitmapFromString(30, 27, 'beNr7/38UjIIRAhgYZqIhKpqJKU' +
'gVk4kRpNxYgsFFRZORlZGhBTMecRlFjOG41Axmk4lJGxSajF8vGTF' +
'IfB6kbvYcBaNg8AIAYpGzVw==');
ColorTOleranceSpeed(1);
repeat
startx := 721;
starty := 8;
GotCol := False;
repeat
TempColor := GetColor(startx,starty);
GetClientDimensions(xw,xh);
startx := startx+8;
starty := starty+8
//check for similarity.. dont get white
If SimilarColors(TempColor, 12763842, 106) then
GotCol := FALSE
else
GotCol := TRUE;
until GotCol;
WriteLn(startx);
WriteLn(starty);
WriteLn(TempColor);
Repeat
wait(100);
until(findBitmap(go,x1,y1));
FindColorTolerance(x,y,TempColor,0,55,747,99,15);
ClickMouse(x,y,True);
//ClickMouse(x,y,True);
wait(10000);
until(false);
end.