# Please help me to solve this

**URL:** https://forum.kirupa.com/t/please-help-me-to-solve-this/190596
**Category:** flash
**Created:** [June 13, 2006, 12:33pm UTC](https://forum.kirupa.com/t/please-help-me-to-solve-this/190596 "2006-06-13T12:33:29Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![rajeshambady](https://avatars.discourse-cdn.com/v4/letter/r/f07891/32.png) [@rajeshambady](https://forum.kirupa.com/u/rajeshambady)
#### Post date: [June 13, 2006, 12:33pm UTC](https://forum.kirupa.com/t/please-help-me-to-solve-this/190596/1 "2006-06-13T12:33:29Z")

</div>

Hi friend,  
I have a problem. I am loading so many image from an XML file into my application using the movieClipLoader function.  
Now I want to give zoom and pan to these images. How is it possible (most good way).  
I have an idea but I don’t know it is right - To have a movieclip on the stage say bg\_mc and then load all other movieclips to this like:  
bg\_mc.createEmptyMovieClip(“mc11”, 100);

But I am loading the images using MovieClipLoader Is it possible. i tried two three time but it is not working properly.  
Here is the code…

bg\_mc.createEmptyMovieClip(“mc11”, 100);  
var listener:Object = new Object();  
listener.onLoadInit = function(target\_mc:MovieClip){  
target\_mc.\_height = height1;  
target\_mc.\_width = width1;  
}  
var mcl1:MovieClipLoader = new MovieClipLoader();  
mcl1.addListener(listener);  
mcl1.loadClip(“images/” + filename, mc11);

Please help
