Multiple Actions for menu item
#1
Could be a noob question, but is it possible to add two 'custom actions' in a menu item created through the customize main menu option? I want a 'sync library' option that will call both UpdateLibrary(music) and CleanLibrary(music).

Many thanks in advance!
Reply
#2
I think it's possible, but you're going to have to get your hands dirty and add an entry to your overrides.xml:

PHP Code:
<override action="XBMC.CleanLibrary(music)">
    <
action>UpdateLibrary(music)</action>
    <
action>XBMC.CleanLibrary(music)</action>
</
override

And after that selecting the "clean audio library" entry in the "XBMC Commands" group.

I haven't tested this, but I think that should work.

More info here, specifically the section "Overriding an action"
Reply

Logout Mark Read Team Forum Stats Members Help
Multiple Actions for menu item0