Add a fade?

Hi. I recently posted a question to help explain how to fade but it was above me. Basically I need BIOG_PHOTOS to fade in from 0 - 100 on release. If someone could show me how it’s done and explain the code for me that would be a big help so I can implement it to other files.

on (release) {
movie = “BIOG_PHOTOS.swf”;
_root.container3._alpha = 100;
_root.container3.loadMovie(movie); _root.container2._alpha = 100;}

Looking forward to some much needed help.
Claire

How do you control the speed of that fade? I got it to work but don’t really understand how it works.
thanks,

Found my anwer in the help. I never knew that was even a feature. Pretty cool. (In case anyone cares, it’s the 3rd parameter)

Try these links for more info:
http://www.macromedia.com/devnet/flash/articles/tweening.html

http://www.gotoandlearn.com/index.html - Down the list to Tween Class

Actually it’s the sixth parameter :wink:

mx.transitions.Tween(object:Object, property:String, easeType:Function, begin:Number, finish:Number, duration:Number, useSeconds:Boolean);