Hi!
suppose this code:
this.images = new Asset.images([
this.o.topLeft,//path
this.o.topRight,//path
this.o.bottomLeft,//path
this.o.bottomRight//path
],{
onProgress:function(counter,index){
console.log(index);
}
});
Well, it seems to always trace out 0,1,2,3. BUT: can I be really sure
that it will ALWAYS do it? Will it always load the images exactly in
the order found on the passed array?
I need to know this, because if true, I can then write a method that
sets my elements on progress without the need of other checks.
Anyone knows? Bye!