How to animate a BMP file sequence
Here's an easy question for any actionscript expert: how would you load 200+ BMP images and play them frame by frame ?
I have a short animation consisting of about 200 BMP files. I would like to turn it into an SWF.
With all 200 of them in the Library, I'm trying to figure out the best way of loading each frame one by one so we can turn this series of frames into an SWF.
Without actionscript, you could add them all to the stage, distribute them to layers, then arduously create keyframes one by one for each layer until you have done all 200.
Obviously though with actionscript it would be much easier. How would you code it ?