Combined Code
frame 1 {
tellTarget ('play') {
_visible = false;
}
stop();
}
movieClip 3 {
}
movieClip 6 {
}
instance of movieClip 6 {
onClipEvent (enterFrame) {
if (_root.getBytesLoaded() >= _root.getBytesTotal() - 500) {
tellTarget ('/play') {
_visible = true;
}
}
tellTarget ('/paul') {
_alpha = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
}
done = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) + '%';
}
}
movieClip 11 {
}
button 12 {
on (release) {
gotoAndPlay(5);
}
}
frame 2 {
gotoAndPlay(1);
}