Combined Code
movieClip 3 {
}
movieClip 5 {
}
button 10 {
on (release) {
_root.play();
}
}
movieClip 11 {
frame 1 {
function timerHandler() {
if (!loadingComplete) {
var v2 = _root.getBytesLoaded() / _root.getBytesTotal();
bar._xscale = 100 * v2;
if (v2 == 1) {
loadingComplete = true;
if (AUTO_PLAY) {
startMovie();
return undefined;
}
gotoAndStop('loaded');
return undefined;
}
}
}
function startMovie() {
_root.play();
}
_root.stop();
stop();
var AUTO_PLAY = false;
var loadingComplete = false;
timerHandler();
}
instance of movieClip 5 {
onClipEvent (enterFrame) {
_parent.timerHandler();
}
}
frame 2 {
stop();
}
}
movieClip 13 {
}
// unknown tag 88 length 68
// unknown tag 88 length 75
movieClip 501 {
}
movieClip 1947 {
}
instance astromiau of movieClip 1947 {
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
this._x += 5;
}
if (Key.isDown(37)) {
this._x -= 5;
}
if (Key.isDown(38)) {
this._y -= 5;
}
if (Key.isDown(40)) {
this._y += 5;
}
}
}
frame 11946 {
stop();
}
button 1955 {
on (press) {
gotoAndPlay(2);
}
}