Skip to main content
added 37 characters in body
Source Link
Otiel
  • 1.7k
  • 2
  • 15
  • 30

You could use this AutoHotkey script:

CoordMode, Mouse, Screen
SetTimer, MoveMouse, 600000
Loop
MoveMouse:{
    ; Move mouse
    MouseMove, 1, 01, 0, R
    ; Replace mouse to its original location
    MouseMove, -1, 0-1, 0, R
    ; Wait before moving the mouse again
    Sleep, 600000
}
return

You can download the portable version of AutoHotkey here.

You could use this AutoHotkey script:

CoordMode, Mouse, Screen
SetTimer, MoveMouse, 600000

MoveMouse:
    ; Move mouse
    MouseMove, 1, 0, 0, R
    ; Replace mouse to its original location
    MouseMove, -1, 0, 0, R
    
return

You can download the portable version of AutoHotkey here.

You could use this AutoHotkey script:

CoordMode, Mouse, Screen
Loop
{
    ; Move mouse
    MouseMove, 1, 1, 0, R
    ; Replace mouse to its original location
    MouseMove, -1, -1, 0, R
    ; Wait before moving the mouse again
    Sleep, 600000
}
return

You can download the portable version of AutoHotkey here.

Source Link
Otiel
  • 1.7k
  • 2
  • 15
  • 30

You could use this AutoHotkey script:

CoordMode, Mouse, Screen
SetTimer, MoveMouse, 600000

MoveMouse:
    ; Move mouse
    MouseMove, 1, 0, 0, R
    ; Replace mouse to its original location
    MouseMove, -1, 0, 0, R
    
return

You can download the portable version of AutoHotkey here.