Adding image from url to home

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
k1m0s Offline
Senior Member
Posts: 196
Joined: Apr 2011
Reputation: 7
Location: Nova Scotia, Canada
Post: #1
If I wanted to add a picture from a url to the home screen how would i go about that? I've tried a few variations of this on home.xml
Code:
                    <control type="image">
                        <posx>48</posx>
                        <posy>100</posy>
                        <width>600</width>
                        <height>450</height>
                        <texture>http://forum.xbmc.org/images/misc/xbmc.gif</texture>
                    </control>

cannot get any success. Probably something really simple I am missing Thanks in advance
find quote
ZombieRobot Offline
Fan
Posts: 698
Joined: May 2010
Reputation: 4
Location: Mount Maunganui , New Zealand
Post: #2
PHP Code:
<control type="largeimage">
        <include>
Furniture_SettingsNewsSlideBig</include>
        <
texture>http://farm7.static.flickr.com/6056/6301038873_584031691e_b.jpg</texture>
        
<visible>Control.HasFocus(6)</visible>
        <
fadetime>400</fadetime>
    </
control


This is what i use and have no problems with it could be the fact that you want a .gif file to display ?? your code looks ok to me
find quote