I have trouble using my laptop's Fn key + function keys (F1-F12), because they're all lined up without any space between them, and it’s not a shortcut; it’s time waste... It's HP ProBook 4540s, and you'd understand if you used this...
So, I googled and found AutoHotKey (AHK).
Now I want to send:
Fn + F8 (volume down) and
Fn + F9 (volume up) as another shortcut, i.e.,
Fn + NumpadSub and
Fn + NumpadAdd
The following is what I tried so far,
; Volume Down
126NumpadSub::
Send {vkFFsc126 down}
Send {F8}
Send {vkFFsc126 up}
return
126 is the scan code for my Fn key. But it does not work.
How can I fix this?