Archive:Alternative keymaps for Boxee Box remote: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>NedBot
m (Robot: Cosmetic changes)
No edit summary
Line 1: Line 1:
:''See also: '''[[Boxee Box remote]]'''''
:''See also: '''[[Boxee Box remote]]'''''


<section begin=listsummary />Simulates Apple remote on front face. Makes the front escape button do <code>back</code> instead of <code>PreviousMenu</code> (and
==Keymap 1==
<code>Stop</code> on FullScreenVideo), makes up/down into volume controls when on FullScreenVideo, and makes Period ('''.''') toggle <code>FullScreen</code>.<section end=listsummary />
;What it does
*Global
**Makes the front escape button do <code>back</code> instead of <code>PreviousMenu</code>
*Full Screen video
**Escape will stop video
**Left will do SmallStepBack (-7s) instead of StepBack (-30s)


Cut and paste the following into a new text document and save as '''keyboard.xml''' and place in <code>[[userdata]]/keymaps/</code>
;Keymap
<pre>
:Cut and paste the following into a new text document and save as '''keyboard.xml''' and place in <code>[[userdata]]/keymaps/</code>
<source lang="XML">
<keymap>
<keymap>
   <global>
   <global>
     <keyboard>
     <keyboard>
       <escape>Back</escape>
       <escape>Back</escape>
      <period>FullScreen</period>
     </keyboard>
     </keyboard>
   </global>
   </global>
   <FullscreenVideo>
   <FullscreenVideo>
     <keyboard>
     <keyboard>
      <period>FullScreen</period>
      <comma>StepBack</comma>
       <up>VolumeUp</up>
       <up>VolumeUp</up>
       <down>VolumeDown</down>
       <down>VolumeDown</down>
      <left>SmallStepBack</left>
       <escape>Stop</escape>
       <escape>Stop</escape>
     </keyboard>
     </keyboard>
   </FullscreenVideo>
   </FullscreenVideo>
</keymap>
</keymap>
</pre>
</source>


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

Revision as of 20:06, 25 July 2013

See also: Boxee Box remote

Keymap 1

What it does
  • Global
    • Makes the front escape button do back instead of PreviousMenu
  • Full Screen video
    • Escape will stop video
    • Left will do SmallStepBack (-7s) instead of StepBack (-30s)
Keymap
Cut and paste the following into a new text document and save as keyboard.xml and place in userdata/keymaps/
<keymap>
  <global>
    <keyboard>
      <escape>Back</escape>
    </keyboard>
  </global>
  <FullscreenVideo>
    <keyboard>
      <up>VolumeUp</up>
      <down>VolumeDown</down>
      <left>SmallStepBack</left>
      <escape>Stop</escape>
    </keyboard>
  </FullscreenVideo>
</keymap>