Actionscript 2.0, load images into array

Posted by incrediman on Stack Overflow See other posts from Stack Overflow or by incrediman
Published on 2010-04-01T21:33:31Z Indexed on 2010/04/01 21:53 UTC
Read the original article Hit count: 357

Filed under:
|
|

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?

© Stack Overflow or respective owner

Related posts about actionscript-2

Related posts about image