But there is light at the end of the tunnel. It's called Autohotkey (AHK for short) and it allows you to trigger actions based on keypresses. And you have a couple of unused buttons on your MS remote control anyway (the colored ones at the bottom). It is not for the faint of heart, but it is possible. And here's how to do it:
- Download the latest version of Autohotkey and install it
- Download Micha's Human Interface Device support for AHK here
- Unpack Micha's rar file in a new directory of your choice
- Run the vcredist_x86.exe to install necessary DLL:s (I forgot this first and couldn't grok the error messages I got)
- Download my remote control script and save it in the same directory. Name it e.g. MyRemote.ahk (or whatever you want - it needs to end with .ahk though)
- Create a shortcut to the MyRemote.ahk script in your Autostart folder (optional, but nice)
But if you're out of luck you might run into problems. E.g. your remote might send different codes. In that case you need to find out the remote control codes your remote sends. Uncomment the line MsgBox Received code: %Vals% in the script to find out your specific codes and change the values in your script correspondingly.
Sources of information and credit to:
- Micha for the work on HID device support
- boulder2 at The Green Button for posting info in this thread(script does not work as is, though)
- yotz for improving readability of Micha's original remote control script
- TRHR for showing that you need to have {Enter} after ^+a
- Look here if you want to hide the taskbar icon for AHK
- And finally this thread on the Autohotkey forums on Micha's work