Skip to main content
Arioman
Inspiring
June 15, 2013
Question

how apply fade in or out on UILoader

  • June 15, 2013
  • 1 reply
  • 758 views

hi , i need to load some external images in seprated parts

i use UILoader  and its very simple and load my external images well

but i need to add some transition effect on UILoader .

when i use Classic Tween or convert UILoader to Movieclip it not work anymore and nothing load ...

so what i should do about that ?  is this any script to add transition effect to Uiloader ?

This topic has been closed for replies.

1 reply

Ned Murphy
Legend
June 15, 2013

Look into using the Actionscript-based Tween class that is built into Flash for starters.  If you can get that working then you might prefer to move up to a third party tweening engine such as TweenLite to get better performance.

Arioman
AriomanAuthor
Inspiring
June 15, 2013

thanks i turn Uiloader instance name to : myBall_mc and use these script :

var myTween:Tween = new Tween(myBall_mc, "alpha", Strong.easeIn, 0, 1, 1, true);

and it works

Ned Murphy
Legend
June 15, 2013

You're welcome