hello, i was wondering, how do you add time to a random .swf movie? i have different .swf appearing each time you hit a refresh button and i was wondering how to add a timer so that the .swf changes every 15 seconds. right now my script looks like this…
randomClips = new Array(“d+l A_news.swf”, “maashaven B_news.swf”, “maashaven A_news.swf”, “gipsy A_news.swf”, “gipsy B_news.swf”, “d+l B_news.swf”, “gw A_news.swf”, “gw B_news.swf”,“soundscapes A_news.swf”, “soundscapes B_news.swf”);
//this is on one line//
//next lines reads this//
function randomBackground() {
randomNumber = random(randomClips.length);
loadMovie(randomClips[randomNumber], “_root.mtClip”);
}
randomBackground();
what is the time script and where would it go?