Can a loader command load more than one object at a time?

Hi guys :slight_smile: long time no see :slight_smile:
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: