Kodi Community Forum
image change is too fast - 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: Transparency! (https://forum.kodi.tv/forumdisplay.php?fid=115)
+----- Thread: image change is too fast (/showthread.php?tid=75965)



image change is too fast - _Andy_ - 2010-06-20

Hello

i like the multi image option to show different movie arts in my main menue background.

but the images change too fast. where can i change the seconds between the next slide?


- _Andy_ - 2010-06-20

I tried in settings.xml to change this setting <timeperimage>5000</timeperimage>
to 50000.
But the slidetime is the same.


<control type="multiimage">
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>720</height>
<imagepath fallback="special://skin/images/backgrounds/background-settings.jpg">$INFO[Skin.String(Custom_Back_Settings_Folder)]</imagepath>
<aspectratio>scale</aspectratio>
<timeperimage>5000</timeperimage>
<randomize>true</randomize>
<fadetime>2000</fadetime>
<include condition="Skin.HasSetting(AnimateBackgrounds)">backgroundanimation</include>
</control>


- mcborzu - 2010-06-20

Close, you found the right type of code block but it's at the top of Home.xml:
PHP Code:
<control type="multiimage">
            <
posx>0</posx>
            <
posy>0</posy>
            <
width>1280</width>
            <
height>720</height>
            <
imagepath background="true">$INFO[Container(5040).ListItem.Icon]</imagepath>
            <
aspectratio>scale</aspectratio>
            <
timeperimage>7000</timeperimage>
            <
randomize>true</randomize>
            <
fadetime>600</fadetime>
            <include 
condition="Skin.HasSetting(AnimateBackgrounds)">backgroundanimation</include>
            <include>
VisibleFadeEffect</include>
            <
visible>!Player.HasVideo + ![[Control.HasFocus(5044) + !IsEmpty(Control.GetLabel(7021))] | [Control.HasFocus(5045) + !IsEmpty(Control.GetLabel(7022))] | [Control.HasFocus(5046) + !IsEmpty(Control.GetLabel(7023))]]</visible>
        </
control



- _Andy_ - 2010-06-22

thank you. that did the trick.