Actionscript 2.0, load images into array
- by incrediman
I need to load an external image into an array. Let's say the image is http://sstatic.net/so/img/logo.png
I'm using AS2 - I do not have the option of using AS3.
Any idea what to do? I'm able to load the image just fine into a movieclip in _root (below), but not into an array.
var loader:MovieClipLoader = new MovieClipLoader();
loader.loadClip("http://sstatic.net/so/img/logo.png",_root.mcOnTheStage);
Like is there some way to make an array ov MC's that I can load the images into?