Kodi Community Forum

Full Version: Should Skin.SetAddon(string,xbmc.addon.game) work?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am working in retroplayer fork Kodi 18 180817 nightly and would like to use Skin.SetAddon for game add-ons.  Trying this does not launch a select dialog.
There are add-ons installed with <provides>game</provides> in addon.xml.

scott s.
.
the extension point should be kodi.gameclient i think?
Well, for example the addon Internet Archive Game Launcher has this:
Code:
  <extension point="xbmc.python.pluginsource" library="addon.py">
    <provides>video game</provides>
  </extension>

and if I use Skin.SetAddon($INFO[Skin.String(custom_path)],xbmc.addon.video)
I get a select dialog that includes this addon (and other video addons).  I want to do the same thing, except for game addons.  This is used in a custom window that allows a user to set a home submenu static list item that does a RunScript for the selected addon.

scott s.
.