I wanted to use my mouse 4 & 5 for local & radio, so I decided to create a small AutoHotKey Script. Here are the steps:
- Download AutoHotKey
- Create a hotkey.ahk file (On your desktop, right-click, and select 'Create text file' - Then, delete the entire text file name in the 'rename option' and name it Hotkey.ahk)
You will have to change the XButton2 and XButton1 to change the keys you would like to trigger local & radio. View AHK's Key map here. - Place the code in the file
- Run it (this will run it as administrator - it's required)
Code:
#SingleInstance Force
SetWorkingDir %A_ScriptDir%
if not A_IsAdmin
Run *RunAs "%A_ScriptFullPath%" ; (A_AhkPath is usually optional if the script has the .ahk extension.) You would typically check first.
XButton2::n
XButton1::m
Last edited: