
Originally Posted by
BMWxi
Simba Code:
If FindObjCustom(x, y, ['take', 'Raw', 'Chicken'], [12567240], 3) Then
This I think
E: Is there any way to get FindObjCustom to search only on the main screen?
I think'll have to use FindObjEx to only search the main screen.
It already does.
Simba Code:
function FindObjCustom(var cx, cy: Integer; Text: TStringArray; Color: TIntegerArray; Tol: Integer): Boolean;
begin
Result := FindObjEx(cx, cy, Text, Color, Tol, 50, MSX1, MSY1, MSX2, MSY2);
end;
Post all your finder functions if the problem persists.