I’m trying to create something that will load a bunch of images into an array and then be displayed whenever needed via using the attachMovie() function.
for (var i=1; i<list.length; i++) { //list is an array full of urls to images
_root.createEmptyMovieClip("img"+i,i);
loadMovie(list*, "_root.img"+i);
}
I dont think this is what I want because I dont acually want the images to appear right here (this is the loading part). What I want is each image to be in a seperate symbol with a unique identifier so that I can create them dynamically during runtime.
I hope you can help me, I havn’t worked with flash for about half a year so I’ve forgotten a lot of things.
Hope you can help, thanks in advance!