KingKayris :
Matt_53 :
So I managed to use a combination of AHK and another program called HidMacros which can call the scripts from the specific device (M288 mouse).
- Just create a script that does the desired effect when it is opened.
- Load HidMacros and scan the button you want to assign the script to.
- Select the script as a program to run.
DONE!
Hi Buddy could you elaberate a little more on what you did, im trying both the programs out and im stuck lol.
I can get HID Macro to run the scrip but dont have a clue what to put in the script. Any help would be great
So I wanted the classic forward/back browser functionality. I created 2 scripts (one for forward, one for back).
Because AHK doesn't have to check for the button press you don't need to define the key being pressed so my back script for example is just...
Send, {Browser_Back}
Return
Save that somewhere like your desktop.
Now pull up HidMacros.
- Create a new macro.
- Click scan.
- Press the desired button.
- Click the run application radio button
- Select the script
- Hit Compile All
Now when you press that button it should run the script.
Obviously change the script to do whatever you want it to do.
Have fun!