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

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
>Alcoheca
(use ParentDir instead of Back, retains compatibility with Dharma)
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  
<section begin=listsummary />Simulates Apple remote on front face. Makes the front escape button do <code>ParentDir</code> instead of <code>PreviousMenu</code> (and  
<code>Stop</code> on FullScreenVideo), makes up/down into volume controls when on FullScreenVideo, and makes Period ('''.''') toggle <code>FullScreen</code>.<section end=listsummary />
<code>Stop</code> on FullScreenVideo), makes up/down into volume controls when on FullScreenVideo, and makes Period ('''.''') toggle <code>FullScreen</code>.<section end=listsummary />


Line 9: Line 9:
   <global>
   <global>
     <keyboard>
     <keyboard>
       <escape>Back</escape>
       <escape>ParentDir</escape>
       <period>FullScreen</period>
       <period>FullScreen</period>
     </keyboard>
     </keyboard>

Revision as of 14:30, 13 June 2012

See also: Boxee Box remote

Simulates Apple remote on front face. Makes the front escape button do ParentDir instead of PreviousMenu (and Stop on FullScreenVideo), makes up/down into volume controls when on FullScreenVideo, and makes Period (.) toggle FullScreen.

Cut and paste the following into a new text document and save as keyboard.xml and place in userdata/keymaps/

<keymap>
  <global>
    <keyboard>
      <escape>ParentDir</escape>
      <period>FullScreen</period>
    </keyboard>
  </global>
  <FullscreenVideo>
    <keyboard>
      <period>FullScreen</period>
      <comma>StepBack</comma>
      <up>VolumeUp</up>
      <down>VolumeDown</down>
      <escape>Stop</escape>
    </keyboard>
  </FullscreenVideo>
</keymap>