when users come to my site i want a different Flash movie to load. The action script that im useing is
Code:
filename = ["mainarea.swf", "mainarea2.swf", "mainarea3.swf"];
path = "http://www.rockdamic.com/main/animation/";
i = filename.length;
k = Math.floor(Math.random()*i);
loadMovie(path+filename[k], movieTarget);
The problem is i already have the flash movies created and they all have preloaders but when the action script call for the movie it doesn't preload all i get is a hugh white box and then finally the movie shows up. I wan it to preload. Do anyone have any ideas on how i can fix this.