how to display skin Add-ons window?
#1
Rainbow 
If we write:
<onclick>ActivateWindow(MusicLibrary,Addons,return)</onclick>
inside a button , clicking on the button displayes Music Add-ons window .
what can we write inside button and under <onclick> Huh </onclick> so that it will display
Skin Add-ons window
similarly what for
Screensaver Add-ons
Visualization Add-ons
etc

Thanks for help in advance.
Reply
#2
Not sure what you're trying to do here because Skin, Screensaver, and Visualiser addons don't serve any type of content and can't be loaded into a specific window like Music, Videos, Pictures, etc addons can.
Reply
#3
how can we display the window on click of a button which we get normally by clicking "Enabled Add-ons" in Settings -> Add-ons .
I want to present all available addons in one place so user can start any add-on quickly.
All add-ons should be visible by clicking on a button which will be on top all the times.
Reply
#4
These are the options that i have in the submenu of the Add-ons panel in Xperience More...

Code:
<content>
    <item id="0">
        <label>$LOCALIZE[24043]</label>
        <onclick>ActivateWindow(AddonBrowser,addons://outdated/)</onclick>
    </item>                
    <item id="1">
        <label>$LOCALIZE[31254]</label>
        <onclick>ActivateWindow(filemanager,return)</onclick>
    </item>
    <item id="2">
        <label>$LOCALIZE[1]</label>
        <onclick>ActivateWindow(pictures,addons,return)</onclick>
    </item>
    <item id="3">
        <label>$LOCALIZE[3]</label>
        <onclick>ActivateWindow(videos,addons,return)</onclick>
    </item>
    <item id="4">
        <label>$LOCALIZE[2]</label>
        <onclick>ActivateWindow(music,addons,return)</onclick>
    </item>
    <item id="5">
        <label>$LOCALIZE[0]</label>
        <onclick>ActivateWindow(programs,addons,return)</onclick>
    </item>
    <item id="6">
        <label>$LOCALIZE[24033]</label>
        <onclick>ActivateWindow(AddonBrowser,addons://all/)</onclick>
    </item>
</content>

... and this is how it looks

Image


Cheers
Nessus
Reply
#5
Thanks nessus, that helped Smile
Reply

Logout Mark Read Team Forum Stats Members Help
how to display skin Add-ons window?0