I gave you the answer also in the three lines. You need to create a Loader object and add that to the movieclip. Then you have to load the image to the Loader.
var myLoader:Loader = new Loader();
myLoader.load(new URLRequest(firstImage));
imageLoader.addChild(myLoader);
firstImage can be replaced by another image.




Reply With Quote