Alternative keymaps for number pads

From Official Kodi Wiki
Revision as of 00:59, 5 June 2014 by NedBot (talk | contribs) (Bot: Automated text replacement (- XBMC + {{name}} ))
Jump to navigation Jump to search

Alternative keymaps for the number pads, as suggested by the community.

Allows a number pad to control XBMC

Keymap 1

What it does
  • 0 - OSD
  • 1 - Stop
  • 2 - Down
  • 3 - BigStepBack (-10m or last chapter)
  • 4 - Left
  • 5 - Select
  • 6 - Right
  • 7 - XBMC Home screen
  • 8 - Up
  • 9 - BigStepForward (+10m or next chapter)
  • / - StepBack (-30s)
  • * - StepForward (+30s)
  • . (period) - Info
  • NumLock - Play/Pause
  • + - Volume Up
  • - - Volume Down
  • BackSpace - Back
  • Enter - Select
Keymap
Cut and paste the following into a new text document and save as keyboard.xml and place in userdata/keymaps/
<keymap>
  <global>
    <keyboard>
      <numpadzero>OSD</numpadzero>
      <numpadone>Stop</numpadone>
      <numpadtwo>Down</numpadtwo>
      <numpadthree>BigStepBack</numpadthree>
      <numpadfour>Left</numpadfour>
      <numpadfive>Select</numpadfive>
      <numpadsix>Right</numpadsix>
      <numpadseven>XBMC.ActivateWindow(Home)</numpadseven>
      <numpadeight>Up</numpadeight>
      <numpadnine>BigStepForward</numpadnine>
      <numpaddivide>StepBack</numpaddivide>
      <!-- my numpad divide shows up as "forwardslash" -->
      <forwardslash>StepBack</forwardslash>
      <numpadtimes>StepForward</numpadtimes>
      <numpadperiod>Info</numpadperiod>
      <numlock>Pause</numlock>
      <!-- + and - handle the volume by default -->
      <!-- BackSpace is "back" by default -->
      <!-- Enter is "select" by default -->
    </keyboard>
  </global>
</keymap>