Kodi Community Forum
Static List Multi Images - 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: Static List Multi Images (/showthread.php?tid=61491)

Pages: 1 2 3


Static List Multi Images - Rocky5 - 2009-11-13

hello OK what i am wanting to know is it possible to add this to static lists i know its not currently possible but would it be hard to implement into XBMC as currently the way the home menu is done in Xperience its not possible to add multi images to the panels only static images (done that) but i was wanting to do multi images to.

thank you John


- Hitcher - 2009-11-13

I'd like to see this as well please if possible.

Thanks.


- jmarshall - 2009-11-14

A multiimage within a container is all you need, right?


- Hitcher - 2009-11-14

It's for when you're using <content> and <items> outside of the list.


- jmarshall - 2009-11-14

Now you're just trying to confuse me :p

<content> is inside the list, and <items> I have no idea about Wink

I presume all you need is support for the multiimage control inside <itemlayout>'s ?

Cheers,
Jonathan


- Hitcher - 2009-11-14

Sorry, don't know if there's an official name for it but this is the sort of thing.
Code:
<itemlayout width="200" height="200">
    <control type="image">
        <width>200</width>
        <height>200</height>
        <posx>0</posx>
        <posy>0</posy>
        <texture>$INFO[ListItem.Icon]</texture>
    </control>
</itemlayout>
<focusedlayout width="200" height="200">
    <control type="image">
        <width>200</width>
        <height>200</height>
        <posx>0</posx>
        <posy>0</posy>
        <texture>$INFO[ListItem.Icon]</texture>
    </control>
</focusedlayout>

<content>
    <item id="1">
        <description>Videos</description>
        <label>1</label>
        <icon>1.png</icon>
    </item>
    <item id="2">
        <description>Music</description>
        <label>2</label>
        <icon>2.png</icon>
    </item>
</content>



- Rocky5 - 2009-11-14

I need multiimage support inside the lists <content> please.

So would be this

Code:
<content>
<item id="1">
<imagepath>*********</imagepath>
</item>
</content>



- Jezz_X - 2009-11-14

Rocky5 Wrote:I need multiimage support inside the lists <content> please.

So would be this

Code:
<content>
<item id="1">
<imagepath>*********</imagepath>
</item>
</content>

That probably aint going to happen what would happen is he will add the multiimage control to the items that can be displayed in <itemLayout> and <focusedlayout> than then you need to use 1 of the 4 values you can set (label,label2,thumb,icon) as the <imagepath>


- Rocky5 - 2009-11-14

ok if i understand you correctly jmarshall will add support for multiimages in the layout areas then all i would need to do is <icon>G:\Custom Images\</icon> to have a multiimage?


- jmarshall - 2009-11-14

That would be the idea, yes.


- Rocky5 - 2009-11-14

Amazing thank you so much.


- Rocky5 - 2009-11-25

Has this been added to XBMC yet ?


- jmarshall - 2009-11-25

Nope. Skin is in freeze for camelot.


- Rocky5 - 2009-11-26

jmarshall Wrote:Nope. Skin is in freeze for camelot.

Ah ok np thank you.


- Hitcher - 2010-06-02

I just tried this and found that it's still not added; is it scheduled for the next stable release by any chance?

Thanks.