Static List Multi Images

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Rocky5 Offline
Alaska Group
Posts: 564
Joined: Jun 2008
Location: Scotland
Post: #1
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
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,932
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #2
I'd like to see this as well please if possible.

Thanks.

[Image: sig_zps3af3b48e.jpg]
find quote
jmarshall Offline
Team-XBMC Developer
Posts: 24,523
Joined: Oct 2003
Reputation: 138
Post: #3
A multiimage within a container is all you need, right?

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


[Image: badge.gif]
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,932
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #4
It's for when you're using <content> and <items> outside of the list.

[Image: sig_zps3af3b48e.jpg]
find quote
jmarshall Offline
Team-XBMC Developer
Posts: 24,523
Joined: Oct 2003
Reputation: 138
Post: #5
Now you're just trying to confuse me Tongue

<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

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


[Image: badge.gif]
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,932
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #6
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>

[Image: sig_zps3af3b48e.jpg]
find quote
Rocky5 Offline
Alaska Group
Posts: 564
Joined: Jun 2008
Location: Scotland
Post: #7
I need multiimage support inside the lists <content> please.

So would be this

Code:
<content>
<item id="1">
<imagepath>*********</imagepath>
</item>
</content>
find quote
Jezz_X Offline
Team-XBMC Skinner
Posts: 5,264
Joined: Jun 2006
Reputation: 55
Location: Earth
Post: #8
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>

Skins I have done....
[Image: skinsq.png]
And others in the past...

Want to know what I'm working on currently? Check me out on Google+
find quote
Rocky5 Offline
Alaska Group
Posts: 564
Joined: Jun 2008
Location: Scotland
Post: #9
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?
find quote
jmarshall Offline
Team-XBMC Developer
Posts: 24,523
Joined: Oct 2003
Reputation: 138
Post: #10
That would be the idea, yes.

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


[Image: badge.gif]
find quote
Post Reply