Kodi Community Forum

Full Version: Question! Need Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i'm trying to make a button on the main menu to link to Get Addons in settings but can't seem to find out the location to point it too.

Code:
<control type="button" id="90735">
    <include>ButtonHomeSubCommonValues</include>
    <label>Get Add-ons</label>
    <onclick>ActivateWindow( THIS IS THE INFO I NEED )</onclick>
    <visible>true</visible>
</control>
ActivateWindow(addonbrowser)
No i need the location to the button of Get Addon when you are at addonbrowser
Not possible because it's a list of items and not a group of buttons.

EDIT: I stand corrected -

Code:
ActivateWindow(addonbrowser,addons://repos/,return)
I am using this line to search addons

<onclick>ActivateWindow(addonbrowser,addons://search/,return)</onclick>