Я бы сделал так

Код:
var arr:Array = new Array();
for(i=0; i<_root.myImagesNo; i++){
arr.push({indx:i, rand:Math.random()})
}
arr.sortOn("rand");
for (i=0; i<_root.myImagesNo; i++) {
temp_url = _root.myImages[arr[i].indx].attributes.url;
temp_mc = myContainer_mc.createEmptyMovieClip(i, myContainer_mc.getNextHighestDepth());
_root.myMCL.loadClip(temp_url,temp_mc);
}