Hi guys long time no see
The reason why I am asking is I have 10 pictures to load inside a movieclip and didn’t want to code out 10 loaders.
[AS]
var myLoader:Loader = new Loader();
var myRequest:URLRequest=new URLRequest(“PICS/”+p+".jpg");
myLoader.load(myRequest);
nextPic1.addChild(myLoader);
myLoader.x = 17;
myLoader.y = 15;
[/AS]
a simple for statement perhaps ??
Thanks in advance
:krazy: