Navbar
#1
Is there any way of changing how the navbar is displayed when a video is playing? It is sometimes annoying when it pops up just because I moved the mouse. Can it be set to only popup from a keystroke for example?
Reply
#2
You would probably be modifying the skin, so you can either ask the author of the skin for a fix or put on your skinning hat. Suggest you try other skins that might suit your fancy, there's got to be a dozen. Some skins allow a screen shift, and then the navbar is completely out of view. Alternatively you could disable mouse use.
Reply
#3
Try something like this in your userdata keymaps mouse.xml (copy the default from system then edit)

Code:
<FullScreenVideo>
    <mouse>
        <wheelup>Rewind</wheelup>
        <wheeldown>FastForward</wheeldown>
        <mousemove>noop</mousemove>
    </mouse>
  </FullScreenVideo>

scott s.
.
maintainer of skin  Aeon MQ5 mods for post-Gotham Kodi releases:
Matrix see: Aeon MQ5 Mod Matrix release thread
Nexus see: Aeon MQ5 Mod Nexus release thread
Aeon MQ 5 skin and addon repo 11.1.0
Reply
#4
Thanks for the replies.
If it's that complicated I think I'll stick with what I have.
I was assuming there would be some settings for changing what input devices did. Everything else seems so customisable.
Reply
#5
Its not really that complicated
File: NoMouseMove.xml

Code:
<keymap>
  <FullScreenVideo>
    <mouse>
      <mousedrag>noop</mousedrag>
      <mousemove>noop</mousemove>
    </mouse>
  </FullScreenVideo>
  <VideoMenu>
    <mouse>
      <mousedrag>mousedrag</mousedrag>
      <mousemove>mousemove</mousemove>
    </mouse>
  </VideoMenu>
  <VideoOSD>
    <mouse>
      <mousedrag>mousedrag</mousedrag>
      <mousemove>mousemove</mousemove>
    </mouse>
  </VideoOSD>
</keymap>

Just download and place in folder: 'keymaps'
To get to keymaps folder -
Press: 'Windows" key + 'R'
Paste in this command: %appdata%\Kodi\userdata\keymaps\
Press OK

You can map to a keystroke via addon: Keymap Editor
Reply

Logout Mark Read Team Forum Stats Members Help
Navbar0