STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #23781 |
score: time: level: |
score: time: level: |
start game |
start game |
arrange five gems of one color in a horizontal or vertical row. use the 'left' and 'right' arrow keys to move the outside gem to the right position. drop the gem onto the board by pressing the 'down' arrow key. use the help for further info. |
arrange five gems of one color in a horizontal or vertical row. use the 'left' and 'right' arrow keys to move the outside gem to the right position. drop the gem onto the board by pressing the 'down' arrow key. use the help for further info. |
highscores |
highscores |
help |
help |
new game |
new game |
© 2003 markus eichler www.juggernart.com |
© 2003 markus eichler www.juggernart.com |
play again |
play again |
game over ! Its not as easy as it looks, is it? |
game over ! Its not as easy as it looks, is it? |
submit your score |
submit your score |
oooo, well done. You could be in for a prize. |
oooo, well done. You could be in for a prize. |
each 2500 points you reach the next level and the time to drop the drop-gem is decreased. |
this is the time left to move the drop-gem displayed in seconds. when the time is over the drop-gem will be dropped onto the board automaticly. when you drop the gem be- fore the time is over the remaining time is added to the score. |
this is the time meter dis- playing the time left to move the drop-gem. when the time meter is completely red the time is over and the drop-gem will be dropped onto the board automaticly. see also 'time' in the score display. |
this is the color of the next gem. |
this is the gem you have to drop onto the board. move it clockwise by press- ing the 'right' arrow key or counter clockwise by press- ing the 'left' arrow key. drop it onto the board by pressing the 'down' arrow key. |
this is the board. try to arrange the gems in rows or columns of five of one color. when five gems of one color are in a row they are remo- ved from the board and you earn bonus points. if you manage to arrange six gems of one color you get an extra bonus. you can pause the game by pressing the 'space' bar. |
help 2 |
help 2 |
just as for the gem to drop, you have a certain time to move the frame and delete the gems (or to cancel by pressing the up arrow key). when the time is over, the row or column in which the frame is standing is auto- maticly deleted. |
each time you manage to arrange five or six gems of one color into a row you earn bonus points. if you have enough bonus points and the board is too crowded, a puls- ating frame appears on the board. with the frame you can delete the gems of a row or a column! you can move the frame to the de- sired row or column using the 'left' and 'right' arrow keys. to delete the gems press the 'down' arrow key. if you don't want to delete anything press the 'up' arrow key to cancel. |
help 1 |
help 1 |
ActionScript [AS1/AS2]
Frame 2stop();Instance of Symbol 4 MovieClip in Frame 2onClipEvent (load) { totalbytes = _parent.getBytesTotal(); _xscale = 0; } onClipEvent (enterFrame) { bytes = _parent.getBytesLoaded(); percentloaded = (100 * bytes) / totalbytes; _parent.loading = ("loading... " + int(percentloaded)) + " %"; if (percentloaded < 100) { _xscale = percentloaded; } else { _parent.gotoAndPlay(_parent._currentframe + 1); } }Frame 3rndNumber = function (pMin, pMax, pDigits) { var d = Math.pow(10, pDigits); return(Math.round((pMin + (Math.random() * (pMax - pMin))) * d) / d); }; initRndArray = function (pLoops) { aRnd = new Array(); var i = 0; while (i < pLoops) { var k = 1; while (k <= maxTileNr) { aRnd[((i * maxTileNr) + k) - 1] = k; k++; } i++; } }; playSound = function (pSound) { mcSounds.gotoAndPlay(pSound); }; clearBoard = function () { var i = 0; while (i < tilesMax) { aBoard[i] = 0; i++; } clearLinks(); }; clearLinks = function () { var i = 0; while (i < tilesMax) { this["aLinks" + i] = new Array(2); var k = 0; while (k < 2) { this["aLinks" + i][k] = 0; k++; } i++; } var i = 0; while (i < yMax) { setLink(((i * xMax) + xMax) - 1, 0, -1); i++; } var i = 0; while (i < xMax) { setLink(i + (xMax * (yMax - 1)), 1, -1); i++; } }; setLink = function (pNumber, pLink, pValue) { this["aLinks" + pNumber][pLink] = pValue; }; getLink = function (pNumber, pLink) { return(this["aLinks" + pNumber][pLink]); }; clearStartPosArray = function () { var i = 0; while (i < startPosMax) { aStartPos[i] = 0; i++; } }; makeNewTile = function () { currentTileNr = nextTileNr; nextTileNr = aRnd.splice(random(aRnd.length), 1)[0]; if (aRnd.length == 0) { initRndArray(rndLoops); } mcNextTile.gotoAndStop(nextTileNr + 1); startPos = rndNumber(0, startPosMax - 1, 0); mcStartPosTile.gotoAndStop(currentTileNr + 1); setStartPos(); }; setStartPos = function () { clearStartPosArray(); aStartPos[startPos] = currentTileNr; getStartPos(); mcStartPosTile._x = aStartTilePos[startPos * 2]; mcStartPosTile._y = aStartTilePos[(startPos * 2) + 1]; }; getStartPos = function () { if (startPos < xMax) { line = "col"; dir = 1; row = 0; col = startPos; } else if ((startPos >= xMax) && (startPos < (xMax + yMax))) { line = "row"; dir = -1; row = startPos - xMax; col = xMax - 1; } else if ((startPos >= (xMax + yMax)) && (startPos < ((2 * xMax) + yMax))) { line = "col"; dir = -1; row = yMax - 1; col = (((2 * xMax) - startPos) + yMax) - 1; } else { line = "row"; dir = 1; row = (((2 * yMax) - startPos) + (2 * xMax)) - 1; col = 0; } }; initDrop = function () { mcStartPosTile.gotoAndStop(1); posCounter = 0; ((line == "row") ? ((maxPos = xMax)) : ((maxPos = yMax))); loopFlag = false; }; getBoardPos = function (pNr) { if (line == "row") { return((row * xMax) + (col + (dir * pNr))); } return(((row + (dir * pNr)) * xMax) + col); }; initCheck = function () { var i = 0; while (i < xMax) { this["aTilesToKillCol" + i] = new Array(); i++; } var i = 0; while (i < yMax) { this["aTilesToKillRow" + i] = new Array(); i++; } posCounter = 0; line = "row"; dir = 1; row = 0; col = 0; }; initTimer = function () { ((level < aLevelTimes.length) ? ((time = aLevelTimes[level])) : ((time = 3))); }; getTilesOnBoard = function () { tilesOnBoard = 0; var i = 0; while (i < tilesMax) { if (aBoard[i] != 0) { tilesOnBoard++; } i++; } return(tilesOnBoard); }; killAllTiles = function () { var i = 0; while (i < tilesMax) { this["mcTile" + i].removeMovieClip(); i++; } }; showPause = function () { var tFormat = new TextFormat(); tFormat.align = "center"; tFormat.size = 56; tFormat.color = 0; tFormat.font = "HOUSE3009-Cyberspace"; this.createTextField("tPauseS", 50000, 102, 120, 282, 122); tPauseS.embedFonts = true; tPauseS.selectable = false; tPauseS.text = "game\rpaused"; tPauseS.setTextFormat(tFormat); tFormat.color = 13369344 /* 0xCC0000 */; this.createTextField("tPause", 50001, 100, 116, 282, 122); tPause.embedFonts = true; tPause.selectable = false; tPause.text = "game\rpaused"; tPause.setTextFormat(tFormat); }; killPause = function () { pause = false; Key.removeListener(pauseListener); hidePause(); }; hidePause = function () { tPauseS.removeTextField(); tPause.removeTextField(); };Frame 4xMax = 6; yMax = 6; maxTileNr = 8; tilesToRow = 5; rndLoops = 10; tilesMax = xMax * yMax; startPosMax = (2 * xMax) + (2 * yMax); rowsKilledBonus = 0; rowBonus = 150; minRowsKilled = 15; rowBonusFactor = rowBonus * minRowsKilled; criticalAmount = Math.round(tilesMax * 0.66); aBoard = new Array(tilesMax); aStartPos = new Array(startPosMax); aStartTilePos = [100, 38, 148, 38, 196, 38, 244, 38, 292, 38, 340, 38, 400, 88, 400, 130, 400, 172, 400, 214, 400, 256, 400, 298, 340, 348, 292, 348, 244, 348, 196, 348, 148, 348, 100, 348, 40, 298, 40, 256, 40, 214, 40, 172, 40, 130, 40, 88]; aLevelTimes = [0, 25, 21, 18, 15, 12, 10, 8, 7, 6, 5, 5, 5, 4, 4, 4]; initRndArray(rndLoops); clearBoard(); time = 0; level = 0; preLevel = 1; score = 0; if (threshold == undefined) { threshold = 1000; } else { threshold = Number(threshold); } stop();Frame 7pause = false; pauseListener = new Object(); pauseListener.onKeyDown = function () { if (Key.isDown(32)) { pause = !pause; (pause ? (showPause()) : (hidePause())); } }; Key.addListener(pauseListener); var i = 0; while (i < yMax) { var k = 0; while (k < xMax) { depth = (i * xMax) + k; newTile = mcTile.duplicateMovieClip("mcTile" + depth, depth); newTile.nr = depth; newTile._x = 100 + (k * 48); newTile._y = 88 + (i * 42); newTile.onEnterFrame = function () { this.gotoAndStop(this._parent.aBoard[this.nr] + 1); }; k++; } i++; } newTile = mcBonus0.duplicateMovieClip("mcBonus", 10000); newTile._x = 240; newTile._y = 210; level = 1; initTimer(); nextTileNr = aRnd.splice(random(aRnd.length), 1)[0]; makeNewTile();Frame 8stop();Instance of Symbol 84 MovieClip in Frame 8onClipEvent (load) { goDrop = function () { _parent.initDrop(); _parent.gotoAndStop("dropTile"); }; checkKeys = function () { this.onEnterFrame = function () { if (getTimer() > (t + 99)) { if (Key.isDown(37)) { _parent.playSound("moveTile1"); _parent.startPos--; if (_parent.startPos < 0) { _parent.startPos = _parent.startPosMax - 1; } _parent.setStartPos(); } else if (Key.isDown(39)) { _parent.playSound("moveTile1"); _parent.startPos++; if (_parent.startPos == _parent.startPosMax) { _parent.startPos = 0; } _parent.setStartPos(); } else if (Key.isDown(40)) { _parent.playSound("click1"); goDrop(); } t = getTimer(); keyFlag = false; } }; }; stopKeys = function () { delete this.onEnterFrame; }; keyFlag = false; keyListener = new Object(); keyListener.onKeyDown = function () { if (_parent.pause) { stopKeys(); } else if (!keyFlag) { keyFlag = true; checkKeys(); } }; keyListener.onKeyUp = function () { if (!_parent.pause) { keyFlag = false; t = 0; stopKeys(); } }; Key.addListener(keyListener); decrTime = function () { if (!_parent.pause) { if ((--_parent.time) == 0) { _parent.playSound("timeOut"); goDrop(); } mcTimerBar._y = (-82 / time) * (_parent.time - 1); } }; time = _parent.time; ivTimer = setInterval(decrTime, 1000); } onClipEvent (unload) { clearInterval(ivTimer); Key.removeListener(keyListener); }Frame 9function dropTile() { if (!pause) { if ((aBoard[getBoardPos(posCounter)] == 0) && (!loopFlag)) { sf = posCounter - 1; aBoard[getBoardPos(posCounter)] = currentTileNr; if (sf != -1) { aBoard[getBoardPos(sf)] = 0; } else { clearStartPosArray(); } if ((++posCounter) == maxPos) { playSound("moveTile3"); clearInterval(ivTimer); gotoAndPlay (10); } else { playSound("moveTile3"); } } else { if (!loopFlag) { sf = posCounter - 1; } loopFlag = true; lResult = loop2(); if (lResult == "back") { playSound("moveTile3"); } else if (lResult == "ende") { clearInterval(ivTimer); gotoAndPlay (10); } else { clearInterval(ivTimer); gotoAndStop (13); } } } } function loop2() { if ((++posCounter) >= maxPos) { if (sf == -1) { return("tod"); } return("ende"); } if (aBoard[getBoardPos(posCounter)] == 0) { ef = posCounter - 1; var i = ef; while (i >= sf) { aBoard[getBoardPos(i + 1)] = aBoard[getBoardPos(i)]; i--; } if (sf == -1) { clearStartPosArray(); aBoard[getBoardPos(0)] = currentTileNr; } else { aBoard[getBoardPos(sf)] = 0; } sf++; ef++; return("back"); } return(loop2()); } ivTimer = setInterval(dropTile, 66); stop();Frame 11function setBonus() { if (rowLength == tilesToRow) { bonus = bonus + rowBonus; rowsKilledBonus = rowsKilledBonus + rowBonus; } else { bonus = bonus + (rowBonus * 2); rowsKilledBonus = rowsKilledBonus + (rowBonus * 3); } } function levelCheck() { level = Math.floor(score / 2500) + 1; if (level != preLevel) { preLevel = level; bonus = bonus + ((tilesMax - getTilesOnBoard()) * 25); score = score + bonus; mcSounds.gotoAndPlay("levelBonus"); mcBonus.bonus = bonus; mcBonus.play(); } } function startKillAnim(pNr) { if (aBoard[pNr] != 0) { var newTile = mcTile.duplicateMovieClip("mcTile" + depth, depth++); newTile.gotoAndStop(aBoard[pNr] + 1); newTile._x = this["mcTile" + pNr]._x; newTile._y = this["mcTile" + pNr]._y; newTile.delay = rndNumber(1, 10, 0); newTile.g = 1; newTile.onEnterFrame = function () { if ((--this.delay) <= 0) { this.g = this.g * 1.33; this._y = this._y + this.g; if (this._y > 480) { this.removeMovieClip(); } } }; } } function checkTile() { tileNr = getBoardPos(posCounter); fNr = aBoard[tileNr]; if (fNr == 0) { return(sub1()); } var link = getLink(tileNr, 0); if (link == 0) { subNeighbour("row"); return(sub3()); } return(sub3()); } function sub1() { if ((++posCounter) == xMax) { posCounter = 0; if ((++row) == yMax) { return(false); } return(sub2()); } return(sub2()); } function sub2() { lResult = checkTile(); if (lResult == false) { return(false); } return(fNr); } function sub3() { var link = getLink(tileNr, 1); if (link == 0) { subNeighbour("col"); return(sub1()); } return(sub1()); } function subNeighbour(pLine) { if (pLine == "row") { if ((xMax - posCounter) >= tilesToRow) { this["aTilesToKillRow" + row].push(tileNr); var i = (posCounter + 1); while (i < xMax) { var tNr = getBoardPos(i); var nNr = aBoard[tNr]; setLink(getBoardPos(i - 1), 0, nNr); if ((nNr == 0) || (nNr != fNr)) { if (this["aTilesToKillRow" + row].length < tilesToRow) { this["aTilesToKillRow" + row] = []; } return(undefined); } this["aTilesToKillRow" + row].push(tNr); i++; } } } else if ((yMax - row) >= tilesToRow) { var tempRow = row; this["aTilesToKillCol" + posCounter].push(tileNr); var i = (tempRow + 1); while (i < yMax) { row = i; var tNr = getBoardPos(posCounter); var nNr = aBoard[tNr]; row = i - 1; setLink(getBoardPos(posCounter), 1, nNr); row = i; if ((nNr == 0) || (nNr != fNr)) { if (this["aTilesToKillCol" + posCounter].length < tilesToRow) { this["aTilesToKillCol" + posCounter] = []; } row = tempRow; return(undefined); } this["aTilesToKillCol" + posCounter].push(tNr); i++; } row = tempRow; } } bonus = 0; depth = 1000; score = score + time; clearLinks(); initCheck(); lResult = checkTile(); var i = 0; while (i < yMax) { rowLength = this["aTilesToKillRow" + i].length; if (rowLength != 0) { playSound("killRow"); while (this["aTilesToKillRow" + i].length > 0) { tileNr = this["aTilesToKillRow" + i].shift(); startKillAnim(tileNr); aBoard[tileNr] = 0; } setBonus(); } i++; } var i = 0; while (i < xMax) { rowLength = this["aTilesToKillCol" + i].length; if (rowLength != 0) { playSound("killRow"); while (this["aTilesToKillCol" + i].length > 0) { tileNr = this["aTilesToKillCol" + i].shift(); startKillAnim(tileNr); aBoard[tileNr] = 0; } setBonus(); } i++; } if (getTilesOnBoard() == 0) { bonus = bonus + 1000; rowsKilledBonus = rowsKilledBonus + (rowBonus * 2); } if (bonus != 0) { score = score + bonus; levelCheck(); mcBonus.bonus = bonus; mcBonus.play(); } else { levelCheck(); } if (((rowsKilledBonus / rowBonusFactor) >= 1) && (tilesOnBoard >= criticalAmount)) { rowsKilledBonus = rowsKilledBonus - rowBonusFactor; initTimer(); time = int(time * 1.5); gotoAndStop (12); } else { makeNewTile(); initTimer(); gotoAndStop (8); }Frame 12stop();Instance of Symbol 90 MovieClip "mcRowKiller" in Frame 12onClipEvent (load) { objColor = new Color(this); objColor.setRGB(13369344); objColorTrans = new Object(); objColorTrans.ra = 80; objColorTrans.ga = -100; objColorTrans.ba = -100; brightness = 204; brDecr = 24; changeColor = function () { brightness = brightness - brDecr; if ((brightness <= 0) || (brightness >= 204)) { brDecr = brDecr * -1; } objColorTrans.rb = (objColorTrans.gb = (objColorTrans.bb = brightness)); objColor.setTransform(objColorTrans); }; ivTimer = setInterval(changeColor, 33); } onClipEvent (unload) { clearInterval(ivTimer); }Instance of Symbol 84 MovieClip in Frame 12onClipEvent (load) { function setKillerframe() { ((line == "col") ? ((frame = 2)) : ((frame = 3))); _parent.mcRowKiller.mcRowKillerFrame.gotoAndStop(frame); _parent.mcRowKiller._x = 97 + (col * 48); _parent.mcRowKiller._y = 85 + (row * 42); } function bonusKillTiles(pMax) { var i = 0; while (i < pMax) { var nr = _parent.getBoardPos(i); _parent.startKillAnim(nr); _parent.aBoard[nr] = 0; i++; } } killRow = function (pParam) { _parent.line = line; _parent.col = col; _parent.row = row; _parent.dir = 1; if (pParam) { ((line == "col") ? (bonusKillTiles(_parent.yMax)) : (bonusKillTiles(_parent.xMax))); } _parent.makeNewTile(); _parent.initTimer(); _parent.gotoAndStop("moveTile"); }; checkKeys = function () { this.onEnterFrame = function () { if (getTimer() > (t + 99)) { if (Key.isDown(37)) { _parent.playSound("moveFrame"); if (line == "col") { if ((--col) < 0) { col = 0; row = _parent.yMax - 1; line = "row"; } } else if ((--row) < 0) { row = 0; col = _parent.xMax - 1; line = "col"; } setKillerframe(); } else if (Key.isDown(39)) { _parent.playSound("moveFrame"); if (line == "col") { if ((++col) == _parent.xMax) { col = 0; row = 0; line = "row"; } } else if ((++row) == _parent.yMax) { row = 0; col = 0; line = "col"; } setKillerframe(); } else if (Key.isDown(38)) { _parent.playSound("click1"); _parent.rowsKilledBonus = _parent.rowsKilledBonus + _parent.rowBonusFactor; killRow(false); } else if (Key.isDown(40)) { _parent.playSound("killRow"); killRow(true); } t = getTimer(); keyFlag = false; } }; }; stopKeys = function () { delete this.onEnterFrame; }; keyFlag = false; keyListener = new Object(); keyListener.onKeyDown = function () { if (_parent.pause) { stopKeys(); } else if (!keyFlag) { keyFlag = true; checkKeys(); } }; keyListener.onKeyUp = function () { if (!_parent.pause) { keyFlag = false; t = 0; stopKeys(); } }; line = "col"; col = 0; row = 0; setKillerframe(); Key.addListener(keyListener); decrTime = function () { if (!_parent.pause) { if ((--_parent.time) == 0) { _parent.playSound("timeOut"); killRow(true); } mcTimerBar._y = (-82 / time) * (_parent.time - 1); } }; time = _parent.time; ivTimer = setInterval(decrTime, 1000); } onClipEvent (unload) { clearInterval(ivTimer); Key.removeListener(keyListener); }Frame 13killPause(); var i = 0; while (i < tilesMax) { startKillAnim(i); i++; } mcNextTile.gotoAndStop(1); clearBoard(); playSound("gameOver"); stop();Frame 14stop();Frame 15stop();Instance of Symbol 90 MovieClip "mcRowKiller" in Frame 15onClipEvent (load) { objColor = new Color(this); objColor.setRGB(13369344); objColorTrans = new Object(); objColorTrans.ra = 80; objColorTrans.ga = -100; objColorTrans.ba = -100; brightness = 204; brDecr = 24; changeColor = function () { brightness = brightness - brDecr; if ((brightness <= 0) || (brightness >= 204)) { brDecr = brDecr * -1; } objColorTrans.rb = (objColorTrans.gb = (objColorTrans.bb = brightness)); objColor.setTransform(objColorTrans); }; ivTimer = setInterval(changeColor, 33); mcRowKillerFrame.gotoAndStop(2); } onClipEvent (unload) { clearInterval(ivTimer); }Symbol 16 MovieClip Frame 1stop();Symbol 16 MovieClip Frame 2gotoAndStop (1);Symbol 16 MovieClip Frame 3gotoAndStop (1);Symbol 16 MovieClip Frame 4gotoAndStop (1);Symbol 16 MovieClip Frame 5gotoAndStop (1);Symbol 16 MovieClip Frame 6gotoAndStop (1);Symbol 16 MovieClip Frame 7gotoAndStop (1);Symbol 16 MovieClip Frame 8gotoAndStop (1);Symbol 16 MovieClip Frame 9gotoAndStop (1);Symbol 38 MovieClip Frame 1score = _parent.score; if (score < 10) { score = "0000" + score; } else if (score < 100) { score = "000" + score; } else if (score < 1000) { score = "00" + score; } else if (score < 10000) { score = "0" + score; } score = score + ""; s1 = score.substr(4, 1); s2 = score.substr(3, 1); s3 = score.substr(2, 1); s4 = score.substr(1, 1); s5 = score.substr(0, 1); time = _parent.time; if (time < 10) { time = "0" + time; } time = time + ""; t1 = time.substr(1, 1); t2 = time.substr(0, 1); level = _parent.level; if (level < 10) { level = "0" + level; } level = level + ""; l1 = level.substr(1, 1); l2 = level.substr(0, 1);Symbol 38 MovieClip Frame 2gotoAndPlay (1);Symbol 42 Buttonon (release) { playSound("click1"); play(); }Symbol 47 Buttonon (release) { _root.playSound("click1"); getURL ("http://www.chickstop.com/scores/thisweek/?q=16", "_self"); }Symbol 48 MovieClip Frame 1Symbol 51 Buttonon (release) { playSound("click1"); gotoAndStop (14); }Symbol 54 Buttonon (release) { playSound("click1"); play(); }Symbol 65 MovieClip Frame 1stop();Symbol 65 MovieClip Frame 20gotoAndStop (1);Symbol 82 MovieClip Frame 1stop();Symbol 85 Buttonon (release) { clearInterval(ivTimer); killPause(); killAllTiles(); playSound("click1"); gotoAndStop (14); }Symbol 86 Buttonon (release) { clearInterval(ivTimer); killPause(); killAllTiles(); playSound("click1"); gotoAndStop (4); }Symbol 89 MovieClip Frame 1stop();Symbol 94 Buttonon (release) { _parent.killPause(); _parent.killAllTiles(); _parent.playSound("click1"); _parent.gotoAndStop("start"); }Symbol 99 Buttonon (release) { _root.playSound("click1"); getURL ("http://www.chickstop.com/games/submitscore/index.php", "_self", "GET"); }Symbol 102 MovieClip Frame 1developer = "MarkusEichler"; game_name = "FiveARow"; score = _parent.score; if (score >= _root.threshold) { gotoAndStop (3); }Symbol 102 MovieClip Frame 2stop();Symbol 102 MovieClip Frame 3stop();Symbol 132 Buttonon (release) { playSound("click1"); nextFrame(); }Symbol 141 Buttonon (release) { playSound("click1"); prevFrame(); }
Library Items
Symbol 1 Font | Used by:2 | |
Symbol 2 EditableText | Uses:1 | Used by:Timeline |
Symbol 3 Graphic | Used by:4 | |
Symbol 4 MovieClip | Uses:3 | Used by:Timeline |
Symbol 5 ShapeTweening | Used by:Timeline | |
Symbol 6 Bitmap | Used by:7 | |
Symbol 7 Graphic | Uses:6 | Used by:Timeline |
Symbol 8 Sound | Used by:16 | |
Symbol 9 Sound | Used by:16 | |
Symbol 10 Sound | Used by:16 | |
Symbol 11 Sound | Used by:16 | |
Symbol 12 Sound | Used by:16 | |
Symbol 13 Sound | Used by:16 | |
Symbol 14 Sound | Used by:16 | |
Symbol 15 Sound | Used by:16 | |
Symbol 16 MovieClip | Uses:8 9 10 11 12 13 14 15 | Used by:Timeline |
Symbol 17 Font | Used by:18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 49 50 52 53 55 56 61 62 63 64 91 92 95 96 97 98 100 101 105 109 113 118 123 127 130 131 134 137 139 140 | |
Symbol 18 EditableText | Uses:17 | Used by:38 |
Symbol 19 EditableText | Uses:17 | Used by:38 |
Symbol 20 EditableText | Uses:17 | Used by:38 |
Symbol 21 EditableText | Uses:17 | Used by:38 |
Symbol 22 EditableText | Uses:17 | Used by:38 |
Symbol 23 EditableText | Uses:17 | Used by:38 |
Symbol 24 EditableText | Uses:17 | Used by:38 |
Symbol 25 EditableText | Uses:17 | Used by:38 |
Symbol 26 EditableText | Uses:17 | Used by:38 |
Symbol 27 EditableText | Uses:17 | Used by:38 |
Symbol 28 EditableText | Uses:17 | Used by:38 |
Symbol 29 EditableText | Uses:17 | Used by:38 |
Symbol 30 EditableText | Uses:17 | Used by:38 |
Symbol 31 EditableText | Uses:17 | Used by:38 |
Symbol 32 EditableText | Uses:17 | Used by:38 |
Symbol 33 EditableText | Uses:17 | Used by:38 |
Symbol 34 EditableText | Uses:17 | Used by:38 |
Symbol 35 EditableText | Uses:17 | Used by:38 |
Symbol 36 Text | Uses:17 | Used by:38 |
Symbol 37 Text | Uses:17 | Used by:38 |
Symbol 38 MovieClip | Uses:18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | Used by:Timeline |
Symbol 39 Text | Uses:17 | Used by:42 Timeline |
Symbol 40 Text | Uses:17 | Used by:42 Timeline |
Symbol 41 Graphic | Used by:42 47 51 54 57 85 86 132 138 141 Timeline | |
Symbol 42 Button | Uses:39 40 41 | Used by:Timeline |
Symbol 43 Text | Uses:17 | Used by:Timeline |
Symbol 44 Text | Uses:17 | Used by:Timeline |
Symbol 45 Text | Uses:17 | Used by:47 |
Symbol 46 Text | Uses:17 | Used by:47 |
Symbol 47 Button | Uses:45 46 41 | Used by:48 |
Symbol 48 MovieClip | Uses:47 | Used by:Timeline |
Symbol 49 Text | Uses:17 | Used by:51 85 Timeline |
Symbol 50 Text | Uses:17 | Used by:51 85 Timeline |
Symbol 51 Button | Uses:49 50 41 | Used by:Timeline |
Symbol 52 Text | Uses:17 | Used by:54 86 Timeline |
Symbol 53 Text | Uses:17 | Used by:54 86 Timeline |
Symbol 54 Button | Uses:52 53 41 | Used by:Timeline |
Symbol 55 Text | Uses:17 | Used by:57 |
Symbol 56 Text | Uses:17 | Used by:57 |
Symbol 57 Button | Uses:55 56 41 | Used by:Timeline |
Symbol 58 Graphic | Used by:83 Timeline | |
Symbol 59 Bitmap | Used by:60 | |
Symbol 60 Graphic | Uses:59 | Used by:Timeline |
Symbol 61 EditableText | Uses:17 | Used by:65 |
Symbol 62 EditableText | Uses:17 | Used by:65 |
Symbol 63 EditableText | Uses:17 | Used by:65 |
Symbol 64 EditableText | Uses:17 | Used by:65 |
Symbol 65 MovieClip | Uses:61 62 63 64 | Used by:Timeline |
Symbol 66 Bitmap | Used by:67 | |
Symbol 67 Graphic | Uses:66 | Used by:82 Timeline |
Symbol 68 Bitmap | Used by:69 | |
Symbol 69 Graphic | Uses:68 | Used by:82 Timeline |
Symbol 70 Bitmap | Used by:71 | |
Symbol 71 Graphic | Uses:70 | Used by:82 Timeline |
Symbol 72 Bitmap | Used by:73 | |
Symbol 73 Graphic | Uses:72 | Used by:82 Timeline |
Symbol 74 Bitmap | Used by:75 | |
Symbol 75 Graphic | Uses:74 | Used by:82 Timeline |
Symbol 76 Bitmap | Used by:77 | |
Symbol 77 Graphic | Uses:76 | Used by:82 Timeline |
Symbol 78 Bitmap | Used by:79 | |
Symbol 79 Graphic | Uses:78 | Used by:82 Timeline |
Symbol 80 Bitmap | Used by:81 | |
Symbol 81 Graphic | Uses:80 | Used by:82 Timeline |
Symbol 82 MovieClip | Uses:67 69 71 73 75 77 79 81 | Used by:Timeline |
Symbol 83 MovieClip | Uses:58 | Used by:84 |
Symbol 84 MovieClip | Uses:83 | Used by:Timeline |
Symbol 85 Button | Uses:49 50 41 | Used by:Timeline |
Symbol 86 Button | Uses:52 53 41 | Used by:Timeline |
Symbol 87 Graphic | Used by:89 | |
Symbol 88 Graphic | Used by:89 | |
Symbol 89 MovieClip | Uses:87 88 | Used by:90 |
Symbol 90 MovieClip | Uses:89 | Used by:Timeline |
Symbol 91 Text | Uses:17 | Used by:94 |
Symbol 92 Text | Uses:17 | Used by:94 |
Symbol 93 Graphic | Used by:94 99 | |
Symbol 94 Button | Uses:91 92 93 | Used by:102 |
Symbol 95 Text | Uses:17 | Used by:102 |
Symbol 96 Text | Uses:17 | Used by:102 |
Symbol 97 Text | Uses:17 | Used by:99 |
Symbol 98 Text | Uses:17 | Used by:99 |
Symbol 99 Button | Uses:97 98 93 | Used by:102 |
Symbol 100 Text | Uses:17 | Used by:102 |
Symbol 101 Text | Uses:17 | Used by:102 |
Symbol 102 MovieClip | Uses:94 95 96 99 100 101 | Used by:Timeline |
Symbol 103 Graphic | Used by:107 110 135 | |
Symbol 104 Graphic | Used by:107 | |
Symbol 105 Text | Uses:17 | Used by:107 |
Symbol 106 Graphic | Used by:107 110 135 | |
Symbol 107 Button | Uses:103 104 105 106 | Used by:Timeline |
Symbol 108 Graphic | Used by:110 | |
Symbol 109 Text | Uses:17 | Used by:110 |
Symbol 110 Button | Uses:103 108 109 106 | Used by:Timeline |
Symbol 111 Graphic | Used by:115 | |
Symbol 112 Graphic | Used by:115 | |
Symbol 113 Text | Uses:17 | Used by:115 |
Symbol 114 Graphic | Used by:115 | |
Symbol 115 Button | Uses:111 112 113 114 | Used by:Timeline |
Symbol 116 Graphic | Used by:120 | |
Symbol 117 Graphic | Used by:120 | |
Symbol 118 Text | Uses:17 | Used by:120 |
Symbol 119 Graphic | Used by:120 124 | |
Symbol 120 Button | Uses:116 117 118 119 | Used by:Timeline |
Symbol 121 Graphic | Used by:124 | |
Symbol 122 Graphic | Used by:124 | |
Symbol 123 Text | Uses:17 | Used by:124 |
Symbol 124 Button | Uses:121 122 123 119 | Used by:Timeline |
Symbol 125 Graphic | Used by:129 | |
Symbol 126 Graphic | Used by:129 | |
Symbol 127 Text | Uses:17 | Used by:129 |
Symbol 128 Graphic | Used by:129 | |
Symbol 129 Button | Uses:125 126 127 128 | Used by:Timeline |
Symbol 130 Text | Uses:17 | Used by:132 |
Symbol 131 Text | Uses:17 | Used by:132 |
Symbol 132 Button | Uses:130 131 41 | Used by:Timeline |
Symbol 133 Graphic | Used by:135 | |
Symbol 134 Text | Uses:17 | Used by:135 |
Symbol 135 Button | Uses:103 133 134 106 | Used by:Timeline |
Symbol 136 Graphic | Used by:138 | |
Symbol 137 Text | Uses:17 | Used by:138 |
Symbol 138 Button | Uses:136 137 41 | Used by:Timeline |
Symbol 139 Text | Uses:17 | Used by:141 |
Symbol 140 Text | Uses:17 | Used by:141 |
Symbol 141 Button | Uses:139 140 41 | Used by:Timeline |
Instance Names
"mcSounds" | Frame 4 | Symbol 16 MovieClip |
"mcBonus0" | Frame 6 | Symbol 65 MovieClip |
"mcTile" | Frame 6 | Symbol 82 MovieClip |
"mcStartPosTile" | Frame 6 | Symbol 82 MovieClip |
"mcNextTile" | Frame 6 | Symbol 82 MovieClip |
"mcRowKiller" | Frame 12 | Symbol 90 MovieClip |
"mcRowKiller" | Frame 15 | Symbol 90 MovieClip |
"mcTimerBar" | Symbol 84 MovieClip Frame 1 | Symbol 83 MovieClip |
"mcRowKillerFrame" | Symbol 90 MovieClip Frame 1 | Symbol 89 MovieClip |
Special Tags
Protect (24) | Timeline Frame 1 | 0 bytes "" |
Labels
"start" | Frame 4 |
"moveTile" | Frame 8 |
"dropTile" | Frame 9 |
"checkTiles" | Frame 10 |
"bonusKill" | Frame 12 |
"gameOver" | Frame 13 |
"help" | Frame 14 |
"moveTile1" | Symbol 16 MovieClip Frame 2 |
"moveTile3" | Symbol 16 MovieClip Frame 3 |
"timeOut" | Symbol 16 MovieClip Frame 4 |
"moveFrame" | Symbol 16 MovieClip Frame 5 |
"gameOver" | Symbol 16 MovieClip Frame 6 |
"click1" | Symbol 16 MovieClip Frame 7 |
"killRow" | Symbol 16 MovieClip Frame 8 |
"levelBonus" | Symbol 16 MovieClip Frame 9 |
"inscores" | Symbol 102 MovieClip Frame 3 |
Dynamic Text Variables
loading | Symbol 2 EditableText | "" |
l1 | Symbol 18 EditableText | "" |
l2 | Symbol 19 EditableText | "" |
l1 | Symbol 20 EditableText | "" |
l2 | Symbol 21 EditableText | "" |
t1 | Symbol 22 EditableText | "" |
t2 | Symbol 23 EditableText | "" |
t1 | Symbol 24 EditableText | "" |
t2 | Symbol 25 EditableText | "" |
s1 | Symbol 26 EditableText | "" |
s2 | Symbol 27 EditableText | "" |
s3 | Symbol 28 EditableText | "" |
s4 | Symbol 29 EditableText | "" |
s5 | Symbol 30 EditableText | "" |
s1 | Symbol 31 EditableText | "" |
s2 | Symbol 32 EditableText | "" |
s3 | Symbol 33 EditableText | "" |
s4 | Symbol 34 EditableText | "" |
s5 | Symbol 35 EditableText | "" |
bonus | Symbol 61 EditableText | "" |
bonus | Symbol 62 EditableText | "" |
bonus | Symbol 63 EditableText | "" |
bonus | Symbol 64 EditableText | "" |
|