preloading external swf?
preloading external swf?
Out of context: Reply #1
- Started
- Last post
- 4 Responses
- shtuker0
By the way, here is the code that is currently on the preloader in the loaded swf:
onClipEvent(enterFrame){
loaded = _root.getBytesLoaded();
total = _root.getBytesTotal();
framesLoaded = Math.ceil((loaded / total) * 100);
goToAndStop(framesLoaded);
status.text = framesLoaded + " %";
if(framesLoaded >= 90){
_root.gotoAndPlay("shtuker");
}
}