Je voulais écrire une procédure dans Delphi pour simuler le déplacement d'un pointeur de souris avec une vitesse spécifique (similaire à la fonction MouseMove d'AutoIT). Soit mon code est erroné, soit SetCursorPos fonctionne mal après avoir été appelé trop de fois. Voici la fonction que j'ai :
procedure MoveMouse ( X, Y, Speed : Integer);
var
P : TPoint;
NewX : Integer;
NewY : Integer;
begin
if X < 0 then exit;
if Y < 0 then exit;
if X > Screen.Height then exit;
if Y > Screen.Width then Exit;
repeat
GetCursorPos(P);
NewX := P.X;
NewY := P.Y;
if P.X <> X then begin
if P.X > X then begin
NewX := P.X - 1;
end else begin
NewX := P.X + 1;
end;
end;
if P.Y <> Y then begin
if P.Y > Y then begin
NewY := P.Y - 1;
end else begin
NewY := P.Y + 1;
end;
end;
sleep (Speed);
SetCursorPos(NewX, NewY);
until (P.X = X) and (P.Y = Y);
end;
Je l'utilise comme ça :
procedure TForm1.btn1Click(Sender: TObject);
var
X : Integer;
Y : Integer;
begin
for X := 0 to Screen.Width do begin
for Y := 0 to Screen.Height do begin
MouseClick (X, Y, 1);
end;
end;
end;
Pour une raison quelconque, le pointeur de la souris reste bloqué à un certain point X et revient ensuite à 0,0, mais pourquoi ?