Kodi Community Forum

Full Version: What is the Key ID for the escape key?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When I'm on the home screen I have the menu button on the remote mapped to a FULLSCREEN action... I want the same thing to happen when I press the ESCAPE key on the home screen. But I don't know what Key ID the escape key is.

Code:
- <keymap>
- <global>
- <keyboard>
<key id="127055">ContextMenu</key>
<key id="61543">VolumeUp</key>
<key id="61544">Volumedown</key>
</keyboard>
</global>
</keymap>
<escape>
ah, thank you much sir... this does it.
Code:
<Home>
    <keyboard>
      <escape>FullScreen</escape>
    </keyboard>
    </Home>
In Eden you shouldn't need to use the <key id="..."> tags since all keys have names. Look at the system keyboard.xml to see a list of all keynames.

JR