Combined Code
movieClip 6 {
}
instance of movieClip 6 {
onClipEvent (enterFrame) {
this.gotoAndStop(Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100));
}
}
movieClip 8 {
}
instance of movieClip 8 {
onClipEvent (load) {
_root.stop();
_root.size = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
_root.now = _root.getBytesLoaded();
_root.percent = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (100 == Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100)) {
_root.gotoAndStop(3);
}
}
}
frame 2 {
gotoAndStop(1);
}
frame 3 {
stop();
}
button 15 {
on (release) {
play();
}
}
frame 8000 {
stop();
}
button 1698 {
on (release) {
gotoAndPlay(4);
}
}