Been using this program :
http://www.salling.com/Clicker/windows/
Salling Clicker. It has an awesome remote control function. However there is an annoying 30 click limited functionality. after which it disconnects your device and u have to manually click on the popupwindow to reactivate the remote control. This simple ahk script automates this process. I'm not exactly hacking the software so i guess its legal.
My first program in AHK. Lame, I know. but necessity is the mother of invention
Code:
Loop
{WinWait Trial-mode click limit exceeded
{
WinActivate
Send {Right}
Send {Enter}
}
}