How can I remap the volume scroll wheel to mouse wheel on a Corsair K70 keyboard? (e.g., instead of increasing the volume, I want the scroll to send a mouse wheel up signal)
I use Windows 7 SP1 x64 Ultimate.
How can I remap the volume scroll wheel to mouse wheel on a Corsair K70 keyboard? (e.g., instead of increasing the volume, I want the scroll to send a mouse wheel up signal)
I use Windows 7 SP1 x64 Ultimate.
You can use AutoHotkey to remap any volume up/down signal to wheel up/down:
Volume_Up::WheelUp
Volume_Down::WheelDown
However, it will remap any volume up/down signal, not just the K70 volume scroll wheel, so this solution isn't perfect.
FYI, solution for Linux: Re map volume key to scroll up or down in Linux
You can try SharpKeys, which remaps keyboard keys using the registry. It doesn't require running anything in the background all the time, unlike AutoHotkey, and I don't think it will mess with other volume commands.
You can use #ifwinactive? to set a specific software where this function will work. In my case, I was trying to scrub through the video on Adobe Premiere Pro to take screenshots, so I used:
#UseHook
#MaxHotkeysPerInterval 999999999
#ifwinactive? ahk_exe adobe premiere pro.exe
Volume_Up::WheelUp
Volume_Down::WheelDown
return