2009-09-13 14:56:02 -04:00
|
|
|
function findcolor(var x, y: integer; color, x1, y1, x2, y2: integer): boolean;
|
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFinder.FindColor(x, y, color, x1, y1, x2, y2);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function findcolortolerance(var x, y: integer; color, x1, y1, x2, y2, tol: integer): boolean;
|
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFinder.FindColorTolerance(x, y, color, x1, y1, x2, y2, tol);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function FindColors(var TPA: TPointArray; Color, x1, y1, x2, y2: Integer): Boolean;
|
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFinder.FindColors(TPA, color, x1, y1, x2, y2);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure SetColorToleranceSpeed(cts: Integer);
|
|
|
|
begin
|
|
|
|
CurrThread.Client.MFinder.SetToleranceSpeed(cts);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function SimilarColors(Col1,Col2,Tol : integer) : boolean;
|
|
|
|
begin;
|
|
|
|
Result := CurrThread.Client.MFinder.SimilarColors(Col1,Col2,Tol);
|
|
|
|
end;
|