Kodi Community Forum

Full Version: Modifying keybord.xml for Home screen
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I need replace LEFT/RIGHT with UP/DOWN buttons action, but only in Home screen . I tried to create keyboard.xml in C:\Users\User\AppData\Roaming\Kodi\userdata\keymaps
But it didn't worked. Maybe somebody can help me?

Thanks Smile
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<keymap>
    <home>
        <keyboard>
            <left>ACTION_MOVE_UP</left>
            <right>ACTION_MOVE_DOWN</right>            
            <up>ACTION_MOVE_LEFT</up>
            <down>ACTION_MOVE_RIGHT</right>
        </keyboard>
    </home>
</keymap>
1. Your down tag is wrong (Typo?)
2. Did you try?
<left>up</left>
<right>down</right>
<up>left</up>
<down>right</down>
(2016-04-26, 19:21)vladas Wrote: [ -> ]Hi, I need replace LEFT/RIGHT with UP/DOWN buttons action, but only in Home screen . I tried to create keyboard.xml in C:\Users\User\AppData\Roaming\Kodi\userdata\keymaps
But it didn't worked. Maybe somebody can help me?

Thanks Smile
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<keymap>
    <home>
        <keyboard>
            <left>ACTION_MOVE_UP</left>
            <right>ACTION_MOVE_DOWN</right>            
            <up>ACTION_MOVE_LEFT</up>
            <down>ACTION_MOVE_RIGHT</right>
        </keyboard>
    </home>
</keymap>

Rather than ACTION_MOVE_UP just use Up (and similarly for the others)

i.e

Code:
<left>Up</left>

See here for more info

http://kodi.wiki/view/Keymaps
Thanks, for fast answer Smile I also found that in C:\Program Files (x86)\Kodi\system\keymaps Smile


Is it possible to and that mod in skin xml file ?