hi all,
I have 5 or so mcs on the same layer. I would like each one to preload, and then show when they have loaded - so you might see each mc appearing in cannon, or staggered. All five will not show at once.
However, it doesnt seem like the preload code is working for each mc, everything just appears. I have simulated download when I view the mc. Is my problem with the code or how I am testing the movie?
Within each mc i have this code on frame one :
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent*100;
this.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}
on frame two :
this.gotoAndPlay(1);
thanks!