To load an external image we use
loader.load(new URLRequest("Pictures/image.jpg"));
Can we make it load every image knowing only the folder name? Something like this (this code does not work obviously, but trying to grab all images from folder):
loader.load(new URLRequest("Pictures/*.*"));
Ty