INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Can't figure out Global Hot Key...  (Read 3166 times)

Innosint

  • Recent member
  • *
  • Posts: 5
Can't figure out Global Hot Key...
« on: February 03, 2014, 11:51:16 pm »

So... this is starting to get a bit frustrating.....

I followed the instruction here.

http://wiki.jriver.com/index.php/User_Defined_Global_Keyboard_Shortcuts

I created, the folder,
Copy/create the resource file under Custom Resources

Create my list of global short cuts as


Quote
<MJRS version="1.0">
 
  <ACCELERATORS>

    <!-- Global shortcuts -->
    <Entry Key="Ctrl;Alt;Up" Command="10000" Param="0" Global="1" />
    <Entry Key="Ctrl;Alt;Down" Command="10002" Param="0" Global="1" />
    <Entry Key="Ctrl;Alt;Left" Command="10003" Param="0" Global="1" />   
    <Entry Key="Ctrl;Alt;Right" Command="10004" Param="0" Global="1" />   
 
   
  </ACCELERATORS>

</MJRS>


But what now?

I try to start the JRiver again, the shortcut doesn't seem to be taking any effect.
I try to double click it and just let it run. nothing.
I close all the applications that might be related to JRiver. restart the computer, nothing.
How exactly do I make the hotkey take affect?

or did I do/wrote something wrong in the custom hot key area.
Logged

MrC

  • Citizen of the Universe
  • *****
  • Posts: 10462
  • Your life is short. Give me your money.
Re: Can't figure out Global Hot Key...
« Reply #1 on: February 04, 2014, 12:25:15 am »

Be sure to set the TranslateFlags also; they are not present in your definitions.  The target specific areas of MC.
Logged
The opinions I express represent my own folly.

Innosint

  • Recent member
  • *
  • Posts: 5
Re: Can't figure out Global Hot Key...
« Reply #2 on: February 04, 2014, 01:18:03 am »

Be sure to set the TranslateFlags also; they are not present in your definitions.  The target specific areas of MC.

oh, and where would that be? how exactly would it look like in my code?

I look back at the example.. it doesn't seem to set it anywhere.

Even looking the default source. it doesn't seem to require translate flag for the CTRL;SHIFT;F12

thx for the help.


edit: also added TranslateFlags="32" to the format, it also dosen't seem to help.....
Logged

MrC

  • Citizen of the Universe
  • *****
  • Posts: 10462
  • Your life is short. Give me your money.
Re: Can't figure out Global Hot Key...
« Reply #3 on: February 04, 2014, 01:41:57 am »


    <Entry Key="Ctrl;Alt;Up"    Command="10000" Param="0"  TranslateFlags="17" Global="1" />
    <Entry Key="Ctrl;Alt;Down"  Command="10002" Param="0"  TranslateFlags="17" Global="1" />
    <Entry Key="Ctrl;Alt;Left"  Command="10003" Param="0"  TranslateFlags="17" Global="1" />   
    <Entry Key="Ctrl;Alt;Right" Command="10004" Param="0"  TranslateFlags="17" Global="1" /> 
Logged
The opinions I express represent my own folly.

Innosint

  • Recent member
  • *
  • Posts: 5
Re: Can't figure out Global Hot Key...
« Reply #4 on: February 04, 2014, 01:48:27 am »

    <Entry Key="Ctrl;Alt;Up"    Command="10000" Param="0"  TranslateFlags="17" Global="1" />
    <Entry Key="Ctrl;Alt;Down"  Command="10002" Param="0"  TranslateFlags="17" Global="1" />
    <Entry Key="Ctrl;Alt;Left"  Command="10003" Param="0"  TranslateFlags="17" Global="1" />   
    <Entry Key="Ctrl;Alt;Right" Command="10004" Param="0"  TranslateFlags="17" Global="1" /> 

hmmm so let me make this clear, I create the folder
C:\Program Files (x86)\J River\Media Center 19\Data\Custom Resources
Then create a file call
Resource.xml

Then for me, paste

Quote
<MJRS version="1.0">
 
  <ACCELERATORS>

    <!-- Global shortcuts -->
    <Entry Key="Ctrl;Alt;Up"    Command="10000" Param="0"  TranslateFlags="17" Global="1" />
    <Entry Key="Ctrl;Alt;Down"  Command="10002" Param="0"  TranslateFlags="17" Global="1" />
    <Entry Key="Ctrl;Alt;Left"  Command="10003" Param="0"  TranslateFlags="17" Global="1" />   
    <Entry Key="Ctrl;Alt;Right" Command="10004" Param="0"  TranslateFlags="17" Global="1" /> 
   
  </ACCELERATORS>

</MJRS>


into the source file.

Save, close the Resource.xml

Close JRiver, and restart JRiver,

Then it should take affect right?

Did i miss anything? because it's not doing anything as of now...
Logged

MrC

  • Citizen of the Universe
  • *****
  • Posts: 10462
  • Your life is short. Give me your money.
Re: Can't figure out Global Hot Key...
« Reply #5 on: February 04, 2014, 01:52:33 am »

Yup, I tested those bindings, and they worked.

Close MC before you edit the file.  Open after you've saved it.
Logged
The opinions I express represent my own folly.

Innosint

  • Recent member
  • *
  • Posts: 5
Re: Can't figure out Global Hot Key...
« Reply #6 on: February 04, 2014, 01:54:54 am »

interesting... any option I need to enable for this to work?
Do I have to run this under admin ?

i'll restart and computer and see if it works
Logged

MrC

  • Citizen of the Universe
  • *****
  • Posts: 10462
  • Your life is short. Give me your money.
Re: Can't figure out Global Hot Key...
« Reply #7 on: February 04, 2014, 01:58:57 am »

The file just needs to be readable by MC.  Restarting shouldn't matter.  Be sure all MC process are stopped, including the server.

Here's are your key shortcuts in action:

   https://dl.dropboxusercontent.com/u/87189402/global%20shortcut%20keys.mp4
Logged
The opinions I express represent my own folly.

Innosint

  • Recent member
  • *
  • Posts: 5
Re: Can't figure out Global Hot Key...
« Reply #8 on: February 04, 2014, 02:01:55 am »

Yeah I did take notice to shut down anything related to JRiver when i restart, including the Web app in applications.

but anyway, after a restart, somehow the command key now takes affect,

Thank you very much for your help  :)
Logged

MrC

  • Citizen of the Universe
  • *****
  • Posts: 10462
  • Your life is short. Give me your money.
Re: Can't figure out Global Hot Key...
« Reply #9 on: February 04, 2014, 02:02:32 am »

Excellent.
Logged
The opinions I express represent my own folly.
Pages: [1]   Go Up