INTERACT FORUM
More => Old Versions => JRiver Media Center 21 for Windows => Topic started by: defenz0r on June 22, 2016, 05:20:02 pm
-
Hi,
because JRiver cant handle Hotkeys while not in Focus i did a smart Workaround in https://autohotkey.com (https://autohotkey.com).
It works outside and is tested on Windows 10 x64
$F4::ExitApp
$!1::
ToolTip, Rating 1 ; Will show
SetTimer, RemoveToolTip, 5000
ControlSend, ,$^+1, ahk_class MJFrame
return
$!2::
ToolTip, Rating 2 ; Will show
SetTimer, RemoveToolTip, 5000
ControlSend, ,$^+2, ahk_class MJFrame
return
$!3::
ToolTip, Rating 3 ; Will show
SetTimer, RemoveToolTip, 5000
ControlSend, ,$^+3, ahk_class MJFrame
return
$!4::
ToolTip, Rating 4 ; Will show
SetTimer, RemoveToolTip, 5000
ControlSend, ,$^+4, ahk_class MJFrame
return
$!5::
ToolTip, Rating 5 ; Will show
SetTimer, RemoveToolTip, 5000
ControlSend, ,$^+5, ahk_class MJFrame
return
RemoveToolTip:
SetTimer, RemoveToolTip, Off
ToolTip
return
Usage
Alt+1 = Rating 1
Alt+2 = Rating 2
Alt+3 = Rating 3
Alt+4 = Rating 4
Alt+5 = Rating 5
F4=Exit
-
You can define global keyboard shortcuts in MC:
https://wiki.jriver.com/index.php/User_Defined_Global_Keyboard_Shortcuts
-
Updated
Working XML
http://pastebin.com/s1vAfTRT
Alt+1 = Rating 1
Alt+2 = Rating 2
Alt+3 = Rating 3
Alt+4 = Rating 4
Alt+5 = Rating 5
J River\Media Center 21\Data\Custom Resources\Resource.xml
-
You need to add Global="1" to your hotkeys. Take a look at the default Resources.xml.
-
Thanks. Does work.
-
Interesting. I thought Global must mean something other than what it means because it doesn't work on Mac. I guess it's just another difference between MC on Windows and Mac. Nice to know it works with Windows I guess.
Brian.
-
Great tip, thanks for this...