Hi there…
I put this loop inside another loop…
for(ii; ii<l; ii++){
ld = new Loader();
ld.x = Math.random()*740;
ld.y = Math.random()*216;
_container.addChild(ld);
rq = new URLRequest(xmll.children()[ii]);
ld.load(rq);
}
So, my question is… everytime my this loads, a new loader is created right? so, everytime it downloads my pictures from my webserver? I mean, after some hours, this script downloads the same picture over and over? I have to say goodbye to my bandwidth?
I appreaciate any help…