#singleinstance

Posts mentioning hashtag #singleinstance

Below are all the posts — topics as well as replies — that mention the hashtag #singleinstance.

Mention #singleinstance in your post to continue the discussion!

EASY Solution run for VPN monotoring

Here is some AutoHotKey code:

#Persistent

#SingleInstance force

SetTimer MoveMyMouse, 60000 ; 1000 ms = 1 sec.

Return

MoveMyMouse:

MouseMove, 1, 0, 1, R ;Move the mouse one pixel to the right

MouseMove, -1, 0, 1, R ;Move the mouse back one pixel

Return

^!#Pause::ExitApp

Load the code in AutoHotKey and test it, once your'e happy compile to your own MouseMove.exe

What is does: During startup it starts a timer that executes the little sub-routine labeled MoveMyMouse every 60 seconds. This little sub-routine will move your mouse one pixel back and forth.

I also added an escape by pressing Ctrl+Alt+Win+Pause.

YOUR ARE MOST WELCOME !!