Certian keystrokes sent by some remote controllers execute Windows system functions (ex Volume Mute, Volume Up, Volume Down, etc). If you want to repurpose these keys to perform a SoundMill Easy Player action, you may need to Remap the keystroke. This is because these Windows system function keystrokes get intercepted by Windows and executed before they reach SoundMill. So in the case of "Volume Mute", the Windows master sound controller will get muted when you press that key on the remote.
To solve this problem, you need to Remap the system function keystroke to another keystroke. In this article, we will remap the "Volume Mute" keystroke to a "z" keystroke, then assign the "z" keystroke to an Easy Player action shortcut. We use a free utility named AutoHotKey to do the remapping.
In summary, we create a simple AutoHotKey script (VolumeMuteRemapper.ahk attached) that remaps VolumeMute keystroke to "z" keystroke (see Listing 1).
Listing 1. Volume Mute Remapper script./* AutoHotKey - Remaps Volume_Mute keystroke */ #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. Volume_Mute::z