AutoHotKey v2 script to work around the issue: remap Media_Play_Pause to (Windows key + Media_Play_Pause)
Media_Play_Pause::
{
Send "{LWin down}"
Send "{Media_Play_Pause}"
Send "{LWin up}"
}
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi everyone,
So I've got a weird problem, and I haven't found anyone else with the same issue.
For some reason the play/pause and stop media keys on my keyboard (K55) aren't working. If I test it on keyboardchecker.com it says MediaPlayPause and MediaStop, so the keys itself do work. I've tried it with both Spotify and VLC, and it they not do anything. Other keys like previous track, next track and volume controls work fine. It's just the play/pause and stop keys that don't work. Nothing happens.
Anybody got any clue as to what's going wrong here?
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
AutoHotKey v2 script to work around the issue: remap Media_Play_Pause to (Windows key + Media_Play_Pause)
Media_Play_Pause::
{
Send "{LWin down}"
Send "{Media_Play_Pause}"
Send "{LWin up}"
}
AutoHotKey v2 script to work around the issue: remap Media_Play_Pause to (Windows key + Media_Play_Pause)
Media_Play_Pause:: { Send "{LWin down}" Send "{Media_Play_Pause}" Send "{LWin up}" }
For remappings like this you can use a simpler way:
Media_Play_Pause::^Media_Play_Pause
This also uses CTRL (^) instead of WIN (#) to avoid the start menu opening.
I had the same happen but with MS Teams. Closing it in taskmanager fixed the problem, have to wait until I get a call to see if it comes back.
Same issue for me. When Teams is running, play/pause either will not work or will cause Teams to ring like I am calling someone. Quit Teams and play/pause goes back to normal.
Dude, you just saved me. Holy ****. Thanks!