Kodi Community Forum

Full Version: map key to multiple commands
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

is it possible to map a key to multiple built-in XBMC commands?

something like this (meaningless example):

<e mod="ctrl,shift">
Notification(Key, Yellow button, 3)
Action(Info)
</e>

thanks in advance

Per
afaik its not possible but I don't see why it couldn't be, except for the reason that we might want to clean up and present mapping in GUI.

I'd suggest start a trac ticket about it, and I'd suggest the syntax be:
<key>Action1</key>
<key>Action2</key>
we have a perfectly valid way of doing this; a .py.
spiff Wrote:we have a perfectly valid way of doing this; a .py.

Yes, I found out I could do RunScript()
and execute my commands in python instead.

But thanks anyway.

Per