Frame 1
Frame 3
function displayScores(mc) {
names = _root.topnickname.split(",");
scores = _root.topscore.split(",");
i = 0;
while (i <= 19) {
if (names[i] == undefined) {
names[i] = "";
}
if (scores[i] == undefined) {
scores[i] = "";
}
eval ((mc + ".n") + (i + 1)).text = names[i];
eval ((mc + ".p") + (i + 1)).text = scores[i];
i++;
}
}
function cancelSubmit(mc, useridframe) {
trace("cancelSubmit");
delete _root.send_lv.onLoad;
_root.skipsubmit = true;
mc.gotoAndStop(useridframe);
}
function _newUser() {
getURL (_root._registerurl, "_blank");
}
function _trackClickThru(mc) {
if (_root._allowclick) {
mc.hit_area.onRelease = function () {
getURL (_root._clickthru, "_blank");
};
} else {
mc.hit_area.useHandCursor = false;
}
}
function _resetUsername(txt) {
txt.onSetFocus = function () {
if ((this.text == _root._msgValid) or (this.text == "Connecting Error!")) {
this.text = "";
}
};
}
function _readSharedData() {
_root.so_uname = ((_root._sostatus.data.so_uname == undefined) ? "" : (_root._sostatus.data.so_uname));
_root.so_jumpframe = ((_root._sostatus.data.so_jumpframe == undefined) ? "" : (_root._sostatus.data.so_jumpframe));
_root.so_sound = ((_root._sostatus.data.so_sound == undefined) ? 1 : (_root._sostatus.data.so_sound));
_resetString = _root._sostatus.data.so_resetString;
trace("==========================");
trace((("_root.so_jumpframe : " + _root._sostatus.data.so_jumpframe) + " : ") + _root.so_uname);
if (_root.so_jumpframe != "") {
_assignValue(_resetString);
_root.createEmptyMovieClip("eye", _root.getNextHighestDepth());
_root.eye.onEnterFrame = function () {
if ((_root.getBytesTotal() == _root.getBytesLoaded()) and (_root.getBytesLoaded() > 50000)) {
_root.intro = 0;
_root._sostatus.data.so_jumpframe = "";
_root._sostatus.flush();
this.onEnterFrame = null;
_root.gotoAndStop(_root.so_jumpframe);
}
};
} else {
_root.intro = 1;
play();
}
_root.uname = _root.so_uname;
_root.gamesound = _root.so_sound;
}
function _writeSharedData(jumpframe, jumpurl, _resetString) {
_root._sostatus.data.so_uname = ((_root.so_uname == undefined) ? "" : (_root.so_uname));
_root._sostatus.data.so_sound = _root.so_sound;
_root._sostatus.data.so_resetString = _resetString;
_root._sostatus.data.so_jumpframe = jumpframe;
_root._sostatus.flush();
if (jumpurl != "") {
getURL (jumpurl);
} else {
gotoAndPlay (1);
}
}
function _assignValue(_val) {
_arr = new Array();
_arr = _val.split("|");
i = 0;
while (i < (_arr.length / 2)) {
_var2 = ((i * 2) + 1) - 1;
_var3 = _var2 + 1;
_root[_arr[_var2]] = _arr[_var3];
i++;
}
}
function _playAgain(mc, jumpframe, _resetString) {
_root.so_uname = _root.uname;
if ((_root.gurl != undefined) and (_root.gurl != "")) {
_writeSharedData(jumpframe, _root.gurl, _resetString);
} else {
_root.intro = 0;
_assignValue(_resetString);
mc.gotoAndStop(jumpframe);
}
}
_global.score = 0;
_global.level;
_global.gameWon = 0;
var distance = 0;
var angleInDegrees = 0;
var colors = [16711680, 16776960];
var alphas = [0, 1];
var ratios = [0, 255];
var blurX = 5;
var blurY = 5;
var strength = 2.5;
var quality = 15;
var type = "outer";
var knockout = false;
var glow = (new flash.filters.GradientGlowFilter(distance, angleInDegrees, colors, alphas, ratios, blurX, blurY, strength, quality, type, knockout));
_global.filterArray = new Array();
_global.filterArray.push(glow);
_global.sndIntro = new Sound();
_global.sndBoing = new Sound();
_global.sndLvl = new Sound();
_global.sndScrible = new Sound();
_global.sndBoing.attachSound("sndBoing");
_global.sndIntro.attachSound("sndIntro");
_global.sndLvl.attachSound("sndLvl");
_global.sndScrible.attachSound("sndScrible");
_root._google_txt.text = "Gully Cricket";
_root._gameid = "1037";
_root._clickthru = "http://www.games2win.com";
_root._customer_id = "games2win";
_root.uname = "";
_root.submiturl = "/gamesubmit.asp";
_root.topnickname = [];
_root.topscore = [];
dataSubmit = function (myname, myscore, mygameid, destmc, useridframe, connframe, top10frame, _ord) {
trace("dataSubmit");
_root.skipsubmit = false;
myname = myname.trim();
_loc = eval (destmc);
if (((myname.length == 0) or (myname == "Invalid Nickname!")) or (myname == "Connecting Error!")) {
_root.uname = "Invalid Nickname!";
} else {
_root.send_lv = new LoadVars();
_root.send_lv.onLoad = function (success) {
if (success and (!_root.skipsubmit)) {
if (_root.send_lv.isreg == 0) {
_root.uname = "Invalid Nickname!";
_loc.gotoAndStop(useridframe);
} else if (_root.send_lv.isreg == 1) {
_root.topnickname = send_lv.topnicknames;
_root.topscore = send_lv.topscores;
_loc.gotoAndPlay(top10frame);
}
}
};
_root.send_lv.nickname = myname;
_root.send_lv.points = myscore;
_root.send_lv.gameid = mygameid;
_root.send_lv.order = _ord;
_root.send_lv.sendAndLoad(submiturl, _root.send_lv, "POST");
_loc.gotoAndPlay(connframe);
}
};
String.prototype.trim = function () {
var _local3 = 0;
var _local2 = this.length;
white = new Object();
white._32 = 1;
_local2--;
while (white["_" + ord(this.charAt(_local2))]) {
}
while (white["_" + ord(this.charAt(_local3++))]) {
}
return(this.slice(_local3 - 1, _local2 + 1));
};
_root._registerurl = "http://www.games2win.com/register.asp";
_root._allowclick = true;
var _sostatus = SharedObject.getLocal("gamestatus", "/");
_readSharedData();
Frame 6
stop();
Frame 7
this.onEnterFrame = function () {
percent = Math.round((this.getBytesLoaded() / this.getBytesTotal()) * 100);
percentage = ("Loading...." + percent) + "%";
if (percent >= 99) {
play();
delete this.onEnterFrame;
} else {
stop();
}
};
stop();
Frame 8
btnSkip.onRelease = function () {
_global.sndIntro.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("dummy");
};
stop();
Instance of Symbol 170 MovieClip in Frame 8
on (release) {
this.gotoAndPlay(_currentframe + 1);
}
Frame 9
_root.gotoAndStop("lblgame");
_global.sndScrible.onSoundComplete = function () {
trace("oops2");
_global.sndScrible.start();
};
Frame 10
btnStart.onRelease = function () {
_global.score = 0;
_global.lvl = 0;
_global.gameWon = 0;
_root.gotoAndStop("level1");
};
btnHow.onRelease = function () {
_root.gotoAndStop("instructions");
};
btnStory.onRelease = function () {
_root.gotoAndStop("lblStory");
};
stop();
Frame 11
btnBack.onRelease = function () {
_root.gotoAndStop("lblgame");
};
btnStart.onRelease = function () {
_global.score = 0;
_global.lvl = 0;
_global.gameWon = 0;
_root.gotoAndStop("level1");
};
stop();
Frame 12
btnBack.onRelease = function () {
_root.gotoAndStop("lblgame");
};
btnStart.onRelease = function () {
_global.score = 0;
_global.lvl = 0;
_global.gameWon = 0;
_root.gotoAndStop("level1");
};
stop();
Frame 13
btnNext.onRelease = function () {
_root.gotoAndStop("level1_");
};
this.stop();
Frame 14
function timer() {
if (counter1 > 0) {
counter1--;
txtTime.text = counter1;
} else {
_global.score = _global.score + (10 * found);
clearInterval(id);
_root.win = false;
_root.gotoAndStop("gameOver");
}
if (found == 3) {
_global.score = _global.score + ((10 * found) + (5 * counter1));
clearInterval(id);
_root.win = true;
id = setInterval(this, "newLevel", 3000);
}
}
function clearGlow() {
clearInterval(hintID);
trace("cg");
var _local1 = new Array();
capillary.filters = _local1;
lamp.filters = _local1;
gun.filters = _local1;
}
function newLevel() {
clearInterval(id);
_root.gotoAndStop("level1a");
}
var id;
var counter1 = 45;
var found = 0;
capillary.useHandCursor = false;
lamp.useHandCursor = false;
gun.useHandCursor = false;
level1.useHandCursor = false;
level1.onPress = function () {
trace(counter1);
counter1 = counter1 - 3;
trace(counter1);
};
capillary.onPress = function () {
capillary.enabled = false;
capillary.swapDepths(car);
capillary.gotoAndPlay("start");
txtCapillary._visible = false;
found++;
};
lamp.onPress = function () {
lamp.enabled = false;
lamp.swapDepths(bag);
lamp.gotoAndPlay("start");
txtLamp._visible = false;
found++;
};
gun.onPress = function () {
gun.enabled = false;
gun.swapDepths(purse);
gun.gotoAndPlay("start");
txtGun._visible = false;
found++;
};
var hintCnt = 0;
btnHint.onRelease = function () {
counter1 = counter1 - 3;
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
hintCnt++;
capillary.filters = _global.filterArray;
lamp.filters = _global.filterArray;
gun.filters = _global.filterArray;
trace(hintID);
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
trace(this.name);
};
this.onEnterFrame = function () {
if (_global.level != 1) {
id = setInterval(this, "timer", 900);
}
_global.level = 1;
};
_root.gotoAndStop("level1_");
stop();
Frame 15
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("lblscore");
};
stop();
Frame 16
btnNext.onRelease = function () {
_root.gotoAndStop("level" + (_global.level + 1));
_global.gameWon = 1;
};
_global.sndLvl.setVolume(100);
btnSubmit.onRelease = function () {
_root.gotoAndStop("gameOver");
};
this.stop();
Frame 17
btnNext.onRelease = function () {
_root.gotoAndStop("level2_");
};
this.stop();
Frame 18
function clearGlow() {
clearInterval(hintID);
trace("cg");
var _local1 = new Array();
pole.filters = _local1;
bomba.filters = _local1;
band.filters = _local1;
mower.filters = _local1;
}
function timer() {
if (counter2 > 0) {
counter2--;
txtTime2.text = counter2;
} else {
_global.score = _global.score + (10 * found);
_root.win = false;
clearInterval(id);
_root.gotoAndStop("gameOver");
}
if (found == 4) {
_global.score = _global.score + ((10 * found) + (5 * counter2));
_root.win = true;
clearInterval(id);
id = setInterval(this, "nextLevel", 3000);
}
}
function nextLevel() {
clearInterval(id);
_root.gotoAndStop("level2a");
}
var id;
var counter2 = 60;
var found = 0;
var hintCnt = 0;
btnHint.onRelease = function () {
counter2 = counter2 - 3;
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
hintCnt++;
pole.filters = _global.filterArray;
bomba.filters = _global.filterArray;
band.filters = _global.filterArray;
mower.filters = _global.filterArray;
trace(hintID);
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
trace(this.name);
};
pole.useHandCursor = false;
bomba.useHandCursor = false;
band.useHandCursor = false;
mower.useHandCursor = false;
level2.useHandCursor = false;
level2.onPress = function () {
trace(counter2);
counter2 = counter2 - 3;
trace(counter2);
};
pole.onPress = function () {
pole.enabled = false;
pole.swapDepths(slide);
pole.gotoAndPlay("start");
txtPole._visible = false;
found++;
};
bomba.onPress = function () {
bomba.enabled = false;
bomba.gotoAndPlay("start");
txtBomb._visible = false;
found++;
};
mower.onPress = function () {
mower.enabled = false;
mower.gotoAndPlay("start");
txtMower._visible = false;
found++;
};
band.onPress = function () {
band.enabled = false;
band.gotoAndPlay("start");
txtBand._visible = false;
found++;
};
this.onEnterFrame = function () {
if (_global.level != 2) {
id = setInterval(this, "timer", 900);
}
_global.level = 2;
};
_root.gotoAndStop("level2_");
stop();
Frame 19
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("lblscore");
};
stop();
Frame 20
btnNext.onRelease = function () {
_root.gotoAndStop("level3_");
};
this.stop();
Frame 21
function clearGlow() {
clearInterval(hintID);
var _local1 = new Array();
rat.filters = _local1;
plunger.filters = _local1;
burner.filters = _local1;
tube.filters = _local1;
redTube.filters = _local1;
}
function timer() {
if (counter3 > 0) {
counter3--;
txtTime3.text = counter3;
} else {
_global.score = _global.score + (10 * found);
clearInterval(id);
_root.win = false;
_root.gotoAndStop("gameOver");
}
if (found == 5) {
_global.score = _global.score + ((10 * found) + (5 * counter3));
clearInterval(id);
_root.win = true;
id = setInterval(this, "nextLevel", 3000);
}
}
function nextLevel() {
clearInterval(id);
_root.gotoAndStop("level3a");
}
var id;
var counter3 = 75;
var found = 0;
rat.useHandCursor = false;
burner.useHandCursor = false;
plunger.useHandCursor = false;
tube.useHandCursor = false;
redTube.useHandCursor = false;
level3.useHandCursor = false;
var hintCnt = 0;
btnHint.onRelease = function () {
counter3 = counter3 - 3;
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
hintCnt++;
rat.filters = _global.filterArray;
plunger.filters = _global.filterArray;
burner.filters = _global.filterArray;
tube.filters = _global.filterArray;
redTube.filters = _global.filterArray;
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
};
level3.onPress = function () {
trace(counter3);
counter3 = counter3 - 3;
trace(counter3);
};
redTube.onPress = function () {
redTube.enabled = false;
redTube.gotoAndPlay("start");
txtRedTube._visible = false;
found++;
};
rat.onPress = function () {
rat.enabled = false;
rat.gotoAndPlay("start");
txtRat._visible = false;
found++;
};
burner.onPress = function () {
burner.enabled = false;
burner.gotoAndPlay("start");
txtBurner._visible = false;
found++;
};
tube.onPress = function () {
tube.enabled = false;
tube.gotoAndPlay("start");
txtTube._visible = false;
found++;
};
plunger.onPress = function () {
plunger.enabled = false;
plunger.gotoAndPlay("start");
txtPlunger._visible = false;
found++;
};
this.onEnterFrame = function () {
if (_global.level != 3) {
id = setInterval(this, "timer", 900);
}
_global.level = 3;
};
_root.gotoAndStop("level3_");
stop();
Frame 22
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("lblscore");
};
stop();
Frame 23
_global.sndLvl.setVolume(100);
btnNext.onRelease = function () {
_root.gotoAndStop("level4_");
trace("4");
};
this.stop();
Frame 24
function clearGlow() {
clearInterval(hintID);
var _local1 = new Array();
remoteCntrl.filters = _local1;
hoverCraft.filters = _local1;
bowlingBal.filters = _local1;
gun.filters = _local1;
dog.filters = _local1;
slide.filters = _local1;
}
function timer() {
if (counter4 > 0) {
counter4--;
txtTime4.text = counter4;
} else {
_global.score = _global.score + (10 * found);
clearInterval(id);
_root.win = false;
_root.gotoAndStop("gameOver");
}
if (found == 6) {
_global.score = _global.score + ((10 * found) + (5 * counter4));
clearInterval(id);
_root.win = true;
id = setInterval(this, "nextLevel", 3000);
}
}
function nextLevel() {
clearInterval(id);
_root.gotoAndStop("level4a");
}
var id;
var counter4 = 90;
var found = 0;
remoteCntrl.useHandCursor = false;
hoverCraft.useHandCursor = false;
bowlingBal.useHandCursor = false;
gun.useHandCursor = false;
dog.useHandCursor = false;
slide.useHandCursor = false;
backGround.useHandCursor = false;
var hintCnt = 0;
btnHint.onRelease = function () {
counter4 = counter4 - 3;
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
hintCnt++;
remoteCntrl.filters = _global.filterArray;
hoverCraft.filters = _global.filterArray;
bowlingBal.filters = _global.filterArray;
gun.filters = _global.filterArray;
dog.filters = _global.filterArray;
slide.filters = _global.filterArray;
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
};
backGround.onPress = function () {
trace(counter4);
counter4 = counter4 - 3;
trace(counter4);
};
remoteCntrl.onPress = function () {
remoteCntrl.enabled = false;
remoteCntrl.gotoAndPlay("start");
txtRemote._visible = false;
found++;
};
hoverCraft.onPress = function () {
hoverCraft.enabled = false;
hoverCraft.gotoAndPlay("start");
txtHoverCraft._visible = false;
found++;
};
gun.onPress = function () {
gun.enabled = false;
gun.gotoAndPlay("start");
txtGun._visible = false;
found++;
};
bowlingBal.onPress = function () {
bowlingBal.enabled = false;
bowlingBal.gotoAndPlay("start");
txtBowlingBal._visible = false;
found++;
};
slide.onPress = function () {
slide.enabled = false;
slide.swapDepths(chair);
slide.gotoAndPlay("start");
txtSlide._visible = false;
found++;
};
dog.onPress = function () {
dog.enabled = false;
dog.gotoAndPlay("start");
txtDog._visible = false;
found++;
};
this.onEnterFrame = function () {
if (_global.level != 4) {
id = setInterval(this, "timer", 900);
}
_global.level = 4;
};
_root.gotoAndStop("level4_");
stop();
Frame 25
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("lblscore");
};
stop();
Frame 26
_global.sndLvl.setVolume(100);
btnNext.onRelease = function () {
_root.gotoAndStop("level5_");
};
this.stop();
Frame 27
function clearGlow() {
clearInterval(hintID);
var _local1 = new Array();
bal.filters = _local1;
chainSaw.filters = _local1;
thinBoy.filters = _local1;
fatBoy.filters = _local1;
dog5.filters = _local1;
flower.filters = _local1;
sub.filters = _local1;
cracker.filters = _local1;
}
function timer() {
if (counter5 > 0) {
counter5--;
txtTime5.text = counter5;
} else {
_global.score = _global.score + (10 * found);
clearInterval(id);
_root.win = false;
_root.gotoAndStop("gameOver");
}
if (found == 8) {
_global.score = _global.score + ((10 * found) + (5 * counter5));
clearInterval(id);
_root.win = true;
id = setInterval(this, "nextLevel", 3000);
}
}
function nextLevel() {
clearInterval(id);
_root.gotoAndStop("level5a");
}
var id;
var counter5 = 105;
var found = 0;
bal.useHandCursor = false;
chainSaw.useHandCursor = false;
thinBoy.useHandCursor = false;
dog5.useHandCursor = false;
fatBoy.useHandCursor = false;
flower.useHandCursor = false;
sub.useHandCursor = false;
cracker.useHandCursor = false;
backGround5.useHandCursor = false;
var hintCnt = 0;
btnHint.onRelease = function () {
counter5 = counter5 - 3;
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
hintCnt++;
bal.filters = _global.filterArray;
chainSaw.filters = _global.filterArray;
thinBoy.filters = _global.filterArray;
dog5.filters = _global.filterArray;
fatBoy.filters = _global.filterArray;
flower.filters = _global.filterArray;
sub.filters = _global.filterArray;
cracker.filters = _global.filterArray;
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
};
backGround5.onPress = function () {
trace(counter5);
counter5 = counter5 - 3;
trace(counter5);
};
sub.onPress = function () {
sub.enabled = false;
sub.swapDepths(flower);
sub.gotoAndPlay("start");
txtSub._visible = false;
found++;
};
bal.onPress = function () {
bal.enabled = false;
bal.swapDepths(wSlide);
bal.gotoAndPlay("start");
txtBal._visible = false;
found++;
};
cracker.onPress = function () {
cracker.enabled = false;
cracker.gotoAndPlay("start");
txtCracker._visible = false;
found++;
};
flower.onPress = function () {
flower.enabled = false;
flower.gotoAndPlay("start");
txtFlower._visible = false;
found++;
};
chainSaw.onPress = function () {
chainSaw.enabled = false;
chainSaw.gotoAndPlay("start");
txtChainSaw._visible = false;
found++;
};
thinBoy.onPress = function () {
thinBoy.enabled = false;
thinBoy.gotoAndPlay("start");
txtThinBoy._visible = false;
found++;
};
fatBoy.onPress = function () {
fatBoy.enabled = false;
fatBoy.swapDepths(slide5);
fatBoy.swapDepths(chair);
fatBoy.gotoAndPlay("start");
txtFatBoy._visible = false;
found++;
};
dog5.onPress = function () {
dog5.enabled = false;
dog5.gotoAndPlay("start");
txtDog5._visible = false;
found++;
};
this.onEnterFrame = function () {
if (_global.level != 5) {
id = setInterval(this, "timer", 900);
}
trace(found);
_global.level = 5;
};
_root.gotoAndStop("level5_");
stop();
Frame 28
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_root.gotoAndStop("level5b");
};
stop();
Frame 29
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("lblscore");
};
stop();
Frame 30
_global.sndLvl.setVolume(100);
btnNext.onRelease = function () {
_root.gotoAndStop("level6_");
};
this.stop();
Frame 31
function clearGlow() {
clearInterval(hintID);
var _local1 = new Array();
bal6.filters = _local1;
kid.filters = _local1;
shopper.filters = _local1;
wire.filters = _local1;
bananaPeel.filters = _local1;
escalater.filters = _local1;
weedCutter.filters = _local1;
}
function timer() {
if (counter6 > 0) {
counter6--;
txtTime6.text = counter6;
} else {
_global.score = _global.score + (10 * found);
clearInterval(id);
_root.win = false;
_root.gotoAndStop("gameOver");
}
if (found == 7) {
_global.score = _global.score + ((10 * found) + (5 * counter6));
clearInterval(id);
_root.win = true;
id = setInterval(this, "nextLevel", 3000);
}
}
function nextLevel() {
clearInterval(id);
_root.gotoAndStop("level6a");
}
var id;
var counter6 = 120;
var found = 0;
bal6.useHandCursor = false;
kid.useHandCursor = false;
shopper.useHandCursor = false;
bananaPeel.useHandCursor = false;
wire.useHandCursor = false;
escalater.useHandCursor = false;
weedCutter.useHandCursor = false;
backGround6.useHandCursor = false;
var hintCnt = 0;
btnHint.onRelease = function () {
counter6 = counter6 - 3;
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
hintCnt++;
bal6.filters = _global.filterArray;
kid.filters = _global.filterArray;
shopper.filters = _global.filterArray;
bananaPeel.filters = _global.filterArray;
wire.filters = _global.filterArray;
escalater.filters = _global.filterArray;
weedCutter.filters = _global.filterArray;
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
};
backGround6.onPress = function () {
trace(counter6);
counter6 = counter6 - 3;
trace(counter6);
};
weedCutter.onPress = function () {
weedCutter.enabled = false;
weedCutter.gotoAndPlay("start");
txtWeedCutter._visible = false;
found++;
};
bal6.onPress = function () {
bal6.enabled = false;
bal6.swapDepths(wSlide);
bal6.gotoAndPlay("start");
txtBal6._visible = false;
found++;
};
kid.onPress = function () {
kid.enabled = false;
kid.swapDepths(teddy);
kid.gotoAndPlay("start");
txtKid._visible = false;
found++;
};
bananaPeel.onPress = function () {
bananaPeel.enabled = false;
bananaPeel.gotoAndPlay("start");
txtBananaPeel._visible = false;
found++;
};
shopper.onPress = function () {
shopper.enabled = false;
shopper.gotoAndPlay("start");
txtShopper._visible = false;
found++;
};
escalater.onPress = function () {
escalater.enabled = false;
escalater.swapDepths(chair);
escalater.gotoAndPlay("start");
txtEscalater._visible = false;
found++;
};
wire.onPress = function () {
wire.enabled = false;
wire.gotoAndPlay("start");
txtWire._visible = false;
found++;
};
this.onEnterFrame = function () {
if (_global.level != 6) {
id = setInterval(this, "timer", 900);
}
_global.level = 6;
};
_root.gotoAndStop("level6_");
stop();
Frame 32
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_root.gotoAndStop("level6b");
};
stop();
Frame 33
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("lblscore");
};
stop();
Frame 34
_global.sndLvl.setVolume(100);
btnNext.onRelease = function () {
_root.gotoAndStop("level7_");
};
this.stop();
Frame 35
function clearGlow() {
clearInterval(hintID);
var _local1 = new Array();
worker.filters = _local1;
extinguisher.filters = _local1;
lazer.filters = _local1;
dynamite.filters = _local1;
car7.filters = _local1;
flame.filters = _local1;
mail.filters = _local1;
mirror.filters = _local1;
back7.train.filters = _local1;
}
function timer() {
if (counter7 > 0) {
counter7--;
txtTime7.text = counter7;
} else {
_global.score = _global.score + (10 * found);
clearInterval(id);
_root.win = false;
_root.gotoAndStop("gameOver");
}
if (found == 8) {
_global.score = _global.score + ((10 * found) + (5 * counter7));
clearInterval(id);
_root.win = true;
id = setInterval(this, "nextLevel", 3000);
}
}
function nextLevel() {
clearInterval(id);
_root.gotoAndStop("level7a");
}
var id;
var counter7 = 135;
var found = 0;
worker.useHandCursor = false;
extinguisher.useHandCursor = false;
lazer.useHandCursor = false;
car7.useHandCursor = false;
dynamite.useHandCursor = false;
flame.useHandCursor = false;
mail.useHandCursor = false;
mirror.useHandCursor = false;
back7.train.useHandCursor = false;
var hintCnt = 0;
btnHint.onRelease = function () {
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
counter7 = counter7 + 3;
hintCnt++;
worker.filters = _global.filterArray;
extinguisher.filters = _global.filterArray;
lazer.filters = _global.filterArray;
car7.filters = _global.filterArray;
dynamite.filters = _global.filterArray;
flame.filters = _global.filterArray;
mail.filters = _global.filterArray;
mirror.filters = _global.filterArray;
back7.train.filters = _global.filterArray;
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
};
backGround6.onPress = function () {
trace(counter6);
counter6 = counter6 - 3;
trace(counter6);
};
weedCutter.onPress = function () {
weedCutter.enabled = false;
weedCutter.gotoAndPlay("start");
txtWeedCutter._visible = false;
found++;
};
this.onMouseDown = function () {
trace(counter7);
counter7 = counter7 - 3;
trace(counter7);
};
mirror.onPress = function () {
counter7 = counter7 + 3;
mirror.enabled = false;
mirror.gotoAndPlay("start");
txtMirror._visible = false;
found++;
};
worker.onPress = function () {
counter7 = counter7 + 3;
worker.enabled = false;
worker.swapDepths(wSlide);
worker.gotoAndPlay("start");
txtWorker._visible = false;
found++;
};
mail.onPress = function () {
counter7 = counter7 + 3;
mail.enabled = false;
mail.gotoAndPlay("start");
txtMail._visible = false;
found++;
};
extinguisher.onPress = function () {
counter7 = counter7 + 3;
extinguisher.enabled = false;
extinguisher.gotoAndPlay("start");
txtExtinguisher._visible = false;
found++;
};
car7.onPress = function () {
counter7 = counter7 + 3;
car7.enabled = false;
car7.gotoAndPlay("start");
txtCar7._visible = false;
found++;
};
lazer.onPress = function () {
counter7 = counter7 + 3;
lazer.enabled = false;
lazer.gotoAndPlay("start");
txtLazer._visible = false;
found++;
};
flame.onPress = function () {
counter7 = counter7 + 3;
flame.enabled = false;
flame.gotoAndPlay("start");
txtFlame._visible = false;
found++;
};
dynamite.onPress = function () {
counter7 = counter7 + 3;
dynamite.enabled = false;
dynamite.gotoAndPlay("start");
txtDynamite._visible = false;
found++;
};
this.onEnterFrame = function () {
if (_global.level != 7) {
id = setInterval(this, "timer", 900);
}
_global.level = 7;
};
_root.gotoAndStop("level7_");
stop();
Frame 36
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_root.gotoAndStop("level7b");
};
stop();
Frame 37
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("lblscore");
};
stop();
Frame 38
_global.sndLvl.setVolume(100);
btnNext.onRelease = function () {
_root.gotoAndStop("level8_");
};
this.stop();
Frame 39
function clearGlow() {
clearInterval(hintID);
var _local1 = new Array();
plane.filters = _local1;
inverter.filters = _local1;
hand.filters = _local1;
generator.filters = _local1;
can.filters = _local1;
fan.filters = _local1;
sling.filters = _local1;
pencil.filters = _local1;
switch8.filters = _local1;
convayorBelt.filters = _local1;
}
function timer() {
if (counter8 > 0) {
counter8--;
txtTime8.text = counter8;
} else {
_global.score = _global.score + (10 * found);
clearInterval(id);
_root.win = false;
_root.gotoAndStop("gameOver");
}
if (found == 10) {
_global.score = _global.score + ((10 * found) + (5 * counter8));
clearInterval(id);
_root.win = true;
id = setInterval(this, "nextLevel", 3000);
}
}
function nextLevel() {
clearInterval(id);
_root.gotoAndStop("level8a");
}
var id;
var counter8 = 150;
var found = 0;
var trainMC;
plane.useHandCursor = false;
inverter.useHandCursor = false;
hand.useHandCursor = false;
can.useHandCursor = false;
generator.useHandCursor = false;
fan.useHandCursor = false;
sling.useHandCursor = false;
switch8.useHandCursor = false;
pencil.useHandCursor = false;
convayorBelt.useHandCursor = false;
backGround8.useHandCursor = false;
var hintCnt = 0;
btnHint.onRelease = function () {
counter8 = counter8 - 3;
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
hintCnt++;
plane.filters = _global.filterArray;
inverter.filters = _global.filterArray;
hand.filters = _global.filterArray;
can.filters = _global.filterArray;
generator.filters = _global.filterArray;
fan.filters = _global.filterArray;
sling.filters = _global.filterArray;
pencil.filters = _global.filterArray;
switch8.filters = _global.filterArray;
convayorBelt.filters = _global.filterArray;
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
};
backGround8.onPress = function () {
trace(counter8);
counter8 = counter8 - 3;
trace(counter8);
};
convayorBelt.onPress = function () {
convayorBelt.enabled = false;
convayorBelt.gotoAndPlay("start");
txtConvayerBelt._visible = false;
found++;
};
pencil.onPress = function () {
pencil.enabled = false;
pencil.gotoAndPlay("start");
txtPencil._visible = false;
found++;
};
switch8.onPress = function () {
switch8.enabled = false;
switch8.gotoAndPlay("start");
txtSwitch8._visible = false;
found++;
};
plane.onPress = function () {
plane.enabled = false;
plane.gotoAndPlay("start");
txtPlane._visible = false;
found++;
};
sling.onPress = function () {
sling.enabled = false;
sling.gotoAndPlay("start");
txtSling._visible = false;
found++;
};
inverter.onPress = function () {
inverter.enabled = false;
inverter.gotoAndPlay("start");
txtInverter._visible = false;
found++;
};
can.onPress = function () {
can.enabled = false;
can.gotoAndPlay("start");
txtCan._visible = false;
found++;
};
hand.onPress = function () {
hand.enabled = false;
hand.gotoAndPlay("start");
txtHand._visible = false;
found++;
};
fan.onPress = function () {
fan.enabled = false;
fan.gotoAndPlay("start");
txtFan._visible = false;
found++;
};
generator.onPress = function () {
generator.enabled = false;
generator.gotoAndPlay("start");
txtGenerator._visible = false;
found++;
};
this.onEnterFrame = function () {
if (_global.level != 8) {
id = setInterval(this, "timer", 900);
}
_global.level = 8;
};
_root.gotoAndStop("level8_");
stop();
Frame 40
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_root.gotoAndStop("level8b");
};
stop();
Frame 41
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("lblscore");
};
stop();
Frame 42
_global.sndLvl.setVolume(100);
btnNext.onRelease = function () {
_root.gotoAndStop("level9_");
};
this.stop();
Frame 43
function clearGlow() {
clearInterval(hintID);
var _local1 = new Array();
clown.filters = _local1;
strongMan.filters = _local1;
hammer.filters = _local1;
pop.filters = _local1;
popMachine.filters = _local1;
strongMachine.filters = _local1;
back9.merry.filters = _local1;
back9.wheel.filters = _local1;
back9.roller.filters = _local1;
back9.pole9.filters = _local1;
}
function timer() {
if (counter9 > 0) {
counter9--;
txtTime9.text = counter9;
} else {
_global.score = _global.score + (10 * found);
clearInterval(id);
_root.win = false;
_root.gotoAndStop("gameOver");
}
if (found == 10) {
_global.score = _global.score + ((10 * found) + (5 * counter9));
clearInterval(id);
_root.win = true;
id = setInterval(this, "nextLevel", 3000);
}
}
function nextLevel() {
clearInterval(id);
_root.gotoAndStop("level9a");
}
var id;
var counter9 = 165;
var found = 0;
var poleMC;
clown.useHandCursor = false;
strongMan.useHandCursor = false;
hammer.useHandCursor = false;
popMachine.useHandCursor = false;
pop.useHandCursor = false;
strongMachine.useHandCursor = false;
back9.wheel.useHandCursor = false;
back9.merry.useHandCursor = false;
back9.roller.useHandCursor = false;
back9.pole9.useHandCursor = false;
var hintCnt = 0;
btnHint.onRelease = function () {
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
counter9 = counter9 + 3;
hintCnt++;
clown.filters = _global.filterArray;
strongMan.filters = _global.filterArray;
hammer.filters = _global.filterArray;
popMachine.filters = _global.filterArray;
pop.filters = _global.filterArray;
strongMachine.filters = _global.filterArray;
back9.wheel.filters = _global.filterArray;
back9.merry.filters = _global.filterArray;
back9.roller.filters = _global.filterArray;
back9.pole9.filters = _global.filterArray;
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
};
this.onMouseDown = function () {
trace(counter9);
counter9 = counter9 - 3;
trace(counter9);
};
back9.pole9.onPress = function () {
counter9 = counter9 + 3;
var _local2 = back9.pole9.getNextHighestDepth();
var mc = back9.pole9.duplicateMovieClip("mc" + _local2, _local2);
back9.pole9._visible = false;
mc.enabled = false;
var _local4 = new mx.transitions.Tween(mc, "_xscale", mx.transitions.easing.Strong.easeOut, mc._xscale, 100, 2, true);
_local4 = new mx.transitions.Tween(mc, "_yscale", mx.transitions.easing.Strong.easeOut, mc._yscale, 100, 2, true);
_local4.onMotionFinished = function () {
var _local2 = new mx.transitions.Tween(mc, "_x", mx.transitions.easing.Elastic.easeOut, mc._x, Stage.width - mc._width, 0.5, true);
_global.sndBoing.start();
_local2.onMotionFinished = function () {
mc._visible = false;
};
};
txtPole9._visible = false;
found++;
};
back9.roller.onPress = function () {
counter9 = counter9 + 3;
var _local2 = back9.roller.getNextHighestDepth();
var mc = back9.roller.duplicateMovieClip("mc" + _local2, _local2);
back9.roller._visible = false;
mc.enabled = false;
var _local4 = new mx.transitions.Tween(mc, "_xscale", mx.transitions.easing.Strong.easeOut, mc._xscale, 150, 2, true);
_local4 = new mx.transitions.Tween(mc, "_yscale", mx.transitions.easing.Strong.easeOut, mc._yscale, 150, 2, true);
_local4.onMotionFinished = function () {
var _local2 = new mx.transitions.Tween(mc, "_x", mx.transitions.easing.Elastic.easeOut, mc._x, Stage.width - mc._width, 0.5, true);
_global.sndBoing.start();
_local2.onMotionFinished = function () {
mc._visible = false;
};
};
txtRoller._visible = false;
found++;
};
back9.merry.onPress = function () {
counter9 = counter9 + 3;
var _local2 = back9.merry.getNextHighestDepth();
var mc = back9.merry.duplicateMovieClip("mc" + _local2, _local2);
back9.merry._visible = false;
mc.enabled = false;
var _local4 = new mx.transitions.Tween(mc, "_xscale", mx.transitions.easing.Strong.easeOut, mc._xscale, 70, 2, true);
_local4 = new mx.transitions.Tween(mc, "_yscale", mx.transitions.easing.Strong.easeOut, mc._yscale, 70, 2, true);
_local4.onMotionFinished = function () {
var _local2 = new mx.transitions.Tween(mc, "_x", mx.transitions.easing.Elastic.easeOut, mc._x, Stage.width - mc._width, 0.5, true);
_global.sndBoing.start();
_local2.onMotionFinished = function () {
mc._visible = false;
};
};
txtMerry._visible = false;
found++;
};
back9.wheel.onPress = function () {
counter9 = counter9 + 3;
var _local2 = back9.wheel.getNextHighestDepth();
var mc = back9.wheel.duplicateMovieClip("mc" + _local2, _local2);
back9.wheel._visible = false;
mc.enabled = false;
var _local6 = mc._width;
var _local5 = mc._height;
var _local4 = new mx.transitions.Tween(mc, "_width", mx.transitions.easing.Strong.easeOut, mc._width, _local6 * 3, 2, true);
_local4 = new mx.transitions.Tween(mc, "_height", mx.transitions.easing.Strong.easeOut, mc._height, _local5 * 3, 2, true);
_local4.onMotionFinished = function () {
var _local2 = new mx.transitions.Tween(mc, "_x", mx.transitions.easing.Elastic.easeOut, mc._x, Stage.width - mc._width, 0.5, true);
_global.sndBoing.start();
_local2.onMotionFinished = function () {
mc._visible = false;
};
};
txtWheel._visible = false;
found++;
};
extinguisher.onPress = function () {
counter9 = counter9 + 3;
extinguisher.enabled = false;
extinguisher.gotoAndPlay("start");
txtExtinguisher._visible = false;
found++;
};
popMachine.onPress = function () {
counter9 = counter9 + 3;
popMachine.enabled = false;
popMachine.gotoAndPlay("start");
txtPopMachine._visible = false;
found++;
};
pop.onPress = function () {
counter9 = counter9 + 3;
pop.enabled = false;
pop.gotoAndPlay("start");
txtPop._visible = false;
found++;
};
strongMachine.onPress = function () {
counter9 = counter9 + 3;
strongMachine.enabled = false;
strongMachine.gotoAndPlay("start");
txtStrongMachine._visible = false;
found++;
};
clown.onPress = function () {
counter9 = counter9 + 3;
clown.enabled = false;
clown.gotoAndPlay("start");
txtClown._visible = false;
found++;
};
hammer.onPress = function () {
counter9 = counter9 + 3;
hammer.enabled = false;
hammer.gotoAndPlay("start");
txtHammer._visible = false;
found++;
};
strongMan.onPress = function () {
counter9 = counter9 + 3;
strongMan.enabled = false;
strongMan.gotoAndPlay("start");
txtStrongMan._visible = false;
found++;
};
this.onEnterFrame = function () {
if (_global.level != 9) {
id = setInterval(this, "timer", 900);
}
_global.level = 9;
};
_root.gotoAndStop("level9_");
stop();
Frame 44
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_root.gotoAndStop("level9b");
};
stop();
Frame 45
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_root.gotoAndStop("lblscore");
};
stop();
Frame 46
_global.sndLvl.setVolume(100);
btnNext.onRelease = function () {
_root.gotoAndStop("level10_");
};
this.stop();
Frame 47
function clearGlow() {
clearInterval(hintID);
var _local1 = new Array();
dozer.filters = _local1;
car10.filters = _local1;
bomb10.filters = _local1;
missile.filters = _local1;
gen.filters = _local1;
robo.filters = _local1;
pole10.filters = _local1;
cow.filters = _local1;
dung.filters = _local1;
claw.filters = _local1;
rod.filters = _local1;
machine10.filters = _local1;
}
function timer() {
if (counter10 > 0) {
counter10--;
txtTime10.text = counter10;
} else {
_global.score = _global.score + (10 * found);
clearInterval(id);
_root.win = false;
_root.gotoAndStop("gameOver");
}
if (found == 12) {
_global.score = _global.score + ((10 * found) + (5 * counter10));
clearInterval(id);
_root.win = true;
id2 = setInterval(this, "nextLevel", 3000);
}
}
function nextLevel() {
clearInterval(id2);
trace("oops");
_root.gotoAndStop("level10a");
}
var id;
var counter10 = 150;
var found = 0;
dozer.useHandCursor = false;
car10.useHandCursor = false;
bomb10.useHandCursor = false;
missile.useHandCursor = false;
gen.useHandCursor = false;
robo.useHandCursor = false;
pole10.useHandCursor = false;
cow.useHandCursor = false;
dung.useHandCursor = false;
machine10.useHandCursor = false;
claw.useHandCursor = false;
rod.useHandCursor = false;
backGround10.useHandCursor = false;
handHit.visible = false;
claw.hitArea = handHit;
var hintCnt = 0;
btnHint.onRelease = function () {
counter10 = counter10 - 3;
if (hintCnt > 2) {
btnHint.useHandCursor = false;
return(undefined);
}
hintCnt++;
dozer.filters = _global.filterArray;
car10.filters = _global.filterArray;
bomb10.filters = _global.filterArray;
missile.filters = _global.filterArray;
robo.filters = _global.filterArray;
gen.filters = _global.filterArray;
pole10.filters = _global.filterArray;
cow.filters = _global.filterArray;
dung.filters = _global.filterArray;
claw.filters = _global.filterArray;
rod.filters = _global.filterArray;
machine10.filters = _global.filterArray;
clearInterval(hintID);
hintID = setInterval(this._parent, "clearGlow", 900);
};
backGround10.onPress = function () {
trace(counter10);
counter10 = counter10 - 3;
trace(counter10);
};
claw.onPress = function () {
claw.enabled = false;
claw.gotoAndPlay("start");
txtClaw._visible = false;
found++;
};
rod.onPress = function () {
rod.enabled = false;
rod.gotoAndPlay("start");
txtRod._visible = false;
found++;
};
machine10.onPress = function () {
machine10.enabled = false;
machine10.gotoAndPlay("start");
txtMachine10._visible = false;
found++;
};
dung.onPress = function () {
dung.enabled = false;
dung.gotoAndPlay("start");
txtDung._visible = false;
found++;
};
cow.onPress = function () {
cow.enabled = false;
cow.gotoAndPlay("start");
txtCow._visible = false;
found++;
};
dozer.onPress = function () {
dozer.enabled = false;
dozer.gotoAndPlay("start");
txtDozer._visible = false;
found++;
};
pole10.onPress = function () {
pole10.enabled = false;
pole10.gotoAndPlay("start");
txtPole10._visible = false;
found++;
};
car10.onPress = function () {
car10.enabled = false;
car10.gotoAndPlay("start");
txtCar10._visible = false;
found++;
};
missile.onPress = function () {
missile.enabled = false;
missile.gotoAndPlay("start");
txtMissile._visible = false;
found++;
};
bomb10.onPress = function () {
bomb10.enabled = false;
bomb10.gotoAndPlay("start");
txtBomb10._visible = false;
found++;
};
robo.onPress = function () {
robo.enabled = false;
robo.gotoAndPlay("start");
txtRobo._visible = false;
found++;
};
gen.onPress = function () {
gen.enabled = false;
gen.gotoAndPlay("start");
txtGen._visible = false;
found++;
};
this.onEnterFrame = function () {
if (_global.level != 10) {
id = setInterval(this, "timer", 900);
}
_global.level = 10;
};
_root.gotoAndStop("level10_");
stop();
Frame 48
_global.sndLvl.stop();
_global.sndScrible.start();
btnNext.onRelease = function () {
_root.gotoAndStop("level10b");
};
stop();
Frame 49
btnNext.onRelease = function () {
_global.sndScrible.stop();
_global.sndLvl.start(0, 999);
_global.gameWon = 1;
_root.gotoAndStop("winScreen");
};
_root.gotoAndStop("level10b");
stop();
Frame 50
btnNext.onRelease = function () {
_global.gameWon = 1;
_root.gotoAndStop("gameOver");
};
stop();
Frame 51
btnPlayagain.onRelease = function () {
if (_global.gameWon == 1) {
_root._playAgain(_root, "lblgame");
return(undefined);
}
if (!win) {
_global.level--;
}
mystr = ("level" + (_global.level + 1)) + "_";
_root._playAgain(_root, mystr);
};
stop();
Selection.setFocus("username_txt");
username_txt.onSetFocus = function () {
if (username_txt.text == "Invalid Nickname!") {
username_txt.text = "";
}
};
Frame 52
stop();
Frame 53
btnPlayagain.onRelease = function () {
_root._playAgain(_root, "lblgame");
};
_root.displayScores(this);
stop();
Symbol 1256 MovieClip [__Packages.mx.transitions.OnEnterFrameBeacon] Frame 0
class mx.transitions.OnEnterFrameBeacon
{
function OnEnterFrameBeacon () {
}
static function init() {
var _local4 = _global.MovieClip;
if (!_root.__OnEnterFrameBeacon) {
mx.transitions.BroadcasterMX.initialize(_local4);
var _local3 = _root.createEmptyMovieClip("__OnEnterFrameBeacon", 9876);
_local3.onEnterFrame = function () {
_global.MovieClip.broadcastMessage("onEnterFrame");
};
}
}
static var version = "1.1.0.52";
}
Symbol 1257 MovieClip [__Packages.mx.transitions.BroadcasterMX] Frame 0
class mx.transitions.BroadcasterMX
{
var _listeners;
function BroadcasterMX () {
}
static function initialize(o, dontCreateArray) {
if (o.broadcastMessage != undefined) {
delete o.broadcastMessage;
}
o.addListener = mx.transitions.BroadcasterMX.prototype.addListener;
o.removeListener = mx.transitions.BroadcasterMX.prototype.removeListener;
if (!dontCreateArray) {
o._listeners = new Array();
}
}
function addListener(o) {
removeListener(o);
if (broadcastMessage == undefined) {
broadcastMessage = mx.transitions.BroadcasterMX.prototype.broadcastMessage;
}
return(_listeners.push(o));
}
function removeListener(o) {
var _local2 = _listeners;
var _local3 = _local2.length;
while (_local3--) {
if (_local2[_local3] == o) {
_local2.splice(_local3, 1);
if (!_local2.length) {
broadcastMessage = undefined;
}
return(true);
}
}
return(false);
}
function broadcastMessage() {
var _local5 = String(arguments.shift());
var _local4 = _listeners.concat();
var _local6 = _local4.length;
var _local3 = 0;
while (_local3 < _local6) {
_local4[_local3][_local5].apply(_local4[_local3], arguments);
_local3++;
}
}
static var version = "1.1.0.52";
}
Symbol 1258 MovieClip [__Packages.mx.transitions.Tween] Frame 0
class mx.transitions.Tween
{
var obj, prop, begin, useSeconds, _listeners, addListener, prevTime, _time, looping, _duration, broadcastMessage, isPlaying, _fps, prevPos, _pos, change, _intervalID, _startTime;
function Tween (obj, prop, func, begin, finish, duration, useSeconds) {
mx.transitions.OnEnterFrameBeacon.init();
if (!arguments.length) {
return;
}
this.obj = obj;
this.prop = prop;
this.begin = begin;
position = (begin);
this.duration = (duration);
this.useSeconds = useSeconds;
if (func) {
this.func = func;
}
this.finish = (finish);
_listeners = [];
addListener(this);
start();
}
function set time(t) {
prevTime = _time;
if (t > duration) {
if (looping) {
rewind(t - _duration);
update();
broadcastMessage("onMotionLooped", this);
} else {
if (useSeconds) {
_time = _duration;
update();
}
stop();
broadcastMessage("onMotionFinished", this);
}
} else if (t < 0) {
rewind();
update();
} else {
_time = t;
update();
}
//return(time);
}
function get time() {
return(_time);
}
function set duration(d) {
_duration = (((d == null) || (d <= 0)) ? (_global.Infinity) : (d));
//return(duration);
}
function get duration() {
return(_duration);
}
function set FPS(fps) {
var _local2 = isPlaying;
stopEnterFrame();
_fps = fps;
if (_local2) {
startEnterFrame();
}
//return(FPS);
}
function get FPS() {
return(_fps);
}
function set position(p) {
setPosition(p);
//return(position);
}
function setPosition(p) {
prevPos = _pos;
obj[prop] = (_pos = p);
broadcastMessage("onMotionChanged", this, _pos);
updateAfterEvent();
}
function get position() {
return(getPosition());
}
function getPosition(t) {
if (t == undefined) {
t = _time;
}
return(func(t, begin, change, _duration));
}
function set finish(f) {
change = f - begin;
//return(finish);
}
function get finish() {
return(begin + change);
}
function continueTo(finish, duration) {
begin = position;
this.finish = (finish);
if (duration != undefined) {
this.duration = (duration);
}
start();
}
function yoyo() {
continueTo(begin, time);
}
function startEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.addListener(this);
} else {
_intervalID = setInterval(this, "onEnterFrame", 1000 / _fps);
}
isPlaying = true;
}
function stopEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.removeListener(this);
} else {
clearInterval(_intervalID);
}
isPlaying = false;
}
function start() {
rewind();
startEnterFrame();
broadcastMessage("onMotionStarted", this);
}
function stop() {
stopEnterFrame();
broadcastMessage("onMotionStopped", this);
}
function resume() {
fixTime();
startEnterFrame();
broadcastMessage("onMotionResumed", this);
}
function rewind(t) {
_time = ((t == undefined) ? 0 : (t));
fixTime();
update();
}
function fforward() {
time = (_duration);
fixTime();
}
function nextFrame() {
if (useSeconds) {
time = ((getTimer() - _startTime) / 1000);
} else {
time = (_time + 1);
}
}
function onEnterFrame() {
nextFrame();
}
function prevFrame() {
if (!useSeconds) {
time = (_time - 1);
}
}
function toString() {
return("[Tween]");
}
function fixTime() {
if (useSeconds) {
_startTime = getTimer() - (_time * 1000);
}
}
function update() {
position = (getPosition(_time));
}
static var version = "1.1.0.52";
static var __initBeacon = mx.transitions.OnEnterFrameBeacon.init();
static var __initBroadcaster = mx.transitions.BroadcasterMX.initialize(mx.transitions.Tween.prototype, true);
function func(t, b, c, d) {
return(((c * t) / d) + b);
}
}
Symbol 1259 MovieClip [__Packages.mx.transitions.easing.Elastic] Frame 0
class mx.transitions.easing.Elastic
{
function Elastic () {
}
static function easeIn(t, b, c, d, a, p) {
if (t == 0) {
return(b);
}
t = t / d;
if (t == 1) {
return(b + c);
}
if (!p) {
p = d * 0.3;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
var _local7 = p / 4;
} else {
var _local7 = (p / (Math.PI*2)) * Math.asin(c / a);
}
t = t - 1;
return((-((a * Math.pow(2, 10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p))) + b);
}
static function easeOut(t, b, c, d, a, p) {
if (t == 0) {
return(b);
}
t = t / d;
if (t == 1) {
return(b + c);
}
if (!p) {
p = d * 0.3;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
var _local7 = p / 4;
} else {
var _local7 = (p / (Math.PI*2)) * Math.asin(c / a);
}
return((((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p)) + c) + b);
}
static function easeInOut(t, b, c, d, a, p) {
if (t == 0) {
return(b);
}
t = t / (d / 2);
if (t == 2) {
return(b + c);
}
if (!p) {
p = d * 0.45;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
var _local7 = p / 4;
} else {
var _local7 = (p / (Math.PI*2)) * Math.asin(c / a);
}
if (t < 1) {
t = t - 1;
return((-0.5 * ((a * Math.pow(2, 10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p))) + b);
}
t = t - 1;
return(((((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p)) * 0.5) + c) + b);
}
static var version = "1.1.0.52";
}
Symbol 1260 MovieClip [__Packages.mx.transitions.easing.Strong] Frame 0
class mx.transitions.easing.Strong
{
function Strong () {
}
static function easeIn(t, b, c, d) {
t = t / d;
return((((((c * t) * t) * t) * t) * t) + b);
}
static function easeOut(t, b, c, d) {
t = (t / d) - 1;
return((c * (((((t * t) * t) * t) * t) + 1)) + b);
}
static function easeInOut(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return(((((((c / 2) * t) * t) * t) * t) * t) + b);
}
t = t - 2;
return(((c / 2) * (((((t * t) * t) * t) * t) + 2)) + b);
}
static var version = "1.1.0.52";
}
Symbol 10 MovieClip Frame 51
stop();
_root.gotoAndPlay("loading");
Symbol 48 MovieClip Frame 1
_root._trackClickThru(this);
Symbol 163 MovieClip Frame 1
_global.sndIntro.start();
Symbol 163 MovieClip Frame 263
_global.sndIntro.stop();
_global.sndLvl.start();
_root.gotoAndStop("dummy");
Symbol 170 MovieClip Frame 1
stop();
_global.sndBoing.setVolume(100);
_global.sndTic.setVolume(50);
_global.sndLvl.setVolume(100);
Symbol 170 MovieClip Frame 2
stop();
_global.sndBoing.setVolume(0);
_global.sndTic.setVolume(0);
_global.sndLvl.setVolume(0);
Symbol 235 MovieClip Frame 1
stop();
Symbol 235 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 238 MovieClip Frame 1
stop();
Symbol 238 MovieClip Frame 41
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 259 MovieClip Frame 1
stop();
Symbol 259 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 276 MovieClip Frame 186
stop();
Symbol 287 MovieClip Frame 1
stop();
Symbol 287 MovieClip Frame 40
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 349 MovieClip Frame 1
stop();
Symbol 349 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 352 MovieClip Frame 1
stop();
Symbol 352 MovieClip Frame 41
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 361 MovieClip Frame 1
stop();
Symbol 361 MovieClip Frame 41
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - 10, 1.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 364 MovieClip Frame 1
stop();
Symbol 364 MovieClip Frame 41
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 367 MovieClip Frame 1
stop();
Symbol 367 MovieClip Frame 42
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 383 MovieClip Frame 100
stop();
Symbol 401 MovieClip Frame 1
stop();
Symbol 401 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 406 MovieClip Frame 1
stop();
Symbol 406 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 411 MovieClip Frame 1
stop();
Symbol 411 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - 10, 1.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 414 MovieClip Frame 1
stop();
Symbol 414 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 417 MovieClip Frame 1
stop();
Symbol 417 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 420 MovieClip Frame 1
stop();
Symbol 420 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 443 MovieClip Frame 189
stop();
Symbol 503 MovieClip Frame 1
stop();
Symbol 503 MovieClip Frame 38
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 504 MovieClip Frame 1
stop();
Symbol 504 MovieClip Frame 43
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 510 MovieClip Frame 1
stop();
Symbol 510 MovieClip Frame 42
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 511 MovieClip Frame 1
stop();
Symbol 511 MovieClip Frame 43
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 514 MovieClip Frame 1
stop();
Symbol 514 MovieClip Frame 40
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 529 MovieClip Frame 1
stop();
Symbol 529 MovieClip Frame 40
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 532 MovieClip Frame 1
stop();
Symbol 532 MovieClip Frame 41
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 534 MovieClip Frame 1
stop();
Symbol 534 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 546 MovieClip Frame 203
stop();
Symbol 561 MovieClip Frame 1
stop();
Symbol 561 MovieClip Frame 43
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 564 MovieClip Frame 1
stop();
Symbol 564 MovieClip Frame 40
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 569 MovieClip Frame 1
stop();
Symbol 569 MovieClip Frame 41
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 572 MovieClip Frame 1
stop();
Symbol 572 MovieClip Frame 43
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 574 MovieClip Frame 1
stop();
Symbol 574 MovieClip Frame 43
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 578 MovieClip Frame 1
stop();
Symbol 578 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 581 MovieClip Frame 1
stop();
Symbol 581 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 611 MovieClip Frame 235
stop();
Symbol 623 MovieClip Frame 175
stop();
Symbol 701 MovieClip Frame 1
stop();
Symbol 701 MovieClip Frame 43
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 707 MovieClip Frame 1
stop();
Symbol 707 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - 30, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 710 MovieClip Frame 1
stop();
Symbol 710 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 714 MovieClip Frame 1
stop();
Symbol 714 MovieClip Frame 44
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 718 MovieClip Frame 1
stop();
Symbol 718 MovieClip Frame 43
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 723 MovieClip Frame 1
stop();
Symbol 723 MovieClip Frame 43
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 727 MovieClip Frame 1
stop();
Symbol 727 MovieClip Frame 44
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 756 MovieClip Frame 204
stop();
Symbol 764 MovieClip Frame 95
stop();
Symbol 816 MovieClip Frame 1
stop();
Symbol 816 MovieClip Frame 44
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 817 MovieClip Frame 1
stop();
Symbol 817 MovieClip Frame 40
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 821 MovieClip Frame 1
stop();
Symbol 821 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 824 MovieClip Frame 1
stop();
Symbol 824 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 826 MovieClip Frame 1
stop();
Symbol 826 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 829 MovieClip Frame 1
stop();
Symbol 829 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 832 MovieClip Frame 1
stop();
Symbol 832 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 835 MovieClip Frame 1
stop();
Symbol 835 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 863 MovieClip Frame 178
stop();
Symbol 872 MovieClip Frame 95
stop();
Symbol 923 MovieClip Frame 1
stop();
Symbol 923 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 926 MovieClip Frame 1
stop();
Symbol 926 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 930 MovieClip Frame 1
stop();
Symbol 930 MovieClip Frame 44
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 933 MovieClip Frame 1
stop();
Symbol 933 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 936 MovieClip Frame 1
stop();
Symbol 936 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 939 MovieClip Frame 1
stop();
Symbol 939 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 941 MovieClip Frame 1
stop();
Symbol 941 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 944 MovieClip Frame 1
stop();
Symbol 944 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 978 MovieClip Frame 176
stop();
Symbol 988 MovieClip Frame 165
stop();
Symbol 1025 MovieClip Frame 1
stop();
Symbol 1025 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1030 MovieClip Frame 1
stop();
Symbol 1030 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1033 MovieClip Frame 1
stop();
Symbol 1033 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1036 MovieClip Frame 1
stop();
Symbol 1036 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1039 MovieClip Frame 1
stop();
Symbol 1039 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - 30, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1042 MovieClip Frame 1
stop();
Symbol 1042 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1078 MovieClip Frame 202
stop();
Symbol 1085 MovieClip Frame 83
stop();
Symbol 1116 MovieClip Frame 1
stop();
Symbol 1116 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1118 MovieClip Frame 1
stop();
Symbol 1118 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1120 MovieClip Frame 1
stop();
Symbol 1120 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1122 MovieClip Frame 1
stop();
Symbol 1122 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1125 MovieClip Frame 1
stop();
Symbol 1125 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1128 MovieClip Frame 1
stop();
Symbol 1128 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1130 MovieClip Frame 1
stop();
Symbol 1130 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1162 MovieClip Frame 1
stop();
Symbol 1162 MovieClip Frame 45
var mc = this;
var myTween = (new mx.transitions.Tween(this, "_x", mx.transitions.easing.Elastic.easeOut, this._x, Stage.width - this._width, 0.5, true));
_global.sndBoing.start();
myTween.onMotionFinished = function () {
mc._visible = false;
};
Symbol 1177 MovieClip Frame 208
stop();
Symbol 1190 MovieClip Frame 208
stop();
Symbol 1200 Button
on (release) {
trace((((_global.score + " ") + _root._gameid) + " ") + _root.uname);
_root.dataSubmit(_root.uname, _global.score, _root._gameid, _root, "gameOver", "connecting", "highScores");
}
Symbol 1205 Button
on (release) {
_root._newUser();
}
Symbol 1219 Button
on (release) {
_root.cancelSubmit(_root, "gameOver");
}