Kodi Community Forum
Set a delay on a focused item to show a cerain group - 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: Set a delay on a focused item to show a cerain group (/showthread.php?tid=111012)



Set a delay on a focused item to show a certain group - butchabay - 2011-09-26

I would like to have a delay of a few seconds and then let show automatically id8240 instead of pressing onup. What would be the best method to get it working?

Thanx in advance ...

Code:
<control type="wraplist" id="666">
                <visible>Skin.HasSetting(fanartslide_view)</visible>
                <visible>Container.Content(Movies)</visible>
                <posx>-20</posx>
                <posy>0</posy>
                <width>1320</width>
                <height>250</height>
                <onleft>666</onleft>
                <onright>666</onright>
                [b]<onup>8240</onup>[/b]
                <ondown>60</ondown>



- `Black - 2011-09-26

Add something like

Code:
<visible>!Container(666).OnNext + !Container(666).OnPrevious</visible>
<animation effect="fade" start="0" end="100" time="300" delay="3000" reversible="false">Visible</animation>

to your group.


- butchabay - 2011-09-26

`Black Wrote:Add something like

Code:
<visible>!Container(666).OnNext + !Container(666).OnPrevious</visible>
<animation effect="fade" start="0" end="100" time="300" delay="3000" reversible="false">Visible</animation>

to your group.

1000 x Thanx mate! That worked fine.
Cheers