Frame 1 (243 B)
totalBytes = Math.round(getBytesTotal() / 1024);
loadedBytes = Math.round(getBytesLoaded() / 1024);
percentDone = Math.round((loadedBytes / totalBytes) * 100);
if (_root._framesloaded >= _root._totalframes) {
gotoAndStop ("start");
}
Instance of Symbol 4 MovieClip in Frame 1 (61 B)
onClipEvent (enterFrame) {
gotoAndPlay(_root.percentDone);
}
Frame 2 (17 B)
gotoAndPlay (1);
Frame 3 (8 B)
stop();
Instance of Symbol 14 MovieClip in Frame 64 (55 B)
onClipEvent (enterFrame) {
_x = _root.character._x;
}
Instance of Symbol 14 MovieClip in Frame 219 (55 B)
onClipEvent (enterFrame) {
_x = _root.character._x;
}
Instance of Symbol 14 MovieClip in Frame 539 (55 B)
onClipEvent (enterFrame) {
_x = _root.character._x;
}
Frame 883 (46 B)
_root.gotoAndStop("start");
stopAllSounds();
Symbol 8 Button (25 B)
on (release) {
play();
}
Symbol 14 MovieClip Frame 1 (881 B)
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local3 = sX / this._width;
var _local4 = sY / this._height;
_parent._x = cX - (this._x * _local3);
_parent._y = cY - (this._y * _local4);
_parent._xscale = 100 * _local3;
_parent._yscale = 100 * _local4;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
this.onUnload = resetStage;