Kodi Community Forum
Random fanart on Home screen - 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: Random fanart on Home screen (/showthread.php?tid=165388)



Random fanart on Home screen - Balinus - 2013-05-21

Hello!

Prior to XBMC 12 (Frodo) I was using that code to show random fanart stored in userdata folder for random fanart on Home screen :

Code:
<control type="multiimage" id="666">
            <posx>0</posx>
            <posy>0</posy>
            <width>1280</width>
            <height>720</height>
            <imagepath background="true">special://profile/Thumbnails/Video/Fanart)</imagepath>
            <timeperimage>8000</timeperimage>
            <randomize>true</randomize>
            <fadetime>1000</fadetime>
            <include>VisibleFadeEffect</include>
            <visible>Skin.HasSetting(homepageRandomFanart)</visible>
        </control>

Now, with Frodo, it seems that all fanart are stored elsewhere. Is there an alternative command I could use so that random fanart are shown on the Home screen?

or does the use of Artwork organizer by the end-user is the only solution?

Thanks!


RE: Random fanart on Home screen - `Black - 2013-05-21

(2013-05-21, 16:15)Balinus Wrote: or does the use of Artwork organizer by the end-user is the only solution?

This is the only solution.


RE: Random fanart on Home screen - Balinus - 2013-05-22

ok, thanks Black Smile