Loading external pngs into an AS2 swf that is loaded into an AS3 swf wrapper
- by James Fassett
I have a Wrapper SWF that loads a series of AS2 movies. Each AS2 movie loads a series of .png files.
AS3_wrapper.swf
|-> AS2_1.swf
|-> image_1.png
|-> image_2.png
|-> AS2_2.swf
|-> image_1.png
|-> image_2.png
Inside of the AS2 I listen for the load of the pngs using onLoadInit and update my UI.
This…