Dynamically loading multiple images on one frame

Hi,

If some one could help me with this I would be very grateful.
Is it possible to dynamically load more than one jpg into a frame at one time?
My actionscript only loads the last image.

You’ll need to create a different movie clip for each image. What’s your code? :slight_smile:

Thanks Kode… my code is:
_root.createEmptyMovieClip(“container”, 1);
container.loadMovie(“http://www.myurl.com/thumbs/thumb1.jpg”);
container._x = 101.5;
container._x = 392;

I need to load 5 images dynamically to each frame.