Frame 1
function pb() {
if (pbar.getPercentComplete() >= 100) {
gotoAndPlay (2);
}
}
stop();
pBar.setLoadTarget(this);
Stage.showMenu = false;
function musicPlaying() {
if (musicPlayed == 1) {
musicNot1 = 2;
musicNot2 = 3;
} else if (musicPlayed == 2) {
musicNot1 = 1;
musicNot2 = 3;
} else {
musicNot1 = 1;
musicNot2 = 2;
}
loopCount++;
randSound = Math.random();
if (loopCount <= _root["loop" + musicPlayed]) {
_root["music" + musicPlayed].start();
_root["music" + musicPlayed].onSoundComplete = musicPlaying;
} else {
loopCount = 0;
if (randSound < 0.5) {
_root["music" + musicNot1].start();
_root["music" + musicNot1].onSoundComplete = musicPlaying;
musicPlayed = musicNot1;
} else {
_root["music" + musicNot2].start();
_root["music" + musicNot2].onSoundComplete = musicPlaying;
musicPlayed = musicNot2;
}
}
}
function startMusic(num) {
_root["music" + num].start();
musicPlayed = num;
loopCount = 0;
_root["music" + num].onSoundComplete = musicPlaying;
}
function stopMusic() {
var f = 1;
while (f <= 3) {
_root["music" + f].stop();
f++;
}
}
music1 = new Sound(this);
music2 = new Sound(this);
music3 = new Sound(this);
music1.attachSound("h20.aif");
music2.attachSound("h20.aif");
music3.attachSound("h20.aif");
loop1 = 0;
loop2 = 0;
loop3 = 3;
startMusic(1);
Instance of Symbol 158 MovieClip [FProgressBarSymbol] "pBar" in Frame 1
//component parameters
onClipEvent (initialize) {
displayBar = true;
kBTally = true;
changeHandler = "pb";
}
Frame 2
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 180;
waiter = 0;
this.onEnterFrame = paused;
Frame 3
stopAllSounds();
Frame 4
stop();
function musicPlaying() {
if (musicPlayed == 1) {
musicNot1 = 2;
musicNot2 = 3;
} else if (musicPlayed == 2) {
musicNot1 = 1;
musicNot2 = 3;
} else {
musicNot1 = 1;
musicNot2 = 2;
}
loopCount++;
randSound = Math.random();
if (loopCount <= _root["loop" + musicPlayed]) {
_root["music" + musicPlayed].start();
_root["music" + musicPlayed].onSoundComplete = musicPlaying;
} else {
loopCount = 0;
if (randSound < 0.5) {
_root["music" + musicNot1].start();
_root["music" + musicNot1].onSoundComplete = musicPlaying;
musicPlayed = musicNot1;
} else {
_root["music" + musicNot2].start();
_root["music" + musicNot2].onSoundComplete = musicPlaying;
musicPlayed = musicNot2;
}
}
}
function startMusic(num) {
_root["music" + num].start();
musicPlayed = num;
loopCount = 0;
_root["music" + num].onSoundComplete = musicPlaying;
}
function stopMusic() {
var f = 1;
while (f <= 3) {
_root["music" + f].stop();
f++;
}
}
music1 = new Sound(this);
music2 = new Sound(this);
music3 = new Sound(this);
music1.attachSound("h20A.aif");
music2.attachSound("h20B.aif");
music3.attachSound("h20C.aif");
loop1 = 1;
loop2 = 1;
loop3 = 1;
startMusic(1);
Frame 5
stop();
function run() {
sc++;
if (hsc < sc) {
hsc = sc;
}
score.score.text = "Score: " + sc;
highscore.score.text = "Highscore: " + hsc;
if (desc && ((count < 0) || (oldy > 135))) {
desc = false;
delt = (-Math.random()) * 10;
count = 7 + Math.round(Math.random() * 8);
} else if ((!desc) && ((count < 0) || (oldy < -80))) {
desc = true;
delt = Math.random() * 15;
count = 7 + Math.round(Math.random() * 8);
}
createEmptyMovieClip("w" + numOn, numOn);
eval ("w" + numOn)._y = oldy + delt;
oldy = eval ("w" + numOn)._y;
eval ("w" + numOn)._x = 600;
eval ("w" + numOn).num = numOn;
eval ("w" + numOn).attachMovie("box", "b" + numOn, 10);
eval ("w" + numOn).onEnterFrame = left;
numOn++;
wcount--;
if (wcount < 0) {
wcount = 20;
createEmptyMovieClip("w" + numOn, numOn);
eval ("w" + numOn)._y = (eval ("w" + (numOn - 1))._y + 220) + (Math.random() * 100);
eval ("w" + numOn)._x = 600;
eval ("w" + numOn).num = numOn;
eval ("w" + numOn).attachMovie("wall", "b" + numOn, 10);
eval ("w" + numOn).onEnterFrame = left;
numOn++;
createEmptyMovieClip("w" + numOn, numOn);
eval ("w" + numOn)._y = eval ("w" + (numOn - 2))._y + 550;
eval ("w" + numOn)._x = 600;
eval ("w" + numOn).num = numOn;
eval ("w" + numOn).attachMovie("box", "b" + numOn, 10);
eval ("w" + numOn).onEnterFrame = left;
} else {
createEmptyMovieClip("w" + numOn, numOn);
eval ("w" + numOn)._y = eval ("w" + (numOn - 1))._y + 550;
eval ("w" + numOn)._x = 600;
eval ("w" + numOn).num = numOn;
eval ("w" + numOn).attachMovie("box", "b" + numOn, 10);
eval ("w" + numOn).onEnterFrame = left;
}
high = numOn;
numOn++;
count--;
}
function left() {
this._x = this._x - 30;
if (this._x < -60) {
delete this.onEnterFrame;
if (low < this.num) {
low = this.num;
}
this.removeMovieClip();
}
}
function throttle() {
gas = true;
}
function rel() {
gas = false;
}
function fly() {
if (gas) {
this.vel = this.vel - 3.7;
} else if (this.vel < 0) {
this.vel = this.vel + grav;
}
this.vel = this.vel + grav;
this._y = this._y + this.vel;
var j = (low + 3);
while (j <= high) {
if (eval ("w" + j).hitTest(this)) {
delete _root.onEnterFrame;
var b = low;
while (b <= high) {
delete eval ("w" + b).onEnterFrame;
b++;
}
this.gotoAndPlay(2);
this.onEnterFrame = end;
}
j++;
}
}
function end() {
if (this._currentframe >= this._totalframes) {
delete this.onEnterFrame;
_root.screen.onRelease = trig;
}
}
function trig() {
var b = low;
while (b <= high) {
eval ("w" + b).removeMovieClip();
b++;
}
reset();
}
function reset() {
sc = 0;
numOn = 0;
low = 0;
high = 0;
oldy = 50;
desc = true;
delt = 5;
count = 10;
wcount = 20;
screen._x = (screen._y = 0);
screen._width = Stage.width;
screen._height = Stage.height;
gas = false;
grav = 1.8;
ob.vel = 0;
ob._y = 180;
ob.gotoAndStop(1);
ob.onEnterFrame = fly;
screen.onMouseDown = throttle;
screen.onRelease = (screen.onReleaseOutside = rel);
_root.onEnterFrame = run;
}
if (score.getDepth() < 500) {
menu.swapDepths(100000);
score.swapDepths(40000);
highscore.swapDepths(40010);
}
screen._x = (screen._y = 0);
screen._width = Stage.width;
screen._height = Stage.height;
ob.vel = 0;
reset();
Symbol 7 MovieClip [FLabelSymbol] Frame 1
#initclip 2
_global.FLabelClass = function () {
if (this.hostComponent == undefined) {
this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller));
}
if (this.customTextStyle == undefined) {
if (this.hostComponent.textStyle == undefined) {
this.hostComponent.textStyle = new TextFormat();
}
this.textStyle = this.hostComponent.textStyle;
this.enable = true;
}
};
FLabelClass.prototype = new MovieClip();
Object.registerClass("FLabelSymbol", FLabelClass);
FLabelClass.prototype.setLabel = function (label) {
var val = this.hostComponent.styleTable.embedFonts.value;
if (val != undefined) {
this.labelField.embedFonts = val;
}
this.labelField.setNewTextFormat(this.textStyle);
this.labelField.text = label;
this.labelField._height = this.labelField.textHeight + 2;
};
FLabelClass.prototype.setSize = function (width) {
this.labelField._width = width;
};
FLabelClass.prototype.setEnabled = function (enable) {
this.enable = enable;
var tmpColor = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value;
if (tmpColor == undefined) {
tmpColor = (enable ? 0 : 8947848);
}
this.setColor(tmpColor);
};
FLabelClass.prototype.getLabel = function () {
return(this.labelField.text);
};
FLabelClass.prototype.setColor = function (col) {
this.labelField.textColor = col;
};
#endinitclip
Symbol 8 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 31 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 1
stop();
Symbol 95 MovieClip Frame 60
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 30;
waiter = 0;
this.onEnterFrame = paused;
Symbol 109 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 44
stop();
Symbol 119 MovieClip [ob] Frame 1
stop();
Symbol 119 MovieClip [ob] Frame 45
stop();
Symbol 121 MovieClip [eye2] Frame 1
stop();
Symbol 122 MovieClip [eye] Frame 1
stop();
Symbol 130 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 137 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");
component.registerSkinElement(face_mc, "face");
Symbol 142 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 146 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(trackLeftCap, "scrollTrack");
Symbol 148 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(trackMiddle, "scrollTrack");
Symbol 150 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(track, "scrollTrack");
Symbol 155 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent;
component.registerSkinElement(boundingBox, "background");
stop();
Symbol 155 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled");
stop();
Symbol 158 MovieClip [FProgressBarSymbol] Frame 1
#initclip 3
function ProgressBarClass() {
this.init();
if (this.displayBar == undefined) {
this.displayBar = true;
this.kBTally = true;
}
this.maxV = 100;
this.minV = 0;
this.value = 0;
this.oldValue = 0;
this.width = this._xscale;
this._xscale = (this._yscale = 100);
this.boundingBox_mc._visible = false;
this.setChangeHandler(this.changeHandler);
if (this.displayBar) {
this.attachMovie("Track", "track", 0);
}
this.setDisplayText(this.kBTally);
this.setSize(this.width);
}
Object.registerClass("FProgressBarSymbol", ProgressBarClass);
ProgressBarClass.prototype = new FUIComponentClass();
ProgressBarClass.prototype.setSize = function (w, h) {
this.width = w;
this.height = h;
this.stretchToSize(w, this.track.leftTrack, this.track.midTrack, this.track.rightTrack);
this.KBText._x = this.track._x;
this.KBText._y = (this.track._y + this.track._height) + 0;
this.KBText.setSize(w);
this.renderBar();
};
ProgressBarClass.prototype.setLoadTarget = function (mcRef) {
this.loadTarget = mcRef;
this.createEmptyMovieClip("loadPoller", 10);
this.loadPoller.onEnterFrame = function () {
var comp = this._parent.loadTarget;
this._parent.setProgress(comp.getBytesLoaded(), comp.getBytesTotal());
if ((this._parent.getPercentComplete() >= 100) && (this._parent.getValue() > 4)) {
delete this.onEnterFrame;
}
};
};
ProgressBarClass.prototype.getLoadTarget = function () {
return(this.loadTarget);
};
ProgressBarClass.prototype.setValue = function (v) {
this.value = v;
this.invalidate("renderBar");
};
ProgressBarClass.prototype.getValue = function () {
return(this.value);
};
ProgressBarClass.prototype.setMinimum = function (m) {
this.minV = m;
};
ProgressBarClass.prototype.getMinimum = function () {
return(this.minV);
};
ProgressBarClass.prototype.setMaximum = function (m) {
this.maxV = m;
this.invalidate("renderBar");
};
ProgressBarClass.prototype.getMaximum = function () {
return(this.maxV);
};
ProgressBarClass.prototype.setDisplayText = function (tOrF) {
if (tOrF) {
this.KBText = this.attachMovie("FLabelSymbol", "KBT", 4, {hostComponent:this});
this.setStyleProperty("textAlign", "center");
} else {
this.KBText.removeMovieClip();
this.KBText = undefined;
}
};
ProgressBarClass.prototype.setDisplayGraphics = function (tOrF) {
this.displayBar = tOrF;
if (!tOrF) {
this.growBar.removeMovieClip();
this.growBar = undefined;
this.track.removeMovieClip();
} else {
this.attachMovie("Track", "track", 0);
this.setSize(this.width);
}
};
ProgressBarClass.prototype.getPercentComplete = function () {
return(Math.round(((this.value - this.minV) / this.maxV) * 100));
};
ProgressBarClass.prototype.setPercentComplete = function (p) {
this.value = ((this.maxV * p) / 100) + this.minV;
this.invalidate("renderBar");
};
ProgressBarClass.prototype.setProgress = function (v, t) {
this.value = v;
this.maxV = t;
this.invalidate("renderBar");
};
ProgressBarClass.prototype.stretchToSize = function (w, leftCap, mid, rightCap) {
var stretchWidth = Math.max(0, (w - leftCap._width) - rightCap._width);
mid._width = stretchWidth;
mid._x = leftCap._x + leftCap._width;
rightCap._x = mid._x + mid._width;
};
ProgressBarClass.prototype.renderBar = function () {
if ((this.maxV == 0) || (this.value == 0)) {
this.growBar.removeMovieClip();
return(undefined);
}
this.value = Math.min(this.maxV, this.value);
if (this.value != this.oldValue) {
this.executeCallBack();
}
if ((this.growBar == undefined) && (this.displayBar)) {
this.growBar = this.attachMovie("GrowBar", "gBar", 2);
}
var barSize = ((this.getPercentComplete() * (this.width - 2)) / 100);
this.stretchToSize(barSize, this.growBar.leftBar, this.growBar.midBar, this.growBar.rightBar);
this.oldValue = this.value;
this.KBText.setLabel(((Math.round(this.getValue() / 1024) + " / ") + Math.round(this.maxV / 1024)) + " KB");
};
#endinitclip
Symbol 187 MovieClip Frame 34
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 120;
waiter = 0;
this.onEnterFrame = paused;
Symbol 187 MovieClip Frame 81
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 120;
waiter = 0;
this.onEnterFrame = paused;
Symbol 205 MovieClip Frame 1
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 120;
waiter = 0;
this.onEnterFrame = paused;
Symbol 212 MovieClip Frame 9
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 120;
waiter = 0;
this.onEnterFrame = paused;
Symbol 212 MovieClip Frame 30
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 320;
waiter = 0;
this.onEnterFrame = paused;
Symbol 213 MovieClip Frame 1
a = eye._y - _ymouse;
b = eye._x - _xmouse;
angleA = Math.atan2(a, b);
degrees = angleA / (Math.pi / 180);
setProperty("eye", _rotation , degrees);
a2 = eye2._y - _ymouse;
b2 = eye2._x - _xmouse;
angleA2 = Math.atan2(a2, b2);
degrees2 = angleA2 / (Math.pi / 180);
setProperty("eye2", _rotation , degrees2);
Symbol 213 MovieClip Frame 2
gotoAndPlay (1);
Symbol 220 MovieClip Frame 1
stop();
Symbol 227 Button
on (release) {
_quality = "LOW";
}
Symbol 228 Button
on (release) {
_quality = "MEDIUM";
}
Symbol 229 Button
on (release) {
_quality = "HIGH";
}
Symbol 231 MovieClip Frame 10
stop();
Symbol 237 Button
on (press) {
nextFrame();
}
Symbol 255 MovieClip Frame 1
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 10;
waiter = 0;
this.onEnterFrame = paused;
Symbol 255 MovieClip Frame 10
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 30;
waiter = 0;
this.onEnterFrame = paused;
Symbol 255 MovieClip Frame 20
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 30;
waiter = 0;
this.onEnterFrame = paused;
Symbol 258 MovieClip Frame 7
stop();
Symbol 258 MovieClip Frame 13
stop();
Symbol 268 MovieClip Frame 1
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 30;
waiter = 0;
this.onEnterFrame = paused;
Symbol 268 MovieClip Frame 30
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 120;
waiter = 0;
this.onEnterFrame = paused;
Symbol 268 MovieClip Frame 85
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 60;
waiter = 0;
this.onEnterFrame = paused;
Symbol 271 Button
on (release) {
getURL (((((((((((((((((((((((((("javascript:window.open('" add url) add "','") add winName) add "','width=") add winW) add ",height=") add winH) add ",top=") add winTop) add ",left=") add winLeft) add ",toolbar=") add tools) add ",scrollbars=") add scroll) add ",resizable=") add resize) add ",menubar=") add menu) add ",status=") add status) add ",directories=") add directory) add ",location=") add location) add "'); void(0);");
}
Instance of Symbol 272 MovieClip in Symbol 273 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
url = "http://www.obliterator.com";
winName = "www.OBLITERATOR.com";
winH = 600;
winW = 800;
winTop = 50;
winLeft = 50;
tools = "no";
scroll = "yes";
resize = "yes";
menu = "no";
status = "no";
directory = "yes";
location = "yes";
}
Symbol 280 MovieClip Frame 174
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 120;
waiter = 0;
this.onEnterFrame = paused;
Instance of Symbol 109 MovieClip in Symbol 281 MovieClip Frame 1
onClipEvent (enterFrame) {
location = this._x;
var i;
i = 1 + (_root._xmouse / 5);
if (hitTest(_root.block)) {
this._x = -1000;
} else {
this._x = location + (i++);
}
this._xscale = 40 + _root._ymouse;
this._yscale = 40 + _root._ymouse;
}
Symbol 286 MovieClip Frame 1
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 45;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 2
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 135;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 3
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 135;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 4
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 90;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 5
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 45;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 6
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 45;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 7
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 90;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 8
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 135;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 9
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 135;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 10
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 90;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 11
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 45;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 12
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 45;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 13
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 90;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 14
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 135;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 15
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 135;
waiter = 0;
this.onEnterFrame = paused;
Symbol 286 MovieClip Frame 16
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 45;
waiter = 0;
this.onEnterFrame = paused;
Symbol 288 MovieClip [menu] Frame 1
stop();
Symbol 288 MovieClip [menu] Frame 2
stop();
Symbol 294 MovieClip Frame 5
function paused() {
if (waiter > framesToWait) {
delete this.onEnterFrame;
waiter = 0;
gotoAndPlay(this._currentframe + 1);
} else {
waiter++;
}
}
stop();
framesToWait = 60;
waiter = 0;
this.onEnterFrame = paused;
Symbol 294 MovieClip Frame 21
stop();