I would load the movie into an empty mc "mcMovie". Then you can do the fading and unloading and loading. Try this or play around if it does not immediately work. Check out my site:
http:can_info_guide.tripod.com/
for fadings using as.
PHP Code:
function fadeOut(){
fadeSpeed=20;
timeSpeed=20;
myPauseOut=new Object();
myPauseOut.interval=function(){
if(mcMovie.newClip._alpha>=100-fadeSpeed){
mcMovie.newClip._alpha-=fadeSpeed;
}else{
mcMovie.newClip._alpha=0;
mcMovie.loadMovie(newMovie.swf");
mcMovie._alpha=0;
clearInterval(myTimerOut);
fadeIn();
}
myTimerOut=setInterval(myPauseOut, "interval", timeSpeed);
}
function fadeIn(){
myPauseIn=new Object();
myPauseIn.interval=function(){
if(mcMovie._alpha<=100-fadeSpeed){
mcMovie._alpha+=fadeSpeed;
}else{
mcMovie._alpha=100;
clearInterval(myTimerIn);
}
myTimerIn=setInterval(myPauseIn, "interval", timeSpeed);
}
On (release){
mcMovie.gotoAndPlay("frameLabel");
}