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.
Code cursor auto movement batch file
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