Hi guys, I’ve got a problem loading a Swf with a particular tween. I’ve got a jukebox in an external Swf, I’ve called a Loader and then add a child with a function, but I don’t want that that swf just appears, I want a smooth alpha effect but I cannot figure it out how to do it. Here’s my code and any help will be much appreciated.
jukebox_btn.addEventListener(MouseEvent.CLICK, onJukebox);
var jukebox:Loader = new Loader()
function onJukebox(e:MouseEvent){
addChild (jukebox)
//THIS IS WHAT IM NOT KNOW HOW TO DO IT RIGHT.
[COLOR=Black]
jukebox[/COLOR].addTween(jukebox, {alpha:1, time:1, transition:“easeInSine”});
jukebox.x = 440;
jukebox.y = 678;
var request:URLRequest = new URLRequest("jukebox.swf");
jukebox.load(request)
stop()
}
Tnxs to anybody that could give me some income!