Alternative keymaps for most remotes: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
Line 13: Line 13:
       <back>SmallStepBack</back>
       <back>SmallStepBack</back>
     </remote>
     </remote>
    <keyboard>
      <back>SmallStepBack</back>
    </keyboard>
   </FullscreenVideo>
   </FullscreenVideo>
</keymap>
</keymap>
Line 19: Line 22:
=== What it does ===
=== What it does ===
* {{button|Back}} durning full screen playback is changed to SmallStepBack (-7 seconds)
* {{button|Back}} durning full screen playback is changed to SmallStepBack (-7 seconds)
== Keymap 2 ==
:Cut and paste the following into a new text document and save as '''remote.xml''' and place in <code>[[userdata]]/keymaps/</code>
<syntaxhighlight lang="xml" enclose="div">
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <FullscreenVideo>
    <remote>
      <back>stop</back>
    </remote>
    <keyboard>
      <back>stop</back>
    </keyboard>
  </FullscreenVideo>
</keymap>
</syntaxhighlight>
=== What it does ===
* {{button|Back}} durning full screen playback will stop the video and return you to the file/library lists.


[[Category:Custom keymaps]]
[[Category:Custom keymaps]]

Revision as of 08:34, 1 February 2015

Home icon grey.png   ▶ Remote controls ▶ Alternative keymaps for most remotes

Alternative keymaps for most remotes, as suggested by the community. This includes MCE/RC6 type remote controls.

Keymap 1

Cut and paste the following into a new text document and save as remote.xml and place in userdata/keymaps/
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <FullscreenVideo>
    <remote>
      <back>SmallStepBack</back>
    </remote>
    <keyboard>
      <back>SmallStepBack</back>
    </keyboard>
  </FullscreenVideo>
</keymap>

What it does

  • Back durning full screen playback is changed to SmallStepBack (-7 seconds)

Keymap 2

Cut and paste the following into a new text document and save as remote.xml and place in userdata/keymaps/
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <FullscreenVideo>
    <remote>
      <back>stop</back>
    </remote>
    <keyboard>
      <back>stop</back>
    </keyboard>
  </FullscreenVideo>
</keymap>

What it does

  • Back durning full screen playback will stop the video and return you to the file/library lists.