addChild with tweened fadeIn?
Hello all,
I am just trying to get my as3 tweening skills locked down around the basics. So, for this example, I have a logo / home button fading in, this code is working for that... however, is there a way to addChild (home in this case) via the tween code, so that I do not have to add the child at alpha0 "then" fade it in?
import fl.transitions.Tween;
import fl.transitions.easing.*;
var home:Logo = new Logo();
addChild (home);
home.x = 400;
home.y = 300;
home.alpha = 0;
var fadeIn:Tween = new Tween(home,"alpha",None.easeNone,0,100,200,true);
