INTERACT FORUM

Please login or register.

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

Author Topic: Assign the middle button (wheel) action  (Read 485 times)

MaxA

  • Junior Woodchuck
  • **
  • Posts: 62
Assign the middle button (wheel) action
« on: March 21, 2020, 07:12:13 pm »

Hi,

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

Thanks
Logged

wer

  • Citizen of the Universe
  • *****
  • Posts: 2640
Re: Assign the middle button (wheel) action
« Reply #1 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.
Logged

marko

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 8954
Re: Assign the middle button (wheel) action
« Reply #2 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 :)

MaxA

  • Junior Woodchuck
  • **
  • Posts: 62
Re: Assign the middle button (wheel) action
« Reply #3 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 )
Logged

wer

  • Citizen of the Universe
  • *****
  • Posts: 2640
Re: Assign the middle button (wheel) action
« Reply #4 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
Logged

MaxA

  • Junior Woodchuck
  • **
  • Posts: 62
Re: Assign the middle button (wheel) action
« Reply #5 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>
Logged
Pages: [1]   Go Up