INTERACT FORUM

More => Old Versions => JRiver Media Center 26 for Windows => Topic started by: MaxA on March 21, 2020, 07:12:13 pm

Title: Assign the middle button (wheel) action
Post by: MaxA on March 21, 2020, 07:12:13 pm
Hi,

Can I assign mouse MB click to play/pause video?

Thanks
Title: Re: Assign the middle button (wheel) action
Post by: wer on March 21, 2020, 08:48:52 pm
If you have a Logitech mouse, you can use SetPoint to configure the middle button to send whatever keystroke you want on a per-application basis.

JRiver has keyboard equivalents for most commands. Just pull down the menus and look.

If your mouse is from some other manufacturer, you might check if they have a similar capability.
Title: Re: Assign the middle button (wheel) action
Post by: marko on March 22, 2020, 01:43:04 am
By default, if you middle click on a library view, it will open that view in a new tab. Be careful of any conflicts when pursuing this one :)
Title: Re: Assign the middle button (wheel) action
Post by: MaxA on March 22, 2020, 07:28:11 am
I had an idea to use some method like keyboard shortcuts setup via XML.
Ok, it's better to leave  as is. NP to make extra click. Thanks.


Still wondering why there are no normal interface for shorkcuts setup )
Title: Re: Assign the middle button (wheel) action
Post by: wer on March 22, 2020, 01:47:30 pm
There is a way to change shortcuts, but not through the interface (unless you're using a remote control).

https://wiki.jriver.com/index.php/User_Defined_Global_Keyboard_Shortcuts
Title: Re: Assign the middle button (wheel) action
Post by: MaxA on March 22, 2020, 01:59:55 pm
There is a way to change shortcuts, but not through the interface (unless you're using a remote control).

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

Yes, I know about Custom Resources\Resource.xml and use it to modify a little bit keyboard shortcuts

<ACCELERATORS>
     <!-- Volume control -->
    <Entry Key="Ctrl;Shift;+" Text="Volume Up" Command="10018" Param="1" Global="1" />
    <Entry Key="Ctrl;Shift;-" Text="Volume Down" Command="10019" Param="1" Global="1" />

    <!-- Playback -->
    <Entry Command="10000" Text="Play/Pause"  Key="Ctrl;Shift;Insert" Global="1" />
    <Entry Command="10000" Text="Play/Pause"  Key="Ctrl;Shift;0" Global="1" />
    <Entry Command="10002" Text="Stop" Key="Ctrl;Shift;Multiply"  Global="1" />
    <Entry Command="10002" Text="Stop" Key="Ctrl;Shift;Backspace"  Global="1" />

    <!-- Full Screen shorcuts -->
    <Entry Key="Ctrl;Shift;Up" Command="10018" Param="2" TranslateFlags="13" NoShowAsShortcut="1" />
    <Entry Key="Ctrl;Shift;Down" Command="10019" Param="2" TranslateFlags="13" NoShowAsShortcut="1" />
</ACCELERATORS>