Frame 1
stop();
_quality = "Medium";
playButton._visible = false;
onEnterFrame = function () {
left = int((getBytesLoaded() / getBytesTotal()) * 100);
if (left == 100) {
left = "Complete";
onEnterFrame = null;
playButton._visible = true;
}
};
Stage.showMenu = false;
Frame 3
stop();
clearAll();
_quality = "Medium";
Frame 4
function makeInnocent() {
_root.attachMovie("innocent", "innocent" + innocentCounter, innocentCounter);
_root["innocent" + innocentCounter]._x = random(200) + 25;
_root["innocent" + innocentCounter]._y = -20;
innocentCounter++;
if (innocentCounter >= 300) {
innocentCounter = 201;
}
}
function makeObj() {
_root.attachMovie("stationary", "ob" + objCounter, objCounter);
_root["ob" + objCounter]._x = random(175) + 37.5;
_root["ob" + objCounter]._y = -20;
objCounter++;
if (objCounter >= 200) {
objCounter = 101;
}
}
function clearAll() {
_root.onEnterFrame = null;
_root.player.removeMovieClip();
_root.scoreNum.removeMovieClip();
_root.levelUp.removeMovieClip();
_root.addScore.removeMovieClip();
i = 100;
while (i <= 200) {
_root["ob" + i].removeMovieClip();
i++;
}
i = 200;
while (i <= 300) {
_root["innocent" + i].removeMovieClip();
i++;
}
}
_quality = "Medium";
quality = "Medium";
level = 0;
lives = 5;
stop();
_root.attachMovie("levelUp", "levelUp", 10000);
_root.attachMovie("player", "player", 9999);
_root.attachMovie("scoreNum", "scoreNum", 9998);
_root.player._y = 340;
_root.player._x = 125;
score = 0;
innocentCounter = 201;
objCounter = 101;
makeInnocent();
time = 300;
timer = time;
onEnterFrame = function () {
_quality = quality;
timer--;
if (timer <= 0) {
_root.attachMovie("levelUp", "levelUp", 10000);
timer = time;
time = time + 20;
}
if ((_root.player.ySpeed > 0) && (int(random((350 - (level * 10)) / _root.player.ySpeed)) == 0)) {
makeInnocent();
}
if ((_root.player.ySpeed > 0) && (int(random((350 - (level * 10)) / _root.player.ySpeed)) == 0)) {
makeObj();
}
};
Frame 5
clearAll();
_quality = "Medium";
Frame 6
stop();
clearAll();
_quality = "Medium";
Symbol 4 MovieClip [FUIComponentSymbol] Frame 1
#initclip 1
function FUIComponentClass() {
this.init();
}
FUIComponentClass.prototype = new MovieClip();
FUIComponentClass.prototype.init = function () {
this.enable = true;
this.focused = false;
this.useHandCursor = false;
this._accImpl = new Object();
this._accImpl.stub = true;
this.styleTable = new Array();
if (_global.globalStyleFormat == undefined) {
_global.globalStyleFormat = new FStyleFormat();
globalStyleFormat.isGlobal = true;
_global._focusControl = new Object();
_global._focusControl.onSetFocus = function (oldFocus, newFocus) {
oldFocus.myOnKillFocus();
newFocus.myOnSetFocus();
};
Selection.addListener(_global._focusControl);
}
if (this._name != undefined) {
this._focusrect = false;
this.tabEnabled = true;
this.focusEnabled = true;
this.tabChildren = false;
this.tabFocused = true;
if (this.hostStyle == undefined) {
globalStyleFormat.addListener(this);
} else {
this.styleTable = this.hostStyle;
}
this.deadPreview._visible = false;
this.deadPreview._width = (this.deadPreview._height = 1);
this.methodTable = new Object();
this.keyListener = new Object();
this.keyListener.controller = this;
this.keyListener.onKeyDown = function () {
this.controller.myOnKeyDown();
};
this.keyListener.onKeyUp = function () {
this.controller.myOnKeyUp();
};
for (var i in this.styleFormat_prm) {
this.setStyleProperty(i, this.styleFormat_prm[i]);
}
}
};
FUIComponentClass.prototype.setEnabled = function (enabledFlag) {
this.enable = ((arguments.length > 0) ? (enabledFlag) : true);
this.tabEnabled = (this.focusEnabled = enabledFlag);
if ((!this.enable) && (this.focused)) {
Selection.setFocus(undefined);
}
};
FUIComponentClass.prototype.getEnabled = function () {
return(this.enable);
};
FUIComponentClass.prototype.setSize = function (w, h) {
this.width = w;
this.height = h;
this.focusRect.removeMovieClip();
};
FUIComponentClass.prototype.setChangeHandler = function (chng, obj) {
this.handlerObj = ((obj == undefined) ? (this._parent) : (obj));
this.changeHandler = chng;
};
FUIComponentClass.prototype.invalidate = function (methodName) {
this.methodTable[methodName] = true;
this.onEnterFrame = this.cleanUI;
};
FUIComponentClass.prototype.cleanUI = function () {
if (this.methodTable.setSize) {
this.setSize(this.width, this.height);
} else {
this.cleanUINotSize();
}
this.methodTable = new Object();
delete this.onEnterFrame;
};
FUIComponentClass.prototype.cleanUINotSize = function () {
for (var funct in this.methodTable) {
this[funct]();
}
};
FUIComponentClass.prototype.drawRect = function (x, y, w, h) {
var inner = this.styleTable.focusRectInner.value;
var outer = this.styleTable.focusRectOuter.value;
if (inner == undefined) {
inner = 16777215 /* 0xFFFFFF */;
}
if (outer == undefined) {
outer = 0;
}
this.createEmptyMovieClip("focusRect", 1000);
this.focusRect.controller = this;
this.focusRect.lineStyle(1, outer);
this.focusRect.moveTo(x, y);
this.focusRect.lineTo(x + w, y);
this.focusRect.lineTo(x + w, y + h);
this.focusRect.lineTo(x, y + h);
this.focusRect.lineTo(x, y);
this.focusRect.lineStyle(1, inner);
this.focusRect.moveTo(x + 1, y + 1);
this.focusRect.lineTo((x + w) - 1, y + 1);
this.focusRect.lineTo((x + w) - 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, y + 1);
};
FUIComponentClass.prototype.pressFocus = function () {
this.tabFocused = false;
this.focusRect.removeMovieClip();
Selection.setFocus(this);
};
FUIComponentClass.prototype.drawFocusRect = function () {
this.drawRect(-2, -2, this.width + 4, this.height + 4);
};
FUIComponentClass.prototype.myOnSetFocus = function () {
this.focused = true;
Key.addListener(this.keyListener);
if (this.tabFocused) {
this.drawFocusRect();
}
};
FUIComponentClass.prototype.myOnKillFocus = function () {
this.tabFocused = true;
this.focused = false;
this.focusRect.removeMovieClip();
Key.removeListener(this.keyListener);
};
FUIComponentClass.prototype.executeCallBack = function () {
this.handlerObj[this.changeHandler](this);
};
FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) {
this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal);
};
FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) {
if (value == "") {
return(undefined);
}
var tmpValue = parseInt(value);
if (!isNaN(tmpValue)) {
value = tmpValue;
}
var global = ((arguments.length > 2) ? (isGlobal) : false);
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].useGlobal || (!global)) {
this.styleTable[propName].value = value;
if (this.setCustomStyleProperty(propName, value)) {
} else if (propName == "embedFonts") {
this.invalidate("setSize");
} else if (propName.subString(0, 4) == "text") {
if (this.textStyle == undefined) {
this.textStyle = new TextFormat();
}
var textProp = propName.subString(4, propName.length);
this.textStyle[textProp] = value;
this.invalidate("setSize");
} else {
for (var j in this.styleTable[propName].coloredMCs) {
var myColor = new Color(this.styleTable[propName].coloredMCs[j]);
if (this.styleTable[propName].value == undefined) {
var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"};
myColor.setTransform(myTObj);
} else {
myColor.setRGB(value);
}
}
}
this.styleTable[propName].useGlobal = global;
}
};
FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) {
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].coloredMCs == undefined) {
this.styleTable[propName].coloredMCs = new Object();
}
this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef;
if (this.styleTable[propName].value != undefined) {
var myColor = new Color(skinMCRef);
myColor.setRGB(this.styleTable[propName].value);
}
};
_global.FStyleFormat = function () {
this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true};
this.listeners = new Object();
this.isGlobal = false;
if (arguments.length > 0) {
for (var i in arguments[0]) {
this[i] = arguments[0][i];
}
}
};
_global.FStyleFormat.prototype = new Object();
FStyleFormat.prototype.addListener = function () {
var arg = 0;
while (arg < arguments.length) {
var mcRef = arguments[arg];
this.listeners[arguments[arg]] = mcRef;
for (var i in this) {
if (this.isAStyle(i)) {
mcRef.updateStyleProperty(this, i.toString());
}
}
arg++;
}
};
FStyleFormat.prototype.removeListener = function (component) {
this.listeners[component] = undefined;
for (var prop in this) {
if (this.isAStyle(prop)) {
if (component.styleTable[prop].useGlobal == this.isGlobal) {
component.styleTable[prop].useGlobal = true;
var value = (this.isGlobal ? undefined : (globalStyleFormat[prop]));
component.setStyleProperty(prop, value, true);
}
}
}
};
FStyleFormat.prototype.applyChanges = function () {
var count = 0;
for (var i in this.listeners) {
var component = this.listeners[i];
if (arguments.length > 0) {
var j = 0;
while (j < arguments.length) {
if (this.isAStyle(arguments[j])) {
component.updateStyleProperty(this, arguments[j]);
}
j++;
}
} else {
for (var j in this) {
if (this.isAStyle(j)) {
component.updateStyleProperty(this, j.toString());
}
}
}
}
};
FStyleFormat.prototype.isAStyle = function (name) {
return((this.nonStyles[name] ? false : true));
};
#endinitclip
Symbol 17 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 27 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 36 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "foregroundDisabled");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 37 MovieClip [UpArrow] Frame 1
stop();
Symbol 37 MovieClip [UpArrow] Frame 2
stop();
Symbol 37 MovieClip [UpArrow] Frame 3
stop();
Symbol 44 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 51 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 56 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(highlight3D_mc, "highlight3D");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
Symbol 57 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 65 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 73 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 81 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "foregroundDisabled");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 82 MovieClip [DownArrow] Frame 1
stop();
Symbol 82 MovieClip [DownArrow] Frame 2
stop();
Symbol 82 MovieClip [DownArrow] Frame 3
stop();
Symbol 96 MovieClip Frame 1
gotoAndStop(random(12) + 2);
Symbol 97 MovieClip [innocent] Frame 1
onEnterFrame = function () {
_y = (_y + _root.player.ySpeed);
if (_y > 400) {
this.removeMovieClip();
}
if ((_root.player.action == "bone") && (this.hitTest(_root.player._x, _root.player._y))) {
_root.addScore.onEnterFrame = function () {
this._x = this._x + ((130 - this._x) * 0.1);
this._y = this._y * 0.8;
if (this._y < 10) {
this.removeMovieClip();
}
};
_root.addScore.onUnload = function () {
_root.score = _root.score + this.score;
};
_root.player.action = "impact";
_root.player.ySpeed = -5;
ySpeed = random(5) + 20;
xSpeed = random(5) + 5;
if (random(2) == 0) {
xSpeed = xSpeed * -1;
}
onEnterFrame = function () {
ySpeed = ySpeed - 1;
_y = (_y - ySpeed);
_y = (_y + _root.player.ySpeed);
_x = (_x + xSpeed);
_rotation = (_rotation + (xSpeed * 0.5));
};
} else if ((((_root.player.action == "walk") || (_root.player.action == "run")) && (this.hitTest(_root.player))) && (Math.abs(_x - _root.player._x) < 30)) {
if (_x > _root.player._x) {
_x = (_x + ((30 - Math.abs(_root.player._x - _x)) * 0.2));
} else {
_x = (_x - ((30 - Math.abs(_x - _root.player._x)) * 0.2));
}
}
};
Symbol 107 MovieClip Frame 1
onEnterFrame = function () {
if (_root.player.ySpeed <= 0) {
stop();
} else {
play();
}
};
Symbol 135 MovieClip Frame 1
_parent._parent.ySpeed = 0;
_parent._parent.xSpeed = 0;
Symbol 135 MovieClip Frame 16
_root.attachMovie("addScore", "addScore", 99999);
Symbol 135 MovieClip Frame 18
_parent._parent.ySpeed = 20;
timer = 18;
onEnterFrame = function () {
timer--;
if (timer <= 0) {
_root.addScore.vSpeed = -5;
_root.addScore.onEnterFrame = function () {
this.vSpeed = this.vSpeed + 0.5;
this._y = this._y + this.vSpeed;
this.score = this.score * 0.5;
this.score = int(this.score);
this._alpha = this._alpha - 2;
if (_y > 400) {
this.removeMovieClip();
}
};
_parent._parent.action = "walk";
_parent.gotoAndStop("walk");
}
};
Symbol 135 MovieClip Frame 23
gotoAndPlay (19);
Symbol 143 MovieClip Frame 6
_parent._parent.action = "walk";
_parent.gotoAndStop("walk");
Symbol 151 MovieClip Frame 1
_parent._parent.ySpeed = -4;
_parent._parent.xSpeed = 0;
_root.addScore.vSpeed = -5;
_root.lives--;
_root.score = _root.score - 100;
_root.addScore.onEnterFrame = function () {
this.vSpeed = this.vSpeed + 0.5;
this._y = this._y + this.vSpeed;
this.score = -100;
this._alpha = this._alpha - 2;
if (_y > 400) {
this.removeMovieClip();
}
};
Symbol 151 MovieClip Frame 7
if (_root.lives <= 0) {
_root.gotoAndStop("youDied");
}
Symbol 151 MovieClip Frame 8
if (_root.lives <= 0) {
_root.gotoAndStop("youDied");
}
_parent._parent.action = "walk";
_parent.gotoAndStop("walk");
Symbol 153 MovieClip [player] Frame 1
xSpeed = 0;
ySpeed = 1;
action = "walk";
bone = 32;
base = 1;
onEnterFrame = function () {
i = 1;
while (i <= 4) {
_root["stripe" + i]._y = _root["stripe" + i]._y + ySpeed;
i++;
}
if ((action == "walk") || (action == "run")) {
if (Key.isDown(39) && (xSpeed < 5)) {
xSpeed++;
} else if ((!Key.isDown(39)) && (xSpeed > 0)) {
xSpeed--;
}
if (Key.isDown(37) && (xSpeed > -5)) {
xSpeed--;
} else if ((!Key.isDown(37)) && (xSpeed < 0)) {
xSpeed++;
}
if (Key.isDown(38) && (ySpeed < (5 + base))) {
ySpeed = ySpeed + 1;
} else if (ySpeed > base) {
ySpeed--;
}
if (ySpeed < base) {
ySpeed++;
}
if (ySpeed > (base + 3)) {
action = "run";
} else {
action = "walk";
}
if (Key.isDown(bone)) {
action = "bone";
}
}
_x = (_x + xSpeed);
sprite.gotoAndStop(action);
};
Symbol 164 MovieClip Frame 1
gotoAndStop(random(9) + 2);
Symbol 165 MovieClip [stationary] Frame 1
onEnterFrame = function () {
_y = (_y + _root.player.ySpeed);
if (this.hitTest(_root.player._x, _root.player._y)) {
_root.player.action = "dead";
ySpeed = random(2) + 2;
xSpeed = random(2) + 2;
if (random(2) == 0) {
xSpeed = xSpeed * -1;
}
onEnterFrame = function () {
_alpha = (_alpha - 10);
ySpeed = ySpeed - 0.5;
_y = (_y - ySpeed);
_y = (_y + _root.player.ySpeed);
_x = (_x + xSpeed);
_rotation = (_rotation + (xSpeed * 0.5));
if (_alpha <= 0) {
this.removeMovieClip();
}
};
}
};
Symbol 170 MovieClip [addScore] Frame 1
x = 0;
y = 120;
_x = x;
_y = y;
score = 0;
onEnterFrame = function () {
score = score + 10;
_x = ((x + random(5)) - 3);
_y = ((y + random(5)) - 3);
};
Symbol 173 MovieClip [levelUp] Frame 1
if (_root.player.base < 14) {
_root.player.base = _root.player.base + 0.5;
}
_alpha = 0;
_x = 15;
_y = 150;
_root.level++;
_root.score = _root.score + 100;
if (_root.level >= 35) {
_root.gotoAndStop("winner");
}
onEnterFrame = function () {
_alpha = (_alpha + 2);
if (_alpha > 200) {
this.onEnterFrame = function () {
_alpha = (_alpha * 0.5);
if (_alpha < 1) {
this.removeMovieClip();
}
};
}
};
Symbol 181 MovieClip Frame 1
_x = 100;
_y = 0;
Symbol 182 MovieClip Frame 1
onEnterFrame = function () {
_root.muzac.setVolume(slider._x);
};
Instance of Symbol 181 MovieClip "slider" in Symbol 182 MovieClip Frame 1
onClipEvent (load) {
_alpha = 50;
}
on (rollOver) {
_alpha = 100;
}
on (rollOut) {
_alpha = 50;
}
on (press) {
this.startDrag(true, 0, 0, 100, 0);
}
on (release) {
_alpha = 50;
this.stopDrag();
}
on (releaseOutside) {
_alpha = 50;
this.stopDrag();
}
Symbol 185 MovieClip [scoreNum] Frame 1
_x = 130;
_y = 5;
Instance of Symbol 184 MovieClip in Symbol 185 MovieClip [scoreNum] Frame 1
on (release) {
if (_root.quality == "Low") {
_root.quality = "High";
} else if (_root.quality == "High") {
_root.quality = "Medium";
} else {
_root.quality = "Low";
}
}
Symbol 187 MovieClip [stripe] Frame 1
onEnterFrame = function () {
if (_y >= 350) {
_y = (_y - 450);
}
};
Symbol 190 MovieClip Frame 1
var component = _parent;
component.registerSkinElement(track_mc, "scrollTrack");
Symbol 191 MovieClip [FScrollBarSymbol] Frame 1
#initclip 2
FScrollBarClass = function () {
if (this._height == 4) {
return(undefined);
}
this.init();
this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0)));
this.smallScroll = 1;
this.width = (this.horizontal ? (this._width) : (this._height));
this._xscale = (this._yscale = 100);
this.setScrollPosition(0);
this.tabEnabled = false;
if (this._targetInstanceName.length > 0) {
this.setScrollTarget(this._parent[this._targetInstanceName]);
}
this.tabChildren = false;
this.setSize(this.width);
};
FScrollBarClass.prototype = new FUIComponentClass();
FScrollBarClass.prototype.setHorizontal = function (flag) {
if (this.horizontal && (!flag)) {
this._xscale = 100;
this._rotation = 0;
} else if (flag && (!this.horizontal)) {
this._xscale = -100;
this._rotation = -90;
}
this.horizontal = flag;
};
FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) {
if (!this.enable) {
return(undefined);
}
this.pageSize = pSize;
this.minPos = Math.max(mnPos, 0);
this.maxPos = Math.max(mxPos, 0);
this.scrollPosition = Math.max(this.minPos, this.scrollPosition);
this.scrollPosition = Math.min(this.maxPos, this.scrollPosition);
if ((this.maxPos - this.minPos) <= 0) {
this.scrollThumb_mc.removeMovieClip();
this.upArrow_mc.gotoAndStop(3);
this.downArrow_mc.gotoAndStop(3);
this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null));
this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null));
this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null);
this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null);
this.scrollTrack_mc.useHandCursor = false;
} else {
var tmp = this.getScrollPosition();
this.upArrow_mc.gotoAndStop(1);
this.downArrow_mc.gotoAndStop(1);
this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller);
this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling);
this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller);
this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling);
this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller);
this.scrollTrack_mc.onRelease = this.stopScrolling;
this.scrollTrack_mc.onDragOut = this.stopScrolling;
this.scrollTrack_mc.onRollOut = this.stopScrolling;
this.scrollTrack_mc.useHandCursor = false;
this.attachMovie("ScrollThumb", "scrollThumb_mc", 3);
this.scrollThumb_mc._x = 0;
this.scrollThumb_mc._y = this.upArrow_mc._height;
this.scrollThumb_mc.onPress = this.startDragThumb;
this.scrollThumb_mc.controller = this;
this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb);
this.scrollThumb_mc.useHandCursor = false;
this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize;
this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid;
this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop;
this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot;
this.thumbHeight = Math.max(this.thumbHeight, 6);
this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height;
this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height;
this.thumbMid_mc._y = this.thumbTop_mc._height;
this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight;
this.scrollTop = this.scrollThumb_mc._y;
this.trackHeight = this.trackSize - this.thumbHeight;
this.scrollBot = this.trackHeight + this.scrollTop;
tmp = Math.min(tmp, this.maxPos);
this.setScrollPosition(Math.max(tmp, this.minPos));
}
};
FScrollBarClass.prototype.getScrollPosition = function () {
return(this.scrollPosition);
};
FScrollBarClass.prototype.setScrollPosition = function (pos) {
this.scrollPosition = pos;
if (this.scrollThumb_mc != undefined) {
pos = Math.min(pos, this.maxPos);
pos = Math.max(pos, this.minPos);
}
this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop;
this.executeCallBack();
};
FScrollBarClass.prototype.setLargeScroll = function (lScroll) {
this.largeScroll = lScroll;
};
FScrollBarClass.prototype.setSmallScroll = function (sScroll) {
this.smallScroll = sScroll;
};
FScrollBarClass.prototype.setEnabled = function (enabledFlag) {
var wasEnabled = this.enable;
if (enabledFlag && (!wasEnabled)) {
this.enable = enabledFlag;
if (this.textField != undefined) {
this.setScrollTarget(this.textField);
} else {
this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos);
this.setScrollPosition(this.cachedPos);
}
this.clickFilter = undefined;
} else if ((!enabledFlag) && (wasEnabled)) {
this.textField.removeListener(this);
this.cachedPos = this.getScrollPosition();
this.cachedMinPos = this.minPos;
this.cachedMaxPos = this.maxPos;
if (this.clickFilter == undefined) {
this.setScrollProperties(this.pageSize, 0, 0);
} else {
this.clickFilter = true;
}
this.enable = enabledFlag;
}
};
FScrollBarClass.prototype.setSize = function (hgt) {
if (this._height == 1) {
return(undefined);
}
this.width = hgt;
this.scrollTrack_mc._yscale = 100;
this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height;
if (this.upArrow_mc == undefined) {
this.attachMovie("UpArrow", "upArrow_mc", 1);
this.attachMovie("DownArrow", "downArrow_mc", 2);
this.downArrow_mc.controller = (this.upArrow_mc.controller = this);
this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false);
this.upArrow_mc._x = (this.upArrow_mc._y = 0);
this.downArrow_mc._x = 0;
}
this.scrollTrack_mc.controller = this;
this.downArrow_mc._y = this.width - this.downArrow_mc._height;
this.trackSize = this.width - (2 * this.downArrow_mc._height);
if (this.textField != undefined) {
this.onTextChanged();
} else {
this.setScrollProperties(this.pageSize, this.minPos, this.maxPos);
}
};
FScrollBarClass.prototype.scrollIt = function (inc, mode) {
var delt = this.smallScroll;
if (inc != "one") {
delt = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll));
}
var newPos = (this.getScrollPosition() + (mode * delt));
if (newPos > this.maxPos) {
newPos = this.maxPos;
} else if (newPos < this.minPos) {
newPos = this.minPos;
}
this.setScrollPosition(newPos);
};
FScrollBarClass.prototype.startDragThumb = function () {
this.lastY = this._ymouse;
this.onMouseMove = this.controller.dragThumb;
};
FScrollBarClass.prototype.dragThumb = function () {
this.scrollMove = this._ymouse - this.lastY;
this.scrollMove = this.scrollMove + this._y;
if (this.scrollMove < this.controller.scrollTop) {
this.scrollMove = this.controller.scrollTop;
} else if (this.scrollMove > this.controller.scrollBot) {
this.scrollMove = this.controller.scrollBot;
}
this._y = this.scrollMove;
var c = this.controller;
c.scrollPosition = Math.round(((c.maxPos - c.minPos) * (this._y - c.scrollTop)) / c.trackHeight) + c.minPos;
this.controller.isScrolling = true;
updateAfterEvent();
this.controller.executeCallBack();
};
FScrollBarClass.prototype.stopDragThumb = function () {
this.controller.isScrolling = false;
this.onMouseMove = null;
};
FScrollBarClass.prototype.startTrackScroller = function () {
this.controller.trackScroller();
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1);
};
FScrollBarClass.prototype.scrollInterval = function (inc, mode) {
clearInterval(this.scrolling);
if (inc == "page") {
this.trackScroller();
} else {
this.scrollIt(inc, mode);
}
this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode);
};
FScrollBarClass.prototype.trackScroller = function () {
if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) {
this.scrollIt("page", 1);
} else if (this.scrollThumb_mc._y > this._ymouse) {
this.scrollIt("page", -1);
}
};
FScrollBarClass.prototype.stopScrolling = function () {
this.controller.downArrow_mc.gotoAndStop(1);
this.controller.upArrow_mc.gotoAndStop(1);
clearInterval(this.controller.scrolling);
};
FScrollBarClass.prototype.startUpScroller = function () {
this.controller.upArrow_mc.gotoAndStop(2);
this.controller.scrollIt("one", -1);
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1);
};
FScrollBarClass.prototype.startDownScroller = function () {
this.controller.downArrow_mc.gotoAndStop(2);
this.controller.scrollIt("one", 1);
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1);
};
FScrollBarClass.prototype.setScrollTarget = function (tF) {
if (tF == undefined) {
this.textField.removeListener(this);
delete this.textField[(this.horizontal ? "hScroller" : "vScroller")];
if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) {
this.textField.unwatch("text");
this.textField.unwatch("htmltext");
}
}
this.textField = undefined;
if (!(tF instanceof TextField)) {
return(undefined);
}
this.textField = tF;
this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this;
this.onTextChanged();
this.onChanged = function () {
this.onTextChanged();
};
this.onScroller = function () {
if (!this.isScrolling) {
if (!this.horizontal) {
this.setScrollPosition(this.textField.scroll);
} else {
this.setScrollPosition(this.textField.hscroll);
}
}
};
this.textField.addListener(this);
this.textField.watch("text", this.callback);
this.textField.watch("htmlText", this.callback);
};
FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) {
clearInterval(this.hScroller.synchScroll);
clearInterval(this.vScroller.synchScroll);
this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50);
this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50);
return(newVal);
};
FScrollBarClass.prototype.onTextChanged = function () {
if ((!this.enable) || (this.textField == undefined)) {
return(undefined);
}
clearInterval(this.synchScroll);
if (this.horizontal) {
var pos = this.textField.hscroll;
this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll);
this.setScrollPosition(Math.min(pos, this.textField.maxhscroll));
} else {
var pos = this.textField.scroll;
var pageSize = (this.textField.bottomScroll - this.textField.scroll);
this.setScrollProperties(pageSize, 1, this.textField.maxscroll);
this.setScrollPosition(Math.min(pos, this.textField.maxscroll));
}
};
FScrollBarClass.prototype.executeCallBack = function () {
if (this.textField == undefined) {
super.executeCallBack();
} else if (this.horizontal) {
this.textField.hscroll = this.getScrollPosition();
} else {
this.textField.scroll = this.getScrollPosition();
}
};
Object.registerClass("FScrollBarSymbol", FScrollBarClass);
#endinitclip
Symbol 202 Button
on (release) {
muzac = new Sound();
muzac.attachSound("music");
muzac.start(0, 99999);
_root.nextFrame();
}
Symbol 205 MovieClip Frame 1
inX = _x;
inY = _y;
_alpha = 0;
dx = (inX + random(3)) - 1;
dy = (iny + random(3)) - 1;
dalpha = random(25);
timer = random(10);
dxscale = random(20) + 90;
dyscale = random(20) + 90;
onEnterFrame = function () {
if (timer <= 0) {
dx = (inX + random(20)) - 10;
dy = (iny + random(20)) - 10;
dxscale = random(20) + 90;
dyscale = random(20) + 90;
dalpha = random(25) + 5;
timer = 15 + random(5);
}
timer--;
_x = (_x + ((dx - _x) * 0.05));
_y = (_y + ((dy - _y) * 0.05));
_xscale = (_xscale + ((dxscale - _xscale) * 0.05));
_yscale = (_yscale + ((dyscale - _yscale) * 0.05));
_alpha = (_alpha + ((dalpha - _alpha) * 0.05));
};
Symbol 212 Button
on (release) {
_root.nextFrame();
}
Instance of Symbol 239 MovieClip in Symbol 248 MovieClip Frame 126
/* no clip actions */
Symbol 248 MovieClip Frame 465
_root.nextFrame();
Symbol 253 Button
on (release) {
_root.gotoAndStop("game");
}
Symbol 256 Button
on (release) {
gotoAndStop (2);
}
Symbol 259 Button
on (release) {
gotoAndStop (3);
}
Symbol 263 MovieClip Frame 1
_alpha = 0;
onEnterFrame = function () {
_alpha = (_alpha + 10);
};
Symbol 266 Button
on (press) {
getURL ("http://www.gamesofgondor.com", "_blank");
}
Symbol 269 Button
on (release) {
gotoAndStop (1);
}
Symbol 278 MovieClip Frame 1
stop();
Instance of Symbol 191 MovieClip [FScrollBarSymbol] in Symbol 278 MovieClip Frame 3
//component parameters
onClipEvent (initialize) {
_targetInstanceName = "InstanceName_0";
horizontal = false;
}
Symbol 284 Button
on (release) {
_root.gotoAndPlay("game");
}
Symbol 287 Button
on (release) {
gotoAndStop (3);
}