Kodi Community Forum
Background image on home - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Alaska (https://forum.kodi.tv/forumdisplay.php?fid=126)
+----- Thread: Background image on home (/showthread.php?tid=69544)



Background image on home - the_alien - 2010-02-04

Hi

Is it possible to have a background image just on the homescreen?
On every theme I've seen the image overlays the fanart in the background.

Thanks
alien


- matsui - 2010-02-05

I would also like this if anyone knows how that would be great.


- nietsen - 2010-02-05

in the file include.xml add the following lines:

Code:
<!-- Home BACKGROUND -->
    <include name="Home_Background">
        <control type="multiimage" id="1">
          <description>background images</description>
          <include>Dimensions_Fullscreen</include>
          <imagepath>menubackdrops</imagepath> <!-- add this folder within the media folder. Put in it all the backdrops you wish to use -->
          <timeperimage>5000</timeperimage>
          <fadetime>2000</fadetime>
          <pauseatend>0</pauseatend>
          <randomize>true</randomize>
          <loop>yes</loop>
          <aspectratio>stretch</aspectratio>
          <colordiffuse>BackgroundFilterColor</colordiffuse>  <!-- Optional... remove this line to remove the color overlay -->
        </control>
    </include>

inside home.xml change line 30 (<include>Global_Background</include>) for:

Code:
<include>Home_Background</include>

voila!


- the_alien - 2010-02-05

Great, thanks!


- itchy_balls - 2010-02-05

Can you guys post a screenshot?


- the_alien - 2010-02-05

You'll find mine here: http://forum.xbmc.org/showpost.php?p=502463&postcount=289


- joebrady - 2010-02-05

Great, i was wondering the same the other night when I but the Rialto theme in Alaska.


- itchy_balls - 2010-02-05

the_alien Wrote:You'll find mine here: http://forum.xbmc.org/showpost.php?p=502463&postcount=289

Thanks,


- rasmuskarlsen - 2011-10-24

Can this be done in newer version of Alaska in the "Icon Home Layout"?


- Hitcher - 2011-10-24

rasmuskarlsen Wrote:Can this be done in newer version of Alaska in the "Icon Home Layout"?

It's already coded to do this.


- rasmuskarlsen - 2011-10-24

Hitcher Wrote:It's already coded to do this.

Aaah nice, but it's not available in v. 1.8.6 (Downloaded through XBMC Dharma add-on selection), i guess?

EDIT: I can see v. 3.0.10 is available now. I guess this can only be used with Windows versions? (Nightlybuilds), since there is no nightly builds for XBMC LIVE.. :/


RE: Background image on home - Dingin - 2014-07-29

Hi i know is an old post buet mabe some can help me with this one on gotham
i wanna have the main background rotating like in the example from nietsen:
---------------------------------------------------------------------------------------------------------------------
in the file include.xml add the following lines:
Code:
<!-- Home BACKGROUND -->
<include name="Home_Background">
<control type="multiimage" id="1">
<description>background images</description>
<include>Dimensions_Fullscreen</include>
<imagepath>menubackdrops</imagepath> <!-- add this folder within the media folder. Put in it all the backdrops you wish to use -->
<timeperimage>5000</timeperimage>
<fadetime>2000</fadetime>
<pauseatend>0</pauseatend>
<randomize>true</randomize>
<loop>yes</loop>
<aspectratio>stretch</aspectratio>
<colordiffuse>BackgroundFilterColor</colordiffuse> <!-- Optional... remove this line to remove the color overlay -->
</control>
</include>

inside home.xml change line 30 (<include>Global_Background</include>) for:
Code:
<include>Home_Background</include>

voila!
------------------------------------------------------------------------------------------------------------------

And here is where the main backgroun is in Gotham

---IncludesBackgoundBuilding.xml---

<include name="CommonBackground">
<control type="image">
<description>Normal Default Background Image</description>
<left>0</left>
<top>0</top>
<width>1280</width>
<height>720</height>
<aspectratio>scale</aspectratio>
<texture>$INFO[Skin.CurrentTheme,special://skin/backgrounds/,.jpg]</texture>
<visible>![Skin.HasSetting(UseCustomBackground) + !IsEmpty(Skin.String(CustomBackgroundPath))]</visible>
<include>VisibleFadeEffect</include>
</control>

does anyone have any idea how?

Thanks!