STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228070
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/94856322?noj=FRM94856322-28DC" width="1" height="1"></div>

dora_starcatching_12_fps.exe_2.swf

This is the info page for
Flash #234888

(Click the ID number above for more basic data on this flash file.)


Text
© 2003 Viacom International Inc. All rights reserved.

ActionScript [AS1/AS2]

Frame 1
Frame 36
stop();
Frame 38
var mySound = new Sound(); var dSound = new Sound(); mySound.attachSound("theme"); mySound.start(0, 999);
Frame 324
stop();
Frame 693
function moveAll() { var l = allStars.length; var i = 0; while (i < l) { if (allStars[i]._name != "special") { allStars[i].swapPos(); } allStars[i].startMoving(); i++; } } function moveAllSpecial() { var l = allStars.length; var i = 0; while (i < l) { allStars[i].startMoving(); i++; } } function stopAll() { var l = allStars.length; var i = 0; while (i < l) { allStars[i].onEnterFrame = null; i++; } clearInterval(motion); clearInterval(opening); clearInterval(closing); } function dissolveAll() { var l = allStars.length; var i = 0; while (i < l) { allStars[i].onEnterFrame = allStars[i].fadeOut; i++; } } function speedAll() { var l = allStars.length; var i = 0; while (i < l) { if (allStars[i]._name != "special") { allStars[i].speed = allStars[i].speed * 1.2; } i++; } } function createGateChoices() { gateChoices = new Array(totalStars); slots = new Array(totalStars); var i = 0; while (i < slots.length) { slots[i] = i; i++; } var i = 0; while (i < 3) { var rand = mf(mr() * slots.length); var loc = slots[rand]; gateChoices[loc] = i + 1; slots.splice(rand, 1); i++; } var i = 0; while (i < slots.length) { var loc = slots[i]; gateChoices[loc] = mf(mr() * 3) + 1; i++; } } function createStars(myShape) { myArray = eval (myShape + "Array"); if (myShape == "circle") { circlePos = 0; } if (myShape == "wave") { baseAngle = 0; } if (myShape == "backAndForth") { wInc = 100; hInc = 70; xOffset = 160; yOffset = 80; outer = 0; inner = 0; dir = 1; } var i = 0; while (i < totalStars) { var rand = gateChoices[i]; addGates(rand); a = this.attachMovie("star" + rand, "s" + i, i + 2, {pattern:myShape, level:i + 2, gateNumber:rand}); switch (myShape) { case "square" : ia = eval (myShape + "Init"); a.speed = 4; a._x = ia[i].x; a._y = ia[i].y; a.posx = myArray[i].x; a.posy = myArray[i].y; break; case "hex" : ia = eval (myShape + "Init"); a.speed = 4; a._x = ia[i].x; a._y = ia[i].y; a.posx = myArray[i].x; a.posy = myArray[i].y; break; case "circle" : a.cp = circlePos; a.speed = 1; a._x = (mc((this.cp / 180) * mp) * 90) + centerX; a._y = (ms((this.cp / 180) * mp) * 90) + centerY; circlePos = circlePos + 45; break; case "etoile" : a.speed = 3; a._x = centerX; a._y = centerY; a.posx = myArray[i].x; a.posy = myArray[i].y; a._xscale = (a._yscale = 10); break; case "wave" : a.speed = 1; a._x = i * 65; baseAngle = baseAngle + 0.65; a.angleX = baseAngle; break; case "backAndForth" : a.speed = 3; a._x = (inner * wInc) + xOffset; a._y = (outer * hInc) + yOffset; a.lBound = (inner * wInc) + 40; a.rBound = (inner * wInc) + 280; a.dir = dir; inner++; if (inner != 3) { break; } inner = 0; outer++; dir = dir * (-1); } allStars.push(a); a.startMoving(); i++; } } function createSpecialStar(num, s, pa, name, lev) { var b = this.attachMovie("star" + num, name, lev, {level:lev, speed:s, po:1, pattern:pa, so:num - 4}); if (pa == "fadeIn") { b._x = mf(mr() * 450) + 20; b._y = mf(mr() * 205) + 20; } else if (pa == "funny") { b.funnyFor = 1; b._x = fPoints[0].x; b._y = fPoints[0].y; b.posx = fPoints[1].x; b.posy = fPoints[1].y; } else if (pa == "woo") { b._x = wPoints[0].x; b._y = wPoints[0].y; b.posx = wPoints[1].x; b.posy = wPoints[1].y; } else if (pa == "robusto") { b._x = rPoints[0].x; b._y = rPoints[0].y; b.posx = rPoints[1].x; b.posy = rPoints[1].y; } else if ((pa == "f8") || (pa == "oval")) { b.cp = 0; } allStars.push(b); b.startMoving(); } function specialStars() { if (specialArray.length == 0) { specialArray = [0, 1, 2, 3, 4, 5]; } var rand = mf(mr() * specialArray.length); whichSpecial = specialArray[rand]; var temp = specialArray.splice(rand, 1); switch (whichSpecial) { case 0 : createSpecialStar(4, 5, "fadeIn", "special", 50); return; case 1 : createSpecialStar(5, 5, "f8", "special", 50); return; case 2 : createSpecialStar(6, 5, "oval", "special", 50); return; case 3 : createSpecialStar(7, 8, "funny", "special", 50); return; case 4 : createSpecialStar(8, 5, "robusto", "special", 50); return; case 5 : createSpecialStar(9, 5, "woo", "special", 50); } } function specialBonus() { totalStars = 5; createSpecialStar(4, 5, "fadeIn", "sp1", 1); createSpecialStar(5, 5, "f8", "sp2", 2); createSpecialStar(6, 5, "oval", "sp3", 3); createSpecialStar(7, 8, "funny", "sp4", 4); createSpecialStar(8, 5, "robusto", "sp5", 5); createSpecialStar(9, 5, "woo", "sp6", 6); } function createStars1() { if (levelNumber < 4) { if (shapeArray1.length == 0) { shapeArray1 = [0, 1, 2]; } levelBonus = false; var rand = mf(mr() * shapeArray1.length); var whichShape = shapeArray1[rand]; var temp = shapeArray1.splice(rand, 1); switch (whichShape) { case 0 : totalStars = 6; createGateChoices(); createStars("square"); break; case 1 : totalStars = 6; createGateChoices(); createStars("hex"); break; case 2 : totalStars = 6; createGateChoices(); createStars("backAndForth"); } specialStars(); } else { levelNumber = 0; levelBonus = true; specialBonus(); } } function createStars2() { if (levelNumber < 4) { if (shapeArray2.length == 0) { shapeArray2 = [2, 3, 4]; } levelBonus = false; var rand = mf(mr() * shapeArray2.length); var whichShape = shapeArray2[rand]; var temp = shapeArray2.splice(rand, 1); switch (whichShape) { case 2 : totalStars = 8; createGateChoices(); createStars("circle"); break; case 3 : totalStars = 10; createGateChoices(); createStars("etoile"); break; case 4 : totalStars = 10; createGateChoices(); createStars("wave"); } specialStars(); } else { levelNumber = 0; levelBonus = true; specialBonus(); } } function scoreBarValues(num) { barw = num * 40; switch (num) { case 5 : max = 5; mid = 2; initx = 145; return; case 6 : max = 5; mid = 2; initx = 125; return; case 8 : max = 6; mid = 3; initx = 84; return; case 10 : max = 7; mid = 3; initx = 47; } } function addGates(num) { switch (num) { case 1 : g1++; return; case 2 : g2++; return; case 3 : g3++; } } function reduceGates(num) { switch (num) { case 1 : g1--; if (g1 == 0) { allGates.removeFromArray(num); } return; case 2 : g2--; if (g2 == 0) { allGates.removeFromArray(num); } return; case 3 : g3--; if (g3 != 0) { break; } allGates.removeFromArray(num); } } function openGate() { if (allGates.length > 0) { clearInterval(opening); randomGate = mf(mr() * allGates.length); newGate = allGates[randomGate]; _level0["gate" + newGate].gotoAndStop(2); oldGate = newGate; gateOpen = true; closing = setInterval(closeGate, 3000); } } function closeGate() { gateOpen = false; _level0["gate" + oldGate].gotoAndStop(1); _level0["gate" + oldGate].r._visible = false; clearInterval(closing); opening = setInterval(openGate, 1000); } function rainbows(state) { var i = 1; while (i < 4) { _level0["gate" + i].gotoAndStop(1); _level0["gate" + i].r._visible = state; i++; } } function testEndGame() { if (win != (totalStars + 1)) { speedAll(); motion = setInterval(moveAll, speedInc); opening = setInterval(openGate, 1000); } else { gameEnd(); } } function testEndGameSpecial() { if (win != (totalStars + 1)) { moveAllSpecial(); } else { gameEnd(); } } function wait() { a++; if (a > 15) { clearInterval(pausing); _level0.gotoAndPlay("scoring"); var i = 1; while (i < 4) { _level0["gate" + i].gotoAndStop(2); i++; } } } function gameEnd() { delete this.onMouseDown; delete clock.onEnterFrame; clearInterval(opening); clearInterval(closing); clearInterval(motion); dissolveAll(); removeMovieClip("hand"); getURL ("lingo:setCursor(-1)"); a = 0; pausing = setInterval(wait, 100); } function grabStars() { if (cursorFree) { z = allStars.length; var i = 0; while (i < z) { clip = allStars[i]; if (clip.hitTest(this._xmouse, this._ymouse, 1)) { if (clip._name != "special") { if (gateOpen) { cursorFree = false; stopAll(); clip.caught(); break; } } else { cursorFree = false; stopAll(); clip.caught(); break; } } i++; } } else { dt = eval (clip._droptarget); if ((((clip._name != "special") && (dt == _level0["gate" + clip.gateNumber])) && (oldGate == clip.gateNumber)) || ((clip._name == "special") && ((((((dt == _level0.gate1) || (dt == _level0.gate2)) || (dt == _level0.gate3)) || (dt == _level0.gate1.r)) || (dt == _level0.gate2.r)) || (dt == _level0.gate3.r)))) { if (clip._name != "special") { dt.gotoAndPlay("fill"); } else { d = String(dt).substring(0, 13); eval (d).gotoAndPlay("fillS"); } clip.captured(); win++; winArray.push(clip); testEndGame(); } else { clip.released(); } hand._visible = true; cursorFree = true; } updateAfterEvent(); } function grabSpecialStars() { if (cursorFree) { z = allStars.length; var i = 0; while (i < z) { clip = allStars[i]; if (clip.hitTest(this._xmouse, this._ymouse, 1)) { cursorFree = false; stopAll(); clip.caughtSpecial(); break; } i++; } } else { dt = eval (clip._droptarget); if ((((((dt == _level0.gate1) || (dt == _level0.gate2)) || (dt == _level0.gate3)) || (dt == _level0.gate1.r)) || (dt == _level0.gate2.r)) || (dt == _level0.gate3.r)) { d = String(dt).substring(0, 13); eval (d).gotoAndPlay("fillS"); clip.capturedSpecial(); win++; winArray.push(clip); testEndGameSpecial(); } else { clip.releasedSpecial(); } hand._visible = true; cursorFree = true; } updateAfterEvent(); } (_global.mr = Math.random); (_global.mf = Math.floor); (_global.ms = Math.sin); (_global.mc = Math.cos); (_global.mp = Math.PI); (_global.mq = Math.sqrt); var levelNumber = 0; var levelBonus = false; (centerX = 270); (centerY = 130); speedInc = 1500; shapeArray1 = [0, 1, 2]; shapeArray2 = [2, 3, 4]; specialArray = [0, 1, 2, 3, 4, 5]; etoileArray = [{x:270, y:40}, {x:228, y:83}, {x:174, y:109}, {x:203, y:161}, {x:211, y:220}, {x:270, y:210}, {x:328, y:220}, {x:336, y:161}, {x:365, y:109}, {x:311, y:83}]; hexArray = [{x:270, y:40}, {x:183, y:89}, {x:183, y:189}, {x:270, y:240}, {x:356, y:189}, {x:356, y:89}]; hexInit = [{x:270, y:-200}, {x:183, y:-169}, {x:183, y:-51}, {x:270, y:0}, {x:356, y:-50}, {x:356, y:-140}]; squareArray = [{x:170, y:80}, {x:270, y:80}, {x:370, y:80}, {x:370, y:180}, {x:270, y:180}, {x:170, y:180}]; squareInit = [{x:70, y:80}, {x:270, y:-20}, {x:470, y:80}, {x:470, y:180}, {x:270, y:280}, {x:70, y:180}, {x:-41, y:-21}, {x:158, y:120}]; wPoints = [{x:-41, y:-21}, {x:158, y:120}, {x:-41, y:-21}, {x:260, y:-40}, {x:260, y:110}, {x:260, y:-40}, {x:533, y:-38}, {x:384, y:125}, {x:533, y:-38}, {x:601, y:160}, {x:391, y:160}, {x:601, y:160}, {x:466, y:340}, {x:301, y:163}, {x:466, y:340}, {x:255, y:340}, {x:255, y:196}, {x:255, y:340}, {x:30, y:341}, {x:190, y:174}, {x:30, y:341}, {x:-41, y:165}, {x:117, y:165}, {x:-41, y:165}]; rPoints = [{x:40, y:30}, {x:500, y:40}, {x:45, y:210}, {x:475, y:198}]; fPoints = [{x:35, y:41}, {x:80, y:310}, {x:110, y:49}, {x:163, y:303}, {x:183, y:37}, {x:248, y:286}, {x:263, y:27}, {x:312, y:307}, {x:351, y:36}, {x:420, y:298}, {x:441, y:47}]; Array.prototype.removeFromArray = function (element) { var i = 0; while (i < this.length) { if ((this[i] == eval (element)) || (this[i] == element)) { var temp = this.splice(i, 1); return(i); } i++; } }; _global.Shape = function () { }; _global.Shape.prototype = new MovieClip(); var s = _global.Shape.prototype; s.onLoad = function () { this.stop(); }; s.startMoving = function () { this.onEnterFrame = eval ("this." + this.pattern); }; s.circle = function () { this._x = (mc((this.cp / 180) * mp) * 90) + centerX; this._y = (ms((this.cp / 180) * mp) * 90) + centerY; this.cp = this.cp + this.speed; if (this.cp == 360) { this.cp = 0; } }; s.oval = function () { this._x = (mc((this.cp / 180) * mp) * 180) + centerX; this._y = (ms((this.cp / 180) * mp) * 60) + centerY; this._rotation = mc((this.cp / 180) * mp) * -20; this.cp = this.cp + this.speed; if (this.cp == 360) { this.cp = 0; } }; s.f8 = function () { this._x = (mc(this.cp / 100) * 200) + centerX; this._y = (ms(this.cp / 50) * 50) + centerY; this._rotation = mc((this.cp / 180) * mp) * 20; this.cp = this.cp + this.speed; if (this.cp <= 0) { this.cp = 360; } }; s.wave = function () { this.angleX = this.angleX + 0.05; this._x = this._x + this.speed; if (this._x > 620) { this._x = -20; } this._y = 125 + (Math.sin(this.angleX) * 70); }; s.backAndForth = function () { this._x = this._x + (this.speed * this.dir); if ((this._x >= this.rBound) || (this._x <= this.lBound)) { this.dir = this.dir * -1; } }; s.etoile = function () { if ((this._x != this.posx) || (this._y != this.posy)) { this.dX = this._x - this.posx; this.dY = this._y - this.posy; this.di = math.sqrt((this.dX * this.dX) + (this.dY * this.dY)); this.mX = this.speed * (this.dX / this.di); this.mY = this.speed * (this.dY / this.di); if (this.speed >= this.di) { this.onEnterFrame = null; if (this._xscale < 100) { this._xscale = (this._yscale = 100); } } else { this._x = this._x - this.mX; this._y = this._y - this.mY; if (this._xscale < 100) { this._xscale = this._xscale + this.speed; this._yscale = this._yscale + this.speed; } } } }; s.square = function () { if ((this._x != this.posx) || (this._y != this.posy)) { this.dX = this._x - this.posx; this.dY = this._y - this.posy; this.dist = mq((this.dX * this.dX) + (this.dY * this.dY)); this.mX = this.speed * (this.dX / this.dist); this.mY = this.speed * (this.dY / this.dist); this._x = this._x - this.mX; this._y = this._y - this.mY; if (this.speed >= this.dist) { this.onEnterFrame = null; } } }; s.hex = function () { if ((this._x != this.posx) || (this._y != this.posy)) { this.dX = this._x - this.posx; this.dY = this._y - this.posy; this.dist = mq((this.dX * this.dX) + (this.dY * this.dY)); this.mX = this.speed * (this.dX / this.dist); this.mY = this.speed * (this.dY / this.dist); this._x = this._x - this.mX; this._y = this._y - this.mY; if (this.speed >= this.dist) { this.onEnterFrame = null; } } }; s.woo = function () { if ((this._x != this.posx) || (this._y != this.posy)) { this.deltaX = this._x - this.posx; this.deltaY = this._y - this.posy; this.dist = math.sqrt((this.deltaX * this.deltaX) + (this.deltaY * this.deltaY)); this.moveX = this.speed * (this.deltaX / this.dist); this.moveY = this.speed * (this.deltaY / this.dist); this._x = this._x - this.moveX; this._y = this._y - this.moveY; if (10 >= this.dist) { this.po++; if (this.po == 24) { this.po = 0; } if ((this.po % 3) == 0) { this._x = wPoints[this.po].x; this._y = wPoints[this.po].y; this.po++; this.anim.gotoAndPlay("boo"); this.posx = wPoints[this.po].x; this.posy = wPoints[this.po].y; } else { this.anim.play(); this.posx = wPoints[this.po].x; this.posy = wPoints[this.po].y; } } } }; s.robusto = function () { if ((this._x != this.posx) || (this._y != this.posy)) { this.deltaX = this._x - this.posx; this.deltaY = this._y - this.posy; this.rdist = math.sqrt((this.deltaX * this.deltaX) + (this.deltaY * this.deltaY)); this.speed = this.speed * 1.01; this.moveX = this.speed * (this.deltaX / this.rdist); this.moveY = this.speed * (this.deltaY / this.rdist); if (40 >= this.rdist) { this.speed = 5; this.po++; if (this.po == 4) { this.po = 0; } this.posx = rPoints[this.po].x; this.posy = rPoints[this.po].y; } this._x = this._x - this.moveX; this._y = this._y - this.moveY; } }; s.funny = function () { if ((this._x != this.posx) || (this._y != this.posy)) { this.deltaX = this._x - this.posx; this.deltaY = this._y - this.posy; this.fdist = math.sqrt((this.deltaX * this.deltaX) + (this.deltaY * this.deltaY)); this.moveX = this.speed * (this.deltaX / this.fdist); this.moveY = this.speed * (this.deltaY / this.fdist); if (10 >= this.fdist) { this.po = this.po + this.funnyFor; if (this.po == 11) { this.po = 10; this.funnyFor = this.funnyFor * -1; } else if (this.po == -1) { this.po = 0; this.funnyFor = this.funnyFor * -1; } this.posx = fPoints[this.po].x; this.posy = fPoints[this.po].y; } this._x = this._x - this.moveX; this._y = this._y - this.moveY; } }; s.swapPos = function () { if ((this._name != "special") || (levelNumber != 0)) { myLength = myArray.length + 1; if (this.level >= myLength) { this.posx = myArray[0].x; this.posy = myArray[0].y; this.level = 2; } else { this.posx = myArray[this.level - 1].x; this.posy = myArray[this.level - 1].y; this.level++; } } }; s.backToPos = function () { if ((this._x != this.posx) || (this._y != this.posy)) { this.deltaX = this._x - this.posx; this.deltaY = this._y - this.posy; this.dist = math.sqrt((this.deltaX * this.deltaX) + (this.deltaY * this.deltaY)); this.moveX = 10 * (this.deltaX / this.dist); this.moveY = 10 * (this.deltaY / this.dist); this._x = this._x - this.moveX; this._y = this._y - this.moveY; if (10 >= this.dist) { this.onEnterFrame = null; closeGate(); motion = setInterval(moveAll, speedInc); } } }; s.backToPosSpecial = function () { if ((this._x != this.posx) || (this._y != this.posy)) { this.deltaX = this._x - this.posx; this.deltaY = this._y - this.posy; this.dist = math.sqrt((this.deltaX * this.deltaX) + (this.deltaY * this.deltaY)); this.moveX = 10 * (this.deltaX / this.dist); this.moveY = 10 * (this.deltaY / this.dist); this._x = this._x - this.moveX; this._y = this._y - this.moveY; if (10 >= this.dist) { this.onEnterFrame = null; moveAllSpecial(); } } }; s.fadeIn = function () { this._alpha = this._alpha + this.speed; if (this._alpha >= 100) { this.onEnterFrame = this.fadeOutSpecial; } }; s.fadeOutSpecial = function () { this._alpha = this._alpha - this.speed; if (this._alpha <= 0) { this._x = mf(mr() * 450) + 20; this._y = mf(mr() * 205) + 20; this.onEnterFrame = this.fadeIn; } }; s.fadeOut = function () { this._alpha = this._alpha - 3; if (this._alpha <= 0) { removeMovieClip(this); } }; s.caught = function () { hand._visible = false; this.gotoAndStop(2); this.startDrag(true); this.swapDepths(900); this.posx = this._x; this.posy = this._y; if (this._name == "special") { rainbows(true); dSound.attachSound("s" + whichSpecial); dSound.start(); } }; s.caughtSpecial = function () { hand._visible = false; this.gotoAndStop(2); this.startDrag(true); this.swapDepths(900); this.posx = this._x; this.posy = this._y; rainbows(true); dSound.attachSound("s" + this.so); dSound.start(); }; s.released = function () { mySound.attachSound("wrong"); mySound.start(); this.stopDrag(); this.gotoAndStop(1); backpack.gotoAndStop(2); this.swapDepths(this.level); rainbows(false); this.onEnterFrame = this.backToPos; }; s.releasedSpecial = function () { mySound.attachSound("wrong"); mySound.start(); this.stopDrag(); this.gotoAndStop(1); this.swapDepths(this.level); rainbows(false); this.onEnterFrame = this.backToPosSpecial; }; s.captured = function () { stopDrag(); delete this.onEnterFrame; this.gotoAndStop(1); this._x = initx + (40 * win); this._y = -100; whichSound = mf(mr() * 3); dSound.attachSound("w" + whichSound); dSound.start(); if (this._name != "special") { reduceGates(this.gateNumber); backpack.gotoAndStop(3); } else { this._rotation = 0; this._alpha = 100; backpack.gotoAndStop(4); } var temp = allStars.removeFromArray((this._parent + ".") + this._name); }; s.capturedSpecial = function () { stopDrag(); delete this.onEnterFrame; this.gotoAndStop(1); this._x = initx + (40 * win); this._y = -100; this._rotation = 0; this._alpha = 100; whichSound = mf(mr() * 3); dSound.attachSound("w" + whichSound); dSound.start(); backpack.gotoAndStop(4); var temp = allStars.removeFromArray((this._parent + ".") + this._name); }; var i = 1; while (i < 10) { Object.registerClass("star" + i, Shape); i++; }
Instance of Symbol 349 MovieClip "clock" in Frame 693
//component parameters onClipEvent (initialize) { time = Number(levelTime); timeOutAction = "gameEnd"; pieSize = 38; pieColor = 16777062 /* 0xFFFF66 */; pieAlpha = 100; }
Frame 694
function startGame() { if (dSound.position >= dSound.duration) { delete this.onEnterFrame; if (levelBonus) { this.onMouseDown = grabSpecialStars; moveAllSpecial(); } else { this.onMouseDown = grabStars; openGate(); motion = setInterval(moveAll, speedInc); } clock.onEnterFrame = clock.checkTime; } } stop(); levelNumber++; allGates = [1, 2, 3]; allStars = new Array(); winArray = new Array(); win = 0; g1 = 0; g2 = 0; g3 = 0; gameBegin = false; gateOpen = false; cursorFree = true; this.attachMovie("hand", "hand", 1000); getURL ("lingo:setCursor(200)"); eval ("createStars" + this.gameLevel)(); scoreBarValues(totalStars); rainbows(false); mySound.setVolume(100); mySound.attachSound("gameloop"); mySound.start(0, 999); if (levelNumber != 0) { dSound.attachSound("canyou"); } else { dSound.attachSound("canyouspecial"); } dSound.start(); this.onMouseMove = function () { hand._x = this._xmouse; hand._y = this._ymouse; updateAfterEvent(); }; clock.time = 45; this.onEnterFrame = startGame;
Frame 721
dSound.attachSound("letsee"); dSound.start();
Frame 779
function growBar() { bar.middle._width = bar.middle._width + inc; bar.left._x = bar.middle._x - (bar.middle._width / 2); bar.right._x = bar.middle._x + (bar.middle._width / 2); inc = inc * 1.2; if (bar.middle._width >= barw) { delete this.onEnterFrame; this.onEnterFrame = soundDone; } } function soundDone() { delete this.onEnterFrame; for (i in winArray) { winArray[i]._y = 44; } this.gotoAndStop("endScore"); } mySound.attachSound("scoreAudio"); mySound.start(); inc = 1.5; this.onEnterFrame = growBar; stop();
Frame 781
function checkA() { if (dSound.position >= dSound.duration) { for (i in winArray) { removeMovieClip(winArray[i]); } clearInterval(finishAudio); volume = 100; id = setInterval(fadeOutAudio, 50); _level0.gotoAndPlay("endGame"); } } function waitAWhile() { i++; if (i > 25) { clearInterval(pausing); dSound.attachSound("adios"); dSound.start(); finishAudio = setInterval(checkA, 10); } } function fadeOutAudio() { volume = volume - 5; mySound.setVolume(volume); if (volume <= 20) { mySound.stop(); clearInterval(id); } } if (win > max) { scoreAnim.gotoAndPlay("super"); dSound.attachSound("super"); dSound.start(); } else if (win > mid) { scoreAnim.gotoAndPlay("great"); dSound.attachSound("great"); dSound.start(); } else { scoreAnim.gotoAndPlay("good"); dSound.attachSound("good"); dSound.start(); } mySound.attachSound("fanfare"); mySound.start(); i = 0; pausing = setInterval(waitAWhile, 100); stop();
Frame 812
if (levelNumber == 3) { gotoAndPlay (838); }
Frame 817
if (gameLevel == 1) { tryLevel.gotoAndStop(2); } else { tryLevel.gotoAndStop(1); }
Frame 836
stop(); same.onRelease = function () { gotoAndPlay (694); }; tryLevel.tryLevel.onRelease = function () { if (gameLevel == 1) { gameLevel = 2; } else { gameLevel = 1; } gotoAndPlay (694); };
Frame 838
mySound.setVolume(100); mySound.attachSound("bonus"); mySound.start();
Frame 860
stop();
Symbol 144 MovieClip Frame 1
stop();
Symbol 144 MovieClip Frame 25
stop();
Symbol 158 Button
on (release) { gameLevel = 1; gotoAndPlay (37); }
Symbol 159 Button
on (release) { gameLevel = 2; gotoAndPlay (37); }
Symbol 225 Button
on (release) { gotoAndPlay (325); mySound.stop(); }
Symbol 243 Button
on (release) { gotoAndPlay (693); }
Symbol 277 MovieClip Frame 36
gotoAndPlay (1);
Symbol 277 MovieClip Frame 57
gotoAndPlay (1);
Symbol 277 MovieClip Frame 80
gotoAndPlay (1);
Symbol 277 MovieClip Frame 103
gotoAndPlay (1);
Symbol 284 MovieClip Frame 1
stop();
Symbol 349 MovieClip Frame 1
function checkTime() { if ((getTimer() - now) >= 1000) { now = getTimer(); arc = arc + (360 / time); } tracker.clear(); tracker.drawSlice(pieSize, -arc, pieColor, pieAlpha); if (arc >= 360) { eval ("_root." + this.timeOutAction)(); delete this.onEnterFrame; } } MovieClip.prototype.drawSlice = function (r, arc, fcolor, falpha) { if (falpha == undefined) { falpha = 100; } startAngle = 90; var segs = Math.ceil(Math.abs(arc) / 45); var segAngle = (arc / segs); var theta = ((-(segAngle / 180)) * mp); var angle = ((-(startAngle / 180)) * mp); this.beginFill(fcolor, falpha); if (segs > 0) { var ax = (mc(angle) * r); var ay = (ms(angle) * r); this.lineTo(ax, ay); var i = 0; while (i < segs) { angle = angle + theta; var angleMid = (angle - (theta / 2)); var bx = (mc(angle) * r); var by = (ms(angle) * r); var cx = (mc(angleMid) * (r / mc(theta / 2))); var cy = (ms(angleMid) * (r / mc(theta / 2))); this.curveTo(cx, cy, bx, by); i++; } this.lineTo(0, 0); } this.endFill(); }; this.createEmptyMovieClip("tracker", 2); this.moon.setMask(tracker); var arc = 0; now = getTimer(); var increment = ((time * 6) / 360);
Symbol 356 MovieClip Frame 1
stop();
Symbol 356 MovieClip Frame 10
this.gotoAndStop(1); r._visible = false;
Symbol 356 MovieClip Frame 18
this.gotoAndStop(1); _level0.rainbows(false);
Symbol 360 MovieClip Frame 1
stop();
Symbol 360 MovieClip Frame 10
this.gotoAndStop(1); r._visible = false;
Symbol 360 MovieClip Frame 18
this.gotoAndStop(1); _level0.rainbows(false);
Symbol 363 MovieClip Frame 1
stop();
Symbol 363 MovieClip Frame 10
this.gotoAndStop(1); r._visible = false;
Symbol 363 MovieClip Frame 18
this.gotoAndStop(1); _level0.rainbows(false);
Symbol 374 MovieClip Frame 23
_parent.gotoAndStop(1);
Symbol 381 MovieClip Frame 23
_parent.gotoAndStop(1);
Symbol 389 MovieClip Frame 21
_parent.gotoAndStop(1);
Symbol 390 MovieClip Frame 1
stop();
Instance of Symbol 389 MovieClip in Symbol 390 MovieClip Frame 4
/* no clip actions */
Symbol 449 MovieClip Frame 15
stop();
Symbol 449 MovieClip Frame 30
stop();
Symbol 449 MovieClip Frame 46
stop();
Symbol 465 MovieClip Frame 1
stop();
Symbol 468 MovieClip Frame 1
stop();
Symbol 470 MovieClip Frame 1
stop();
Symbol 475 Button
on (release) { getURL ("lingo:doQuit"); }
Symbol 483 Button
on (release) { gotoAndPlay (694); }

Library Items

Symbol 1 Sound [theme]
Symbol 2 Sound [open]
Symbol 3 Sound [scoreAudio]
Symbol 4 Sound [close]
Symbol 5 Sound [gameloop]
Symbol 6 Sound [fanfare]
Symbol 7 Sound [adios]
Symbol 8 Sound [super]
Symbol 9 Sound [great]
Symbol 10 Sound [good]
Symbol 11 Sound [s1]
Symbol 12 Sound [s5]
Symbol 13 Sound [s4]
Symbol 14 Sound [s3]
Symbol 15 Sound [s0]
Symbol 16 Sound [s2]
Symbol 17 Sound [canyouspecial]
Symbol 18 Sound [canyou]
Symbol 19 Sound [letsee]
Symbol 20 Sound [w2]
Symbol 21 Sound [w1]
Symbol 22 Sound [w0]
Symbol 23 Sound [gone]
Symbol 24 Sound [wrong]
Symbol 25 Sound [bonus]
Symbol 26 GraphicUsed by:40
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:35
Symbol 29 GraphicUsed by:35
Symbol 30 GraphicUsed by:35
Symbol 31 GraphicUsed by:35
Symbol 32 GraphicUsed by:35
Symbol 33 GraphicUsed by:35
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:28 29 30 31 32 33 34Used by:40
Symbol 36 GraphicUsed by:40
Symbol 37 GraphicUsed by:40
Symbol 38 GraphicUsed by:40
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:26 35 36 37 38 39Used by:42 218  Timeline
Symbol 41 GraphicUsed by:42 52 68 116 132 145 305
Symbol 42 MovieClip [star6]Uses:40 41
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:51
Symbol 45 GraphicUsed by:51
Symbol 46 GraphicUsed by:51
Symbol 47 GraphicUsed by:51
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:51
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:44 45 46 47 49 50Used by:52  Timeline
Symbol 52 MovieClip [star4]Uses:51 41
Symbol 53 GraphicUsed by:66 67
Symbol 54 GraphicUsed by:67
Symbol 55 GraphicUsed by:67
Symbol 56 GraphicUsed by:67
Symbol 57 GraphicUsed by:67
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:67
Symbol 60 GraphicUsed by:67
Symbol 61 GraphicUsed by:67
Symbol 62 GraphicUsed by:67
Symbol 63 GraphicUsed by:67
Symbol 64 GraphicUsed by:67
Symbol 65 GraphicUsed by:67
Symbol 66 MovieClipUses:53Used by:67
Symbol 67 MovieClipUses:53 54 55 56 57 59 60 61 62 63 64 65 66Used by:68
Symbol 68 MovieClip [star5]Uses:67 41
Symbol 69 GraphicUsed by:70 238
Symbol 70 MovieClip [hand]Uses:69
Symbol 71 GraphicUsed by:74 294
Symbol 72 GraphicUsed by:74
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:71 72 73Used by:77
Symbol 75 GraphicUsed by:77
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClip [star2]Uses:74 75 76
Symbol 78 GraphicUsed by:81 290
Symbol 79 GraphicUsed by:81 290
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:78 79 80Used by:84
Symbol 82 GraphicUsed by:84
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClip [star3]Uses:81 82 83
Symbol 85 GraphicUsed by:88 296
Symbol 86 GraphicUsed by:88 296
Symbol 87 GraphicUsed by:88 296
Symbol 88 MovieClipUses:85 86 87Used by:91
Symbol 89 GraphicUsed by:91
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClip [star1]Uses:88 89 90
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:94
Symbol 94 MovieClipUses:93Used by:114
Symbol 95 GraphicUsed by:96 97
Symbol 96 MovieClipUses:95Used by:98
Symbol 97 MovieClipUses:95Used by:98
Symbol 98 MovieClipUses:96 97Used by:114
Symbol 99 GraphicUsed by:102
Symbol 100 GraphicUsed by:102
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:99 100 101Used by:114
Symbol 103 GraphicUsed by:114
Symbol 104 GraphicUsed by:113
Symbol 105 GraphicUsed by:113
Symbol 106 GraphicUsed by:113
Symbol 107 GraphicUsed by:113
Symbol 108 GraphicUsed by:113
Symbol 109 GraphicUsed by:113
Symbol 110 GraphicUsed by:113
Symbol 111 GraphicUsed by:113
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:104 105 106 107 108 109 110 111 112Used by:114
Symbol 114 MovieClipUses:94 98 102 103 113Used by:115
Symbol 115 MovieClipUses:114Used by:116
Symbol 116 MovieClip [star7]Uses:115 41
Symbol 117 GraphicUsed by:131
Symbol 118 GraphicUsed by:123
Symbol 119 GraphicUsed by:123
Symbol 120 GraphicUsed by:123
Symbol 121 GraphicUsed by:123
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:118 119 120 121 122Used by:131
Symbol 124 GraphicUsed by:131
Symbol 125 GraphicUsed by:131
Symbol 126 GraphicUsed by:131
Symbol 127 GraphicUsed by:131
Symbol 128 GraphicUsed by:131
Symbol 129 GraphicUsed by:131
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:117 123 124 125 126 127 128 129 130Used by:132
Symbol 132 MovieClip [star8]Uses:131 41
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:133Used by:144
Symbol 135 GraphicUsed by:139
Symbol 136 GraphicUsed by:139
Symbol 137 GraphicUsed by:139
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:135 136 137 138Used by:144
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:140Used by:144
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:144
Symbol 144 MovieClipUses:134 139 141 143Used by:145
Symbol 145 MovieClip [star9]Uses:144 41
Symbol 146 GraphicUsed by:Timeline
Symbol 147 GraphicUsed by:154 157 158 159 461 465 468 470 474 475
Symbol 148 GraphicUsed by:154 157 158 159 461 465 468 470 474 475 482 483
Symbol 149 GraphicUsed by:154 157 158 159 461 465 468 470 474 475 482 483
Symbol 150 GraphicUsed by:154 157 158 159 461 465 468 470 474 475 482 483
Symbol 151 GraphicUsed by:154 158
Symbol 152 GraphicUsed by:154 158
Symbol 153 GraphicUsed by:154 158
Symbol 154 ButtonUses:147 148 149 150 151 152 153Used by:Timeline
Symbol 155 GraphicUsed by:157 159
Symbol 156 GraphicUsed by:157 159
Symbol 157 ButtonUses:147 148 149 150 155 156Used by:Timeline
Symbol 158 ButtonUses:147 148 149 150 151 152 153Used by:Timeline
Symbol 159 ButtonUses:147 148 149 150 155 156Used by:Timeline
Symbol 160 GraphicUsed by:Timeline
Symbol 161 BitmapUsed by:163
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:161 162Used by:164
Symbol 164 MovieClipUses:163Used by:Timeline
Symbol 165 GraphicUsed by:Timeline
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:Timeline
Symbol 168 GraphicUsed by:Timeline
Symbol 169 GraphicUsed by:170
Symbol 170 MovieClipUses:169Used by:Timeline
Symbol 171 GraphicUsed by:172
Symbol 172 MovieClipUses:171Used by:Timeline
Symbol 173 GraphicUsed by:176
Symbol 174 GraphicUsed by:176
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:173 174 175Used by:179  Timeline
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:177Used by:179
Symbol 179 MovieClipUses:176 178Used by:Timeline
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:180Used by:Timeline
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:182Used by:Timeline
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:184Used by:Timeline
Symbol 186 GraphicUsed by:190
Symbol 187 BitmapUsed by:188 350
Symbol 188 GraphicUses:187Used by:189
Symbol 189 MovieClipUses:188Used by:190  Timeline
Symbol 190 MovieClipUses:186 189Used by:Timeline
Symbol 191 GraphicUsed by:192
Symbol 192 MovieClipUses:191Used by:Timeline
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:Timeline
Symbol 195 GraphicUsed by:Timeline
Symbol 196 GraphicUsed by:Timeline
Symbol 197 GraphicUsed by:Timeline
Symbol 198 GraphicUsed by:Timeline
Symbol 199 GraphicUsed by:Timeline
Symbol 200 GraphicUsed by:Timeline
Symbol 201 GraphicUsed by:202
Symbol 202 MovieClipUses:201Used by:Timeline
Symbol 203 GraphicUsed by:Timeline
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:Timeline
Symbol 206 GraphicUsed by:207
Symbol 207 MovieClipUses:206Used by:Timeline
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:Timeline
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:210Used by:Timeline
Symbol 212 GraphicUsed by:Timeline
Symbol 213 GraphicUsed by:Timeline
Symbol 214 GraphicUsed by:Timeline
Symbol 215 GraphicUsed by:Timeline
Symbol 216 GraphicUsed by:Timeline
Symbol 217 GraphicUsed by:Timeline
Symbol 218 MovieClipUses:40Used by:Timeline
Symbol 219 GraphicUsed by:Timeline
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:220Used by:222 225  Timeline
Symbol 222 MovieClipUses:221Used by:225
Symbol 223 GraphicUsed by:225
Symbol 224 SoundUsed by:225
Symbol 225 ButtonUses:222 221 223 224Used by:Timeline
Symbol 226 GraphicUsed by:Timeline
Symbol 227 GraphicUsed by:Timeline
Symbol 228 GraphicUsed by:Timeline
Symbol 229 GraphicUsed by:Timeline
Symbol 230 GraphicUsed by:Timeline
Symbol 231 GraphicUsed by:Timeline
Symbol 232 GraphicUsed by:Timeline
Symbol 233 GraphicUsed by:Timeline
Symbol 234 GraphicUsed by:Timeline
Symbol 235 GraphicUsed by:Timeline
Symbol 236 GraphicUsed by:Timeline
Symbol 237 GraphicUsed by:Timeline
Symbol 238 MovieClipUses:69Used by:Timeline
Symbol 239 GraphicUsed by:240
Symbol 240 MovieClipUses:239Used by:241
Symbol 241 MovieClipUses:240Used by:243
Symbol 242 GraphicUsed by:243
Symbol 243 ButtonUses:241 242Used by:Timeline
Symbol 244 GraphicUsed by:277  Timeline
Symbol 245 GraphicUsed by:246
Symbol 246 MovieClipUses:245Used by:277 365 374 381 389
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClipUses:247Used by:277 365 374 381 389
Symbol 249 GraphicUsed by:277
Symbol 250 BitmapUsed by:251 364 367
Symbol 251 GraphicUses:250Used by:277 389
Symbol 252 GraphicUsed by:277 365 381
Symbol 253 GraphicUsed by:277 365
Symbol 254 GraphicUsed by:277
Symbol 255 GraphicUsed by:277
Symbol 256 GraphicUsed by:277
Symbol 257 GraphicUsed by:277 389
Symbol 258 GraphicUsed by:277
Symbol 259 GraphicUsed by:277
Symbol 260 GraphicUsed by:277
Symbol 261 GraphicUsed by:277
Symbol 262 GraphicUsed by:277
Symbol 263 GraphicUsed by:277
Symbol 264 GraphicUsed by:277
Symbol 265 GraphicUsed by:277 374 381
Symbol 266 GraphicUsed by:277
Symbol 267 GraphicUsed by:277
Symbol 268 GraphicUsed by:277
Symbol 269 GraphicUsed by:277
Symbol 270 GraphicUsed by:277
Symbol 271 GraphicUsed by:277
Symbol 272 GraphicUsed by:277
Symbol 273 GraphicUsed by:277
Symbol 274 GraphicUsed by:277
Symbol 275 GraphicUsed by:277
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:244 246 248 249 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276Used by:Timeline
Symbol 278 GraphicUsed by:279
Symbol 279 MovieClipUses:278Used by:Timeline
Symbol 280 GraphicUsed by:281
Symbol 281 MovieClipUses:280Used by:284 356 360 363  Timeline
Symbol 282 BitmapUsed by:283 285 352
Symbol 283 GraphicUses:282Used by:284
Symbol 284 MovieClipUses:281 283Used by:Timeline
Symbol 285 GraphicUses:282Used by:Timeline
Symbol 286 GraphicUsed by:290
Symbol 287 GraphicUsed by:290
Symbol 288 GraphicUsed by:290
Symbol 289 GraphicUsed by:290
Symbol 290 MovieClipUses:286 78 287 79 288 289Used by:Timeline
Symbol 291 GraphicUsed by:294
Symbol 292 GraphicUsed by:294
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:291 71 292 293Used by:Timeline
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:295 85 86 87Used by:Timeline
Symbol 297 GraphicUsed by:298
Symbol 298 MovieClipUses:297Used by:302
Symbol 299 GraphicUsed by:300
Symbol 300 MovieClipUses:299Used by:302
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:298 300 301Used by:Timeline
Symbol 303 GraphicUsed by:304 363
Symbol 304 MovieClipUses:303Used by:Timeline
Symbol 305 MovieClipUses:41Used by:Timeline
Symbol 306 GraphicUsed by:346
Symbol 307 GraphicUsed by:346
Symbol 308 GraphicUsed by:346
Symbol 309 GraphicUsed by:346
Symbol 310 GraphicUsed by:346
Symbol 311 GraphicUsed by:346
Symbol 312 GraphicUsed by:346
Symbol 313 GraphicUsed by:346
Symbol 314 GraphicUsed by:346
Symbol 315 GraphicUsed by:346
Symbol 316 GraphicUsed by:346
Symbol 317 GraphicUsed by:346
Symbol 318 GraphicUsed by:346
Symbol 319 GraphicUsed by:346
Symbol 320 GraphicUsed by:346
Symbol 321 GraphicUsed by:346
Symbol 322 GraphicUsed by:346
Symbol 323 GraphicUsed by:346
Symbol 324 GraphicUsed by:346
Symbol 325 GraphicUsed by:346
Symbol 326 GraphicUsed by:346
Symbol 327 GraphicUsed by:346
Symbol 328 GraphicUsed by:346
Symbol 329 GraphicUsed by:346
Symbol 330 GraphicUsed by:346
Symbol 331 GraphicUsed by:346
Symbol 332 GraphicUsed by:346
Symbol 333 GraphicUsed by:346
Symbol 334 GraphicUsed by:346
Symbol 335 GraphicUsed by:346
Symbol 336 GraphicUsed by:346
Symbol 337 GraphicUsed by:346
Symbol 338 GraphicUsed by:346
Symbol 339 GraphicUsed by:346
Symbol 340 GraphicUsed by:346
Symbol 341 GraphicUsed by:346
Symbol 342 GraphicUsed by:346
Symbol 343 GraphicUsed by:346
Symbol 344 GraphicUsed by:346
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345Used by:356 360 363  Timeline
Symbol 347 GraphicUsed by:348
Symbol 348 MovieClipUses:347Used by:349
Symbol 349 MovieClipUses:348Used by:Timeline
Symbol 350 GraphicUses:187Used by:Timeline
Symbol 351 GraphicUsed by:356 360 363
Symbol 352 GraphicUses:282Used by:356 360 363
Symbol 353 GraphicUsed by:356
Symbol 354 GraphicUsed by:356
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClipUses:346 351 352 353 281 354 355Used by:Timeline
Symbol 357 GraphicUsed by:360
Symbol 358 GraphicUsed by:360
Symbol 359 GraphicUsed by:360
Symbol 360 MovieClipUses:346 351 352 357 281 358 359Used by:Timeline
Symbol 361 GraphicUsed by:363
Symbol 362 GraphicUsed by:363
Symbol 363 MovieClipUses:346 351 352 303 281 361 362Used by:Timeline
Symbol 364 GraphicUses:250Used by:365
Symbol 365 MovieClipUses:246 248 364 252 253Used by:390
Symbol 366 GraphicUsed by:374
Symbol 367 GraphicUses:250Used by:374 381
Symbol 368 GraphicUsed by:374
Symbol 369 GraphicUsed by:374
Symbol 370 GraphicUsed by:374
Symbol 371 GraphicUsed by:374
Symbol 372 GraphicUsed by:374
Symbol 373 GraphicUsed by:374
Symbol 374 MovieClipUses:246 248 366 367 368 265 369 370 371 372 373Used by:390
Symbol 375 GraphicUsed by:381
Symbol 376 GraphicUsed by:381
Symbol 377 GraphicUsed by:381
Symbol 378 GraphicUsed by:381
Symbol 379 GraphicUsed by:381
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:246 248 375 367 376 265 377 378 379 252 380Used by:390
Symbol 382 GraphicUsed by:389
Symbol 383 GraphicUsed by:389
Symbol 384 GraphicUsed by:389
Symbol 385 GraphicUsed by:389
Symbol 386 GraphicUsed by:389
Symbol 387 GraphicUsed by:389
Symbol 388 GraphicUsed by:389
Symbol 389 MovieClipUses:246 248 382 251 383 384 257 385 386 387 388Used by:390
Symbol 390 MovieClipUses:365 374 381 389Used by:Timeline
Symbol 391 GraphicUsed by:392
Symbol 392 MovieClipUses:391Used by:Timeline
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClipUses:393Used by:Timeline
Symbol 395 GraphicUsed by:396
Symbol 396 MovieClipUses:395Used by:Timeline
Symbol 397 GraphicUsed by:398
Symbol 398 MovieClipUses:397Used by:Timeline
Symbol 399 GraphicUsed by:400
Symbol 400 MovieClipUses:399Used by:Timeline
Symbol 401 GraphicUsed by:402
Symbol 402 MovieClipUses:401Used by:Timeline
Symbol 403 GraphicUsed by:404
Symbol 404 MovieClipUses:403Used by:Timeline
Symbol 405 GraphicUsed by:406
Symbol 406 MovieClipUses:405Used by:Timeline
Symbol 407 GraphicUsed by:408
Symbol 408 MovieClipUses:407Used by:411
Symbol 409 GraphicUsed by:410
Symbol 410 MovieClipUses:409Used by:411
Symbol 411 MovieClipUses:408 410Used by:Timeline
Symbol 412 BitmapUsed by:413
Symbol 413 GraphicUses:412Used by:414
Symbol 414 MovieClipUses:413Used by:449
Symbol 415 GraphicUsed by:442
Symbol 416 BitmapUsed by:417
Symbol 417 GraphicUses:416Used by:442
Symbol 418 BitmapUsed by:419
Symbol 419 GraphicUses:418Used by:442
Symbol 420 BitmapUsed by:421
Symbol 421 GraphicUses:420Used by:442
Symbol 422 BitmapUsed by:423
Symbol 423 GraphicUses:422Used by:442
Symbol 424 BitmapUsed by:425
Symbol 425 GraphicUses:424Used by:442
Symbol 426 BitmapUsed by:427
Symbol 427 GraphicUses:426Used by:442
Symbol 428 BitmapUsed by:429
Symbol 429 GraphicUses:428Used by:442
Symbol 430 BitmapUsed by:431
Symbol 431 GraphicUses:430Used by:442
Symbol 432 BitmapUsed by:433
Symbol 433 GraphicUses:432Used by:442
Symbol 434 BitmapUsed by:435
Symbol 435 GraphicUses:434Used by:442
Symbol 436 BitmapUsed by:437
Symbol 437 GraphicUses:436Used by:442
Symbol 438 BitmapUsed by:439
Symbol 439 GraphicUses:438Used by:442
Symbol 440 BitmapUsed by:441
Symbol 441 GraphicUses:440Used by:442
Symbol 442 MovieClipUses:415 417 419 421 423 425 427 429 431 433 435 437 439 441Used by:449
Symbol 443 BitmapUsed by:444
Symbol 444 GraphicUses:443Used by:445
Symbol 445 MovieClipUses:444Used by:449
Symbol 446 BitmapUsed by:447
Symbol 447 GraphicUses:446Used by:448
Symbol 448 MovieClipUses:447Used by:449
Symbol 449 MovieClipUses:414 442 445 448Used by:Timeline
Symbol 450 GraphicUsed by:451
Symbol 451 MovieClipUses:450Used by:Timeline
Symbol 452 GraphicUsed by:Timeline
Symbol 453 GraphicUsed by:Timeline
Symbol 454 GraphicUsed by:Timeline
Symbol 455 GraphicUsed by:Timeline
Symbol 456 FontUsed by:457
Symbol 457 TextUses:456Used by:Timeline
Symbol 458 GraphicUsed by:461 470
Symbol 459 GraphicUsed by:461 470
Symbol 460 GraphicUsed by:461 470
Symbol 461 ButtonUses:147 148 149 150 458 459 460Used by:Timeline
Symbol 462 GraphicUsed by:465
Symbol 463 GraphicUsed by:465
Symbol 464 GraphicUsed by:465
Symbol 465 MovieClipUses:462 150 149 148 147 463 464Used by:469
Symbol 466 GraphicUsed by:468
Symbol 467 GraphicUsed by:468
Symbol 468 MovieClipUses:466 150 149 148 147 467Used by:469
Symbol 469 MovieClipUses:465 468Used by:Timeline
Symbol 470 MovieClipUses:458 150 149 148 147 459 460Used by:Timeline
Symbol 471 GraphicUsed by:474 475
Symbol 472 GraphicUsed by:474 475
Symbol 473 GraphicUsed by:474 475
Symbol 474 ButtonUses:147 148 149 150 471 472 473Used by:Timeline
Symbol 475 ButtonUses:147 148 149 150 471 472 473Used by:Timeline
Symbol 476 GraphicUsed by:477
Symbol 477 MovieClipUses:476Used by:Timeline
Symbol 478 GraphicUsed by:482 483
Symbol 479 GraphicUsed by:482 483
Symbol 480 GraphicUsed by:482 483
Symbol 481 GraphicUsed by:482 483
Symbol 482 ButtonUses:478 148 149 150 479 480 481Used by:Timeline
Symbol 483 ButtonUses:478 148 149 150 479 480 481Used by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"hard"Frame 36Symbol 159 Button
"clock"Frame 693Symbol 349 MovieClip
"gate1"Frame 693Symbol 356 MovieClip
"gate2"Frame 693Symbol 360 MovieClip
"gate3"Frame 693Symbol 363 MovieClip
"backpack"Frame 693Symbol 390 MovieClip
"bar"Frame 775Symbol 411 MovieClip
"scoreAnim"Frame 781Symbol 449 MovieClip
"tryLevel"Frame 817Symbol 469 MovieClip
"same"Frame 820Symbol 470 MovieClip
"playBonus"Frame 860Symbol 483 Button
"anim"Symbol 145 MovieClip [star9] Frame 1Symbol 144 MovieClip
"moon"Symbol 349 MovieClip Frame 1Symbol 348 MovieClip
"r"Symbol 356 MovieClip Frame 1Symbol 346 MovieClip
"r"Symbol 360 MovieClip Frame 1Symbol 346 MovieClip
"r"Symbol 363 MovieClip Frame 1Symbol 346 MovieClip
"right"Symbol 411 MovieClip Frame 1Symbol 408 MovieClip
"left"Symbol 411 MovieClip Frame 1Symbol 408 MovieClip
"middle"Symbol 411 MovieClip Frame 1Symbol 410 MovieClip
"tryLevel"Symbol 469 MovieClip Frame 1Symbol 465 MovieClip
"tryLevel"Symbol 469 MovieClip Frame 2Symbol 468 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "theme"
ExportAssets (56)Timeline Frame 1Symbol 2 as "open"
ExportAssets (56)Timeline Frame 1Symbol 3 as "scoreAudio"
ExportAssets (56)Timeline Frame 1Symbol 4 as "close"
ExportAssets (56)Timeline Frame 1Symbol 5 as "gameloop"
ExportAssets (56)Timeline Frame 1Symbol 6 as "fanfare"
ExportAssets (56)Timeline Frame 1Symbol 7 as "adios"
ExportAssets (56)Timeline Frame 1Symbol 8 as "super"
ExportAssets (56)Timeline Frame 1Symbol 9 as "great"
ExportAssets (56)Timeline Frame 1Symbol 10 as "good"
ExportAssets (56)Timeline Frame 1Symbol 11 as "s1"
ExportAssets (56)Timeline Frame 1Symbol 12 as "s5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "s4"
ExportAssets (56)Timeline Frame 1Symbol 14 as "s3"
ExportAssets (56)Timeline Frame 1Symbol 15 as "s0"
ExportAssets (56)Timeline Frame 1Symbol 16 as "s2"
ExportAssets (56)Timeline Frame 1Symbol 17 as "canyouspecial"
ExportAssets (56)Timeline Frame 1Symbol 18 as "canyou"
ExportAssets (56)Timeline Frame 1Symbol 19 as "letsee"
ExportAssets (56)Timeline Frame 1Symbol 20 as "w2"
ExportAssets (56)Timeline Frame 1Symbol 21 as "w1"
ExportAssets (56)Timeline Frame 1Symbol 22 as "w0"
ExportAssets (56)Timeline Frame 1Symbol 23 as "gone"
ExportAssets (56)Timeline Frame 1Symbol 24 as "wrong"
ExportAssets (56)Timeline Frame 1Symbol 25 as "bonus"
ExportAssets (56)Timeline Frame 1Symbol 42 as "star6"
ExportAssets (56)Timeline Frame 1Symbol 52 as "star4"
ExportAssets (56)Timeline Frame 1Symbol 68 as "star5"
ExportAssets (56)Timeline Frame 1Symbol 70 as "hand"
ExportAssets (56)Timeline Frame 1Symbol 77 as "star2"
ExportAssets (56)Timeline Frame 1Symbol 84 as "star3"
ExportAssets (56)Timeline Frame 1Symbol 91 as "star1"
ExportAssets (56)Timeline Frame 1Symbol 116 as "star7"
ExportAssets (56)Timeline Frame 1Symbol 132 as "star8"
ExportAssets (56)Timeline Frame 1Symbol 145 as "star9"

Labels

"gameStart"Frame 694
"scoring"Frame 698
"endScore"Frame 781
"endGame"Frame 783
"bonusRound"Frame 838
"boo"Symbol 144 MovieClip Frame 2
"Default"Symbol 277 MovieClip Frame 1
"Wink"Symbol 277 MovieClip Frame 37
"Happy"Symbol 277 MovieClip Frame 58
"UhOh"Symbol 277 MovieClip Frame 81
"Default State"Symbol 284 MovieClip Frame 1
"Fill"Symbol 284 MovieClip Frame 11
"fill"Symbol 356 MovieClip Frame 3
"fillS"Symbol 356 MovieClip Frame 11
"fill"Symbol 360 MovieClip Frame 3
"fillS"Symbol 360 MovieClip Frame 11
"fill"Symbol 363 MovieClip Frame 3
"fillS"Symbol 363 MovieClip Frame 11
"good"Symbol 449 MovieClip Frame 1
"great"Symbol 449 MovieClip Frame 16
"super"Symbol 449 MovieClip Frame 31
"_up"Symbol 465 MovieClip Frame 1
"_over"Symbol 465 MovieClip Frame 2
"_down"Symbol 465 MovieClip Frame 3
"_up"Symbol 468 MovieClip Frame 1
"_over"Symbol 468 MovieClip Frame 2
"_down"Symbol 468 MovieClip Frame 3
"_up"Symbol 470 MovieClip Frame 1
"_over"Symbol 470 MovieClip Frame 2
"_down"Symbol 470 MovieClip Frame 3




http://swfchan.com/47/234888/info.shtml
Created: 6/5 -2020 00:36:12 Last modified: 6/5 -2020 00:36:12 Server time: 28/04 -2024 16:22:02