Kodi Community Forum

Full Version: How can I fade something in on next and previous?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to fade in media flags but I can only make them fade in once.

They will fade in when the window is opened but I cant figure out how to make them fade in everytime a new item is selected.

The wraplist id=525.

Thanks!
Quote:<animation type="Visible">
<effect type="fade" start="0" end="100" delay="400" time="1200" />
</animation>
<visible>![Container(55).OnNext | Container(55).OnPrevious]</visible>

or a conditional animation

animation-blah condition="![Container(55).OnNext | Container(55).OnPrevious]"
mcborzu Wrote:or a conditional animation

animation-blah condition="![Container(55).OnNext | Container(55).OnPrevious]"

Perfect, THANKS!!