Kodi Community Forum
Question! Need Help - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+--- Thread: Question! Need Help (/showthread.php?tid=213875)



Question! Need Help - Mikewave - 2015-01-05

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>



RE: Question! Need Help - ronie - 2015-01-05

ActivateWindow(addonbrowser)


RE: Question! Need Help - Mikewave - 2015-01-05

No i need the location to the button of Get Addon when you are at addonbrowser


RE: Question! Need Help - Hitcher - 2015-01-05

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)



RE: Question! Need Help - senna99 - 2015-01-05

I am using this line to search addons

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