I know there are a lot of tutorials out there on how to preload external images using listeners and preload animations, but i can’t seem to figure out how to preload more than one image at a time. I know there are ways to load a group of photos, but what if i want to load an array of images with their own individual preloader? so basically once that specific image is loaded, it will be displayed, and so on, and it does not have to wait until all the other images in the array are completely loaded. So if image #5 in the array is loaded, it will be displayed, and when the rest are loaded, they to will be displayed.
an example would be if i have an array or 2 images, and then use a “for” loop based on the length of the array, that will dynamically place an placeholder on the stage with an instance of say “placeholder”+i . I have been able to load the required images to their desired placeholders, but the preloader freaks out and only loads 1 at a time, mainly the last of the array, then drops back to the previous image and begins loading that one.
any help would be appreciated.