Forum Moderators: open
onClipEvent (enterFrame) {
mctotal = _root.getBytesTotal();
mcloaded = _root.getBytesLoaded();
mcpercent = Math.round((mcloaded/mctotal)*100);
display = mcpercent+"%";
progress_mc._xscale = mcpercent;
if (mcloaded == mcpercent) {
_root.play();
}
}
problem is that my movie only loads to 6% before the movie begins to play...so users cannot navigate the site since the rest of the content hasnt loaded yet!