Scar Divi Float or Double to Int. How I pass a Float/Double to Integer?
Here's the code. I'm trying to Find the bitmap and click on the center, the problem is when I try to divide the x or y to find the img center.
program FindBitmap;
label
main;
var
Bmp: TSCARBitmap;
x, y: Integer;
temp1, temp2: String;
begin
ClearDebug;
Bmp := TSCARBitmap.Create('deNqtzGkKglAUhuE2Ea2pwXm8atpAFCIVRdEKi' +
'qJCkBBpAeVQa+zCBRGH++cEz6/Dd95Oq92ajoZwE8eCG9sm3GhowDkWgrNNHc4' +
'yNDgTqbnz6fjNMrr49XIXs+IXZuhK0fVyphSS99tz56UXDGlyEb7491ttIY3jp' +
'eeW9oSuSCVIlQPfLxWyJFkvveqY0GSxCnceQZAXPmm6Xa9ql4QqCbVwJwpDEtl' +
'vN00zQhb5JkhTnlF02O8oG0ISOApFEugDQuRZOIFj4Hh2AMcxfTh20PuDfhfuB' +
'32bFT0=');
main:
if FindBitmap (x, y, Bmp, 0, 0, 2559, 1023) then
begin
WriteLn('IMG FOUND!');
ClickMouse((x + Bmp.Width / 2),(y + Bmp.Height / 2),mbLeft);
end
else
begin
goto main
end;
end.
ClickMouse doesn't work, Scar Divi says: Type mismatch

procedure ClickMouse(const X, Y: Integer; const Btn: TMouseButton);requires aconstfor each of the parameters. You need to reformulate the way you think about your problem. – Floris Jan 27 at 21:24divinstead of/, or Trunc, or anything that would return an integer.ClickMouse((x + Bmp.Width div 2), ...– Sertac Akyuz Jan 27 at 23:03mbLeftdefined? Could that be the parameter that is causing a problem? A simple check could be to callClickMouse(100,100,mbLeft)and see if that works. Perhaps we are looking in the wrong place... – Floris Jan 29 at 17:57