Click to See Complete Forum and Search --> : How do you make the mouse pointer move every minute?


PanasonicSubz
November 29th, 1999, 05:23 PM
i have alladvantage on my computer and the thing becomes inactive if the mouse hasn't moved in like 2 minutes so i want to make a program that moves the mouse for you. how do i do that?

PanasonicSubz

Ravi Kiran
November 30th, 1999, 12:26 AM
There is an API SetCursorPos. You can try it.
From Api viewer:

Declare Function SetCursorPos Lib "user32" Alias "SetCursorPos" (byval x as Long, byval y as Long) as Long




Call this in a loop of every 1min say.

RK