Kodi Community Forum
Time trigger - 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: Time trigger (/showthread.php?tid=123807)



Time trigger - pecinko - 2012-02-24

Guys is there any way to trigger animation in given time intervals?

Say, every 15s regardless of system being idle.


- eumel - 2012-02-24

"loop" should do the trick.

Code:
<animation condition="true" loop="true" effect="slide start="0,0" end="500,0" time="1000" delay=15000">
the delay gives the 15sec trigger, and condition="true" runs all the time


- pecinko - 2012-02-24

eumel Wrote:"loop" should do the trick.

Code:
<animation condition="true" loop="true" effect="slide start="0,0" end="500,0" time="1000" delay=15000">
the delay gives the 15sec trigger, and condition="true" runs all the time

Many thanks. Would probably never thought of this.