I am loading in tons of different swfs dynamically on demand and I am not exactly sure what the best way to store them is.
Do you just take the content of the loaders and toss it into a Dictionary or an Object for use when needed? Don’t mention the BulkLoader It doesn’t work properly for what I am doing.
Can arrays of objects store loaded swfs, or would a public dictionary or object variable at the start of a class store everything just fine?
- Thanks in advance
Edit: Maybe I’m overthinking this and what your storing when you use Variable = myLoader.content is just a reference to the location of the loaded swf data and hundreds can be stored in an array of objects without overloading it.