Hello. I have completed the random loader tutorial here on kirupa.
If I dont want the files to load random but in a spesific ordrer, how do I change the code?
filename = [“movie1.swf”, “movie2.swf”, “movie3.swf”];
path = “http://www.mysite.com/events/”;
i = filename.length;
k = Math.floor(Math.random()*i);
loadMovie(path+filename[k], movieTarget);
Thanks for your time.