Kodi Community Forum

Full Version: is it possible to get widgets from plugins ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
try trying to make custon menu items for plugins
tryed all the ways i can think off

i can get and image to work but dose not look right
xml:
<control type="button" id="1010">
      <description>My first button control</description>
      <left>100</left>
      <top>300</top>
      <width>720</width>
      <height>280</height>
      <visible>true</visible>
      <colordiffuse></colordiffuse>
      <texturefocus >https://appletv.redbull.tv/images/ce320a678889df0722cd40e6a471ef1afe499398</texturefocus>
      <texturenofocus colordiffuse="FFFFAAFF">https://appletv.redbull.tv/images/ce320a678889df0722cd40e6a471ef1afe499398</texturenofocus>
      <label>Featured</label>
      <wrapmultiline>true</wrapmultiline>
      <font>font12</font>
      <align>center</align>
      <aligny>top</aligny>
      <onclick>ActivateWindow(10025,&quot;plugin://plugin.video.redbull.tv/?api_url=aHR0cHM6Ly9hcHBsZXR2LnJlZGJ1bGwudHYvcHJvZHVjdHMvQVAtMVhOWFczSkIxMVcxMT9jb2xs%0aZWN0aW9uX2lkPXBsYXlsaXN0cyUzQSUzQTg0OTJlNTY4LTYyNmEtNDhhMy1iMGQ3LTZkMTFlMGYw%0aMGRjMyZwbGF5bGlzdF9wYXRoPXBsYXlsaXN0cyUyRnBsYXlsaXN0cyUzQSUzQTg0OTJlNTY4LTYy%0aNmEtNDhhMy1iMGQ3LTZkMTFlMGYwMGRjMyUzRnRvdGFsJTNEOSUyNmxpbWl0JTNEMjAlMjZvZmZz%0aZXQlM0Qw%0a&quot;,return)</onclick>
       <onup>2</onup>
      <ondown>3</ondown>
      <onleft>23010</onleft>
      <onright>23010</onright>
</control>
Image
I think your question is better placed in the skinning forum. I will move it there.
widgets use a container and have it's content filled dynamically from either a plugin or a path:
https://kodi.wiki/view/Skinning_Manual#F...ic_content

if you only want specific items to show up on the widgets, you can specify those using static content:
https://kodi.wiki/view/Skinning_Manual#F...ic_content
(2019-02-08, 11:37)ronie Wrote: [ -> ]widgets use a container and have it's content filled dynamically from either a plugin or a path:
https://kodi.wiki/view/Skinning_Manual#F...ic_content

if you only want specific items to show up on the widgets, you can specify those using static content:
https://kodi.wiki/view/Skinning_Manual#F...ic_content
thank you
Image