Assigning a rating to the currently playing track (tag it) using a hotkey works in the Windows version but does nothing in the Mac version:
<!-- Rate current song -->
<Entry Key="Ctrl;Shift;0" Command="10023" Param="0" />
<Entry Key="Ctrl;Shift;1" Command="10023" Param="1" />
<Entry Key="Ctrl;Shift;2" Command="10023" Param="2" />
<Entry Key="Ctrl;Shift;3" Command="10023" Param="3" />
<Entry Key="Ctrl;Shift;4" Command="10023" Param="4" />
<Entry Key="Ctrl;Shift;5" Command="10023" Param="5" />
<Entry Key="Ctrl;Shift;NumPad0" Command="10023" Param="0" />
<Entry Key="Ctrl;Shift;NumPad1" Command="10023" Param="1" />
<Entry Key="Ctrl;Shift;NumPad2" Command="10023" Param="2" />
<Entry Key="Ctrl;Shift;NumPad3" Command="10023" Param="3" />
<Entry Key="Ctrl;Shift;NumPad4" Command="10023" Param="4" />
<Entry Key="Ctrl;Shift;NumPad5" Command="10023" Param="5" />
The above commands are defined in the Mac & Windows Resource.xml file. They all work in 20.0.87 in Windows but not in the 20.0.87 Mac version. Assigning a different key combo also does not get it to work, i.e. "<Entry Key="Alt;Ctrl;5" Command="10023" Param="5" />"
Thanks for any suggestions (or a fix) to get this working.