- Yes, maybe (depending on RAM available, on a modern machine not
running 3D studio max I wouldn't think it would be a major concern,
memory is cheap).
- Yes in terms of memory, see above in terms of
performance.
- It depends, but in an example I tried with everything
local Embed vs load at run-time difference was negligible, I think
I'm going to go with run-time loading because I want to load sets of
images to do flip-book style animation.
See example here (source view enabled, linked below apparently "pure AS3" projects don't setup the right click menu correctly when checking the box for source view in release build):
http://www.shaunhusain.com/DrawTextRandomly/
http://www.shaunhusain.com/DrawTextRandomly/srcview/
Some things to be aware of on the example above, each image is ~1.5Kb it loads 90 images for the explosion animation. Using 1 loader over and over it took about 4 seconds to run locally I upped it to using 90 Loaders so they all happen concurrently and that got it down to 500ms which is in my opinion reasonable. Embedding would require that I write out the Embeds for every single image (I used a trace in the loop to accomplish this to test it out, but the run-time performance of using the images was nil, which I suppose should have been expected), like you I'm not too concerned with having a loading bar for a couple of seconds during startup but don't want to have to keep adding Embeds as it just makes the code a mess so I'm going with run-time loading (at least for now).