Need program to nudge mouse every couple of minutes

MaxBurn

[H]ard|Gawd
Joined
Nov 14, 2004
Messages
1,108
For various reasons I need a program that will nudge the mouse cursor a couple pixels every say 4 minutes or so.

Looking for free and not malware like one I found. OS is XP.

Ideas?
 
as above, and heres a script for ya:
Code:
#SingleInstance Force
#Persistent

Random_Mouse_Movement_Enabled = 0

;Alt + P Toggles on and Off - Long beep on short beep off
!p::
Random_Mouse_Movement_Enabled := NOT Random_Mouse_Movement_Enabled
if (Random_Mouse_Movement_Enabled)
{
	soundBeep , 1000, 700	
	SetTimer, RandomMouseMovement, 30000 ;Moves every 30 seconds, adjust accordingly
}
else
{
	soundBeep ,1000, 200
	SetTimer, RandomMouseMovement, Off
}
return

;Timer randomly moves mouse 5 pixels in x+y
RandomMouseMovement:
Random, x_offset, -5, 5
Random, y_offset, -5, 5
MouseMove, x_offset, y_offset, 50, R
return
 
Back
Top