Mod Modifying keybord.xml for Home screen
#1
Question 
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>
Reply
#2
1. Your down tag is wrong (Typo?)
2. Did you try?
<left>up</left>
<right>down</right>
<up>left</up>
<down>right</down>
Phenomenal™ Skin • ForumWebsiteGitHub
Reply
#3
(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
Reply
#4
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 ?
Reply

Logout Mark Read Team Forum Stats Members Help
Modifying keybord.xml for Home screen0