hide infolabel after x amount of time
#1
Would it be possible to display an infolabel for a certain amount of time without any need for user interaction?

So basically I want an infolabel to show upon opening a certain window (fullscreenvideo in this case) and fading out after a couple of seconds.

I tried using something like this:

PHP Code:
<animation type="WindowOpen">
    <
effect type="fade" start="0" end="100" time="250" />
</
animation>
<
animation type="WindowOpen">
    <
effect type="fade" start="100" end="0" time="250" delay="10000"/>
</
animation

But that doesn't seem to work, it will just stay visible.
Reply
#2
They should be in the same control -

PHP Code:
<animation type="WindowOpen"
    <
effect type="fade" start="0" end="100" time="250" />
    <
effect type="fade" start="100" end="0" time="250" delay="10000"/> 
</
animation
Reply
#3
Cheers, that works. However it seems I can only put it in dialogfullscreeninfo but not in fullscreenvideo.
It very briefly displays the labels and then it seems "buried" under the video layer.
Reply

Logout Mark Read Team Forum Stats Members Help
hide infolabel after x amount of time0