Kodi Community Forum

Full Version: Editing home.xml Confluence Frodo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm editing home.xml in Confluence (for Frodo) to customize main menu. I am trying to add PleXBMC video addon, and seperately my PlayOn upnp source, to the main menu. After doing lots of searching and reading, I have this that does NOT work (item id is unique).
For PleXBMC:
Code:
<item id="29">
     <label>PleXBMC</label>
     <onclick>ActivateWindow(VideoLibrary,plugin://plugin.video.plexbmc/,return)</onclick>
      <icon>-</icon>
      <thumb>-</thumb>
</item>

and for PlayOn:
Code:
<item id="19">
    <label>PlayOn</label>
    <onclick>ActivateWindow(VideoLibrary,upnp://1c6499be-0fa7-4bbf-9876-524a9f8059c8/,return)</onclick>
    <icon>-</icon>
    <thumb>-</thumb>
</item>

Any help? As I have said, I have been reading the Wiki, and searching, and that's how I came up with the code above, which once again, doesn't work in Home.xml.
Thank you :-)
Try changing your <onclick> to

Code:
<onclick>RunAddon(plugin.video.plexbmc)</onclick>

to run the plugin
I will give it a shot when I get home and report back. Thank you very much :-)
it did not work