Is there a program that can wiggle my mouse every 5 minutes?

You’re correct. The Help File for AutoHotKey says:

The C++ source code for AutoHotKey is available, which I don’t think is true for AutoIt (for what that’s worth).

Red Barchetta, after playing around with the script I gave in post #16, I decided to tighten it up to solve two potential slight (and extremely unlikely to occur) problems. I prefer this, which uses inherently relative mouse positioning, (and is one line shorter!):


SecondsDelay=1
Distance=1
StartWiggling:
MouseMove,Distance,0,0,R
MouseMove,-Distance,0,0,R
sleep SecondsDelay*1000
goto StartWiggling

[This is for the 1-wiggle-per-second test version. Replace the “SecondsDelay=1” with “SecondsDelay=240” to give a once-per-4-minute wiggle rate as before.]