Of course it is... that is what this is BUILT for..
loading as many images as you want.. and getting 1 (one) return for the whole lot.
using the above posted code:
loader.onAllLoadProgress = reportProgress; is where you define the function
to call.. which gets executed each time a new segment is loaded
and here is the actual function it DOES call:
//MultiClipLoader callback functions
function reportProgress(loadedBytes:Number, totalBytes:Number):Void {
var percent:Number = Math.round((loadedBytes/totalBytes)*100);
bar._xscale = percent;
trace("loading: "+percent);
pecent_txt.text = percent;
