What is the Key ID for the escape key?
#1
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>
Reply
#2
<escape>
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#3
ah, thank you much sir... this does it.
Code:
<Home>
    <keyboard>
      <escape>FullScreen</escape>
    </keyboard>
    </Home>
Reply
#4
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
Reply

Logout Mark Read Team Forum Stats Members Help
What is the Key ID for the escape key?0