How to bind Navigation keys to Multimedia keys?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
Spartameister
Posts: 1
Joined: 25 Jul 2021, 14:09

How to bind Navigation keys to Multimedia keys?

25 Jul 2021, 14:15

Hi, I recently got a 65% keyboard that does not feature multimedia functions not even with the Fn key.
So I would like to make the following binds; 1. insert to mute 2. PauseBrk makes the Volume increase 3. Scrlck makes the Volume decrease.

Would be grateful if someone could let me know what code to paste in the .ahk file to perform these functions
Thanks
gregster
Posts: 9020
Joined: 30 Sep 2013, 06:48

Re: How to bind Navigation keys to Multimedia keys?

25 Jul 2021, 15:12

Try

Code: Select all

Ins::Send {Volume_Mute}
ScrollLock::Send {Volume_Down}
Pause::Send {Volume_Up}
Although this will probably change the volume 2 steps.

For 3 steps:

Code: Select all

Ins::Send {Volume_Mute}
ScrollLock::Soundset -3
Pause::Soundset +3
But this doesn't bring up the volume osd - there are ways to get this, too, ...

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: filipemb, gsxr1300, mikeyww and 286 guests