so i tried that, and i can't seem to get it to fade, heres the rest of the code im trying to use the fade with, its a slideshow of sorts:
Code:
//initialize slide show
if( init==null )
{
var init = true; //sets the app as initilized
var num = 0; //The current image displayed
var path = 'http://mywebsite/';
var imageArray = new Array(
path + "swf/bgimg/sse.jpg",
path + "swf/bgimg/banner1.jpg",
path + "swf/bgimg/banner2.jpg",
path + "swf/bgimg/banner3.jpg",
path + "swf/bgimg/banner5.jpg",
path + "swf/bgimg/banner6.jpg",
path + "swf/bgimg/banner7.jpg",
path + "swf/bgimg/banner8.jpg",
path + "swf/bgimg/banner9.jpg",
path + "swf/bgimg/banner10.jpg");
//Makes the initial call to the RotateImage function
RotateImage();
//creates a listner that calls event on this interval
setInterval( RotateImage, 10*1000 );
stop();
}
//Shows the next image in array
function RotateImage()
{
if( num >= imageArray.length )
{
num=0;
}
//this is where the movie loaded and i want it to fade in at this point when it is loaded. mcImage is an existing movie clip i have setup under a few layers of other stuff, and i want the movie to stay under there.
loadMovie( imageArray[ num ], "mcImage" );
num++;
}