# Dynamically loading multiple images on one frame

**URL:** https://forum.kirupa.com/t/dynamically-loading-multiple-images-on-one-frame/34351
**Category:** Uncategorized
**Created:** [October 31, 2003, 7:47pm UTC](https://forum.kirupa.com/t/dynamically-loading-multiple-images-on-one-frame/34351 "2003-10-31T19:47:28Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![sacorndog](https://avatars.discourse-cdn.com/v4/letter/s/43a26b/32.png) [@sacorndog](https://forum.kirupa.com/u/sacorndog)
#### Post date: [October 31, 2003, 7:47pm UTC](https://forum.kirupa.com/t/dynamically-loading-multiple-images-on-one-frame/34351/1 "2003-10-31T19:47:28Z")

</div>

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.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [October 31, 2003, 9:28pm UTC](https://forum.kirupa.com/t/dynamically-loading-multiple-images-on-one-frame/34351/2 "2003-10-31T21:28:21Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [November 3, 2003, 7:27pm UTC](https://forum.kirupa.com/t/dynamically-loading-multiple-images-on-one-frame/34351/3 "2003-11-03T19:27:31Z")

</div>

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

I need to load 5 images dynamically to each frame.
