INTERACT FORUM

Please login or register.

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

Author Topic: How to assign the right and left keyboard keys for fast forward and reverse?  (Read 1651 times)

cron0sRXR8

  • Galactic Citizen
  • ****
  • Posts: 296

Hi,

I want use left/right keys of the keyboard for search in the timeline of audio/video files during the play.

I have this option of OPTIONS/VIDEO:
Jump behavior: Forward 5 seconds, backward 5 seconds.

But I want jump of 1secd and 1secd!


I have this code in this path:
C:\Program Files\J River\Media Center 23\Data\Custom Resources\Resource.xml

Code: [Select]
  <MJRS version="1.0">
 
  <ACCELERATORS>

    <!-- General shortcuts -->
    <Entry Key="Right" Command="10008" Param="0" TranslateFlags="17" />
    <Entry Key="Left" Command="10009" Param="0" TranslateFlags="17" />
   
   
  </ACCELERATORS>

</MJRS>

I used this code before.
But now this code not works.
I'm using JRMC23 x64.

is it possible fix it??

Thank you!
Logged

Matt

  • Administrator
  • Citizen of the Universe
  • *****
  • Posts: 41953
  • Shoes gone again!

For jumping the playback position, you probably want to use:
    MCC_SEEK_FORWARD,                              // [int nMilliseconds (0 means default -- varies depending on playback type)]
    MCC_SEEK_BACK,                                 // [int nMilliseconds (0 means default -- varies depending on playback type)]

Which are 10034 and 10035.

Because you're using the fast forward and rewind commands and I wouldn't expect them to make the position jump.
Logged
Matt Ashland, JRiver Media Center

cron0sRXR8

  • Galactic Citizen
  • ****
  • Posts: 296

Hi,

I'm sorry, this is the correct code!

Code: [Select]
  <MJRS version="1.0">
 
  <ACCELERATORS>

    <!-- General shortcuts -->
    <Entry Key="Right" Command="10034" Param="2000" TranslateFlags="17" />
    <Entry Key="Left" Command="10035" Param="2000" TranslateFlags="17" />
   
   
  </ACCELERATORS>

</MJRS>

It works playing video file. But It not works with audio file! I capture a video with a test. Please you check it!!

http://www102.zippyshare.com/v/3twgRgTW/file.html

How to fix it??
Thank you!!!
Logged

cron0sRXR8

  • Galactic Citizen
  • ****
  • Posts: 296

One more thing:

if I do click with the mouse over the cover of the album it works.
if I do click with the mouse over the time line it NOT works.

with the video files occurs the same. I need do click over the video window with the mouse for use LEFT/RIGHT key in the keyboard.
when i do click in the timeline ALWAYS not work the keys LEFT/RIGHT for SEEK_FORWARD/BACK

sorry for my poor english.
Logged

Matt

  • Administrator
  • Citizen of the Universe
  • *****
  • Posts: 41953
  • Shoes gone again!

One more thing:

if I do click with the mouse over the cover of the album it works.
if I do click with the mouse over the time line it NOT works.

sorry for my poor english.

The slider control takes the left and rights keys.

But if you click anywhere else in the program, it should translate your shortcuts.
Logged
Matt Ashland, JRiver Media Center

cron0sRXR8

  • Galactic Citizen
  • ****
  • Posts: 296

The slider control takes the left and rights keys.

But if you click anywhere else in the program, it should translate your shortcuts.

Thank you, I understand what you mean.
but the problem is that it is very uncomfortable.

- I want my left / right keys to continue to working on the slider control. is this possible?
- also it is very annoying that if I am on the playlist the right and left shortcuts stop working. I want that if I am on the playlist the shortcuts continue to operate correctly. is this possible? i dont want use the left/right key for move in the playlist up and down!

thank you!!!
Logged
Pages: [1]   Go Up