What is the best practice for creating a pure assets swf? It has to have zero code, I need to load it externally on IOS.
I'm aware of starling's AssetManager, but it doesn't fit my unique circumstances, the assets have to be compiled in SWFs.
I can use embed tags and then use adt's swf stripping, but it's proving to be too much work (I'm still trying to debug the matter), it also seems a bit of an overkill to go through such a complex process to strip code when I only need assets.
My second option is to add assets to an FLA library and give them linkages, which basically works just fine, except Flash IDE is really troublesome and has problems reading too many assets, which will definitely be a huge headache on the long run (these assets were being compiled just fine with embed tags).
Is there a way to purely compile assets with linkages or some sort of other reference to them, without having to worry about the Flash IDE not being able to read them, and without having any code on the SWF?