Flash Player 6 and the movieClipLoader object
I've come into quite a predicament regarding users running Flash Player 6 not being able to load movie clips through the movieClipLoader object.
Can anyone confirm that this is a Flash Player 7.0 addition (ie. not in Flash Player 6) and provide any suggestions regarding preloading individual images for legacy players?
I can preload the entire movie just fine with _root.getBytesLoaded(); and _root.getBytesTotal(), but I need a way of doing individual clips..
Would using something like:
holder.loadMovie("image.jpg");
ploaded = 0;
holder._alpha = 0;
holder.onEnterFrame = function() {
lbytes = this.getBytesLoaded();
tbytes = this.getBytesTotal();
ploaded = lbytes/tbytes * 100;
if (ploaded < 100) {
//update loading bar
} else {
this.fadeIn();
}
}
Work?
___________________

