README.md

December 5, 2022 ยท View on GitHub

Set mouse position

Description

This code sets the mouse position on the screen

More Info

Submitted On
ByComaBlack
LevelBeginner
User Rating3.7 (11 globes from 3 users)
CompatibilityDelphi 5, Delphi 4, Pre Delphi 4
CategoryCoding Standards
WorldDelphi
Archive File

API Declarations

ComaBlack
coma_black_666@hotmail.com

Source Code

SET the cursor position
var
x, y: integer; (* Position to set for the mouse *)
begin
(*These are only numbers examples*)
x := 10;
y := 60;
setcursorpos(x,y);
end;