it doesnt neccessarily give me an error message, it just never pops up and it says this in the smart tab.
procedure GetMousePos(var x, y: Integer);
begin
SmartGetMousePos(x, y);
end;
function IsRealMouseInBox(B : TBox): Boolean;
var
P : TPoint;
begin
GetRealMousePos(P.X, P.Y);
Result := PointInBox(P, B);
end;
I have all of the updates for the extensions and everything is set right, i dont know know whats wrong.
