Code cursor auto movement batch file

Asked By 30 points N/A Posted on -
qa-featured

Hi all,

Is it possible to make cursor auto movements and save it into batch file, the purpose is to run it randomly during non activity so that my Laptop does not go into sleep mode?
 
Many thanks.
SHARE
Answered By 5 points N/A #195859

Code cursor auto movement batch file

qa-featured

Hello Caecil Brenta,

After researching about moving a mouse using a batch file I found this one to move the mouse cursor to a given position. You can try this:

MOV AX,0

INT 33H ;Reset mouse

MOV AX,1

INT 33H ;Show the cursor 

MOV AX,4 ;Position mouse cursor function

MOV CX,1 ;Column *8 in mode 3

MOV DX,1 ;Row *8 in mode 3

INT 33H ;

Or you have many applications that you can use for automatic clicking and moving the mouse on specific time and location where you want on your screen. For that usage you can download Auto Click, Mouse Clicker, Mouse Auto Clicker etc.

Regards,

Williamson Mellisa

Related Questions