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

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
<section begin=listsummary />Simulates Apple remote on front face. Makes the front escape button do <code>back</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 />
:''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  
<code>Stop</code> on FullScreenVideo), makes up/down into volume controls when on FullScreenVideo, and makes Period ('''.''') toggle <code>FullScreen</code>.<section end=listsummary />


Cut and paste the following into a new text document and save as '''keyboard.xml''' and place in <code>[[userdata]]/keymaps/</code>
Cut and paste the following into a new text document and save as '''keyboard.xml''' and place in <code>[[userdata]]/keymaps/</code>

Revision as of 04:29, 8 January 2012

See also: Boxee Box remote

Simulates Apple remote on front face. Makes the front escape button do back 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>Back</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>