
Код:
_root.createEmptyMovieClip("clip",1);
_root.clip.loadMovie("./helloworld.swf");
_root.onEnterFrame=function(){
_root.LoadStarted=(_root.clip.getBytesLoaded()>0);
_root.Percentage=Math.floor(_root.clip.getBytesLoaded()/_root.clip.getBytesTotal()*100);
}
There you go, this stuff should work.