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
Printable View
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
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