A folder containing lots of images and I want my app to load every image within the folder upon starting.
(And then pack them all into a Vector)
I’d like to not use a list-file or xml of any kind but have the app automatically load everything that’s contained within the folder.
Is this possible? If yes, how do I approach it?
Right, if you want to use the Assets class, you have to compile the asset files into the app.
If that works for you, great! But if you want to be able to load from arbitrary folders without needing to compile them in, you’ll have to use URLLoader or similar.