Once again, Keep It Simple Steven is here to help. ;)
Unless your boss is forcing you to do this in one swf, you should make a
loader swf that loads in the swf with all these linked clips.
Trivial example:
var mc = this.createEmptyMovieClip("site", this.getNextHighestDepth());
mc.loadMovie("yourMain.swf");
this.onEnterFrame = function()
{
var perc = mc.getBytesLoaded() / mc.getBytesTotal();
perc = Math.round(perc * 100);
trace("progress = " + perc + "%");
};
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com