I'm trying to use AutoHotKey to control my media. I have the following set which does not work:
;--- Ctrl+Shift+Alt to play/pause media ---
^+!::Send {Media_Play_Pause}`
The following does work:
;--- Ctrl+Shift+NumPad Divide to play/pause media ---
^+NumpadDiv::Send {Media_Play_Pause}`
Is there a way to make the Ctrl+Shift+Alt key binding work to play/pause media?