STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229672 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2596 · P5191 |
This is the info page for Flash #57088 |
Shapes fall down and you must eliminate them before they reach the bottom. Highlight 3 matching shapes, then click the mouse to remove them. If you wait, 3 more will fall down and you can delete 6 at a time! Deleting 3 gives 4 points. Deleting 6 gives 32 points. (Each shape doubles the bonus.) Touching a different shape to one already highlighted or clicking when only one or two are activated will lose you 50 points. |
Sparked by: Miquette Breitenbach Constructed by: Behrooz 'LLL' Shahriari Music by: 'LJCoffee' |
MiqiBo |
CONTR OLLER |
9999: |
score: |
9999 |
highscore: |
level: |
7-7 |
9999 |
9999 |
7-7 |
This is a temporary message, as an example of something you may get after a certain score. |
GAME OVER |
replay? |
replay? |
ActionScript [AS1/AS2]
Frame 1var touched = new Array(); var score = 0; var highscore = 0; var shapeState = "initialising"; var levelDisplayed = "1-1"; var level = 0; var rows = 0; var globaldy = 0.014; var numberOfShapesInRow = 1; var numberOfShapesInRowMax = 2; var numberOfShapesInRowMin = 1; var numberOfPotentialShapes = 4; var timeElapsed = 0; var shapeDepth = 1; var shapeCounter = new Array(); var shapeLastAppearance = new Array(); var endMessage = "";Frame 2stopAllSounds();Instance of Symbol 45 MovieClip in Frame 5onClipEvent (mouseDown) { _root.testForSuccess(); } onClipEvent (load) { var previousFrameTime = getTimer(); var currentFrameTime = getTimer(); } onClipEvent (enterFrame) { previousFrameTime = currentFrameTime; currentFrameTime = getTimer(); _root.timeElapsed = currentFrameTime - previousFrameTime; }Instance of Symbol 47 MovieClip in Frame 5onClipEvent (enterFrame) { _y = (_y + (_root.timeElapsed * _root.globaldy)); if (-10 < _y) { _y = (_y - 50); _root.newRow(_y); } }Frame 6function nextLevel() { rows++; if (8 < rows) { rows = 0; level++; numberOfPotentialShapes++; if (12 < numberOfPotentialShapes) { numberOfPotentialShapes = 12; globaldy = globaldy + 0.002; } globaldy = globaldy + 0.001; } levelDisplayed = (level + "-") + rows; numberOfShapesInRowMax = level + rows; if (12 < numberOfShapesInRowMax) { numberOfShapesInRowMax = 12; } numberOfShapesInRowMin = numberOfShapesInRowMax - 5; if (numberOfShapesInRowMin < level) { numberOfShapesInRowMin = level; } if (10 < numberOfShapesInRowMax) { numberOfShapesInRowMax = 12; } } function gameOver() { if (score < 50) { endMessage = "Highlight 3 shapes,\nthen click to delete them.\nDelete 6 for more points."; } else if (score < 100) { endMessage = "Tip: delete 6 shapes\nat a time for\n32 points."; } else if (score < 200) { endMessage = "Not bad, but...\nNah, I lied.\nIt's a bad score."; } else if (score < 300) { endMessage = "Getting there.\nDelete 6 when you can.\nBut focus on staying alive."; } else if (score < 400) { endMessage = "Well, I think you've\ngotten the hang of it."; } else if (score < 500) { endMessage = "Woah! Impressive stuff!"; } else if (score < 600) { endMessage = "You're doing well.\nFar better than I expected."; } else if (score < 700) { endMessage = "How did you get \nsuch a good score?\nCan I shake your hand?"; } else { endMessage = "I bow before your skills."; } if ((score < 0) && (50 < highscore)) { endMessage = "Were you trying to do badly?"; } if (highscore < score) { highscore = score; } shapeState = "delete"; gotoAndStop (14); } function highlighting(shapeNumber) { trace("highlighting" + shapeNumber); touched.push(shapeNumber); shapeState = "comboStarted"; checkTouched(); } function checkTouched() { var i; var shapeNumber = touched[0]; var allTheSame = true; i = 1; while (i < touched.length) { if (touched[i] != shapeNumber) { allTheSame = false; touched.length = 0; shapeState = "comboFailed"; score = score - 10; ouch.gotoAndPlay("ouch"); } i++; } return(allTheSame); } function testForSuccess() { var comboLength = touched.length; if (2 < touched.length) { shapeState = "comboGotten"; var bonus = 1; var i = 1; while (i < comboLength) { bonus = bonus * 2; i++; } score = score + bonus; } else { shapeState = "comboFailed"; score = score - 10; ouch.gotoAndPlay("ouch"); } touched.length = 0; } function whatShapeToSpawn() { var picked = 0; var maxAge = 0; var i = 1; while (numberOfPotentialShapes >= i) { if ((shapeCounter[i] == 1) || (shapeCounter[i] == 2)) { picked = i; shapeCounter[picked]++; if (shapeCounter[picked] == 3) { shapeCounter[picked] = 0; } shapeLastAppearance[picked] = 0; return(picked); } i++; } i = 1; while (numberOfPotentialShapes >= i) { if (maxAge < shapeLastAppearance[i]) { maxAge = shapeLastAppearance[i]; picked = i; } i++; } shapeCounter[picked]++; if (shapeCounter[picked] == 3) { shapeCounter[picked] = 0; } shapeLastAppearance[picked] = 0; return(picked); } function newRow(rowHeight) { var rowOrganiser = new Array(); var testingColumn; var shapeToSpawn; var i = 0; while (i < 12) { rowOrganiser[i] = "empty"; i++; } trace("rowOrganiser" + rowOrganiser); i = 0; while (i < numberOfShapesInRow) { shapeToSpawn = whatShapeToSpawn(); trace("shapeToSpawn" + shapeToSpawn); if (shapeToSpawn == 1) { shape1Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 2) { shape2Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 3) { shape3Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 4) { shape4Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 5) { shape5Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 6) { shape6Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 7) { shape7Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 8) { shape8Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 9) { shape9Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 10) { shape10Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 11) { shape11Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } else if (shapeToSpawn == 12) { shape12Mother.duplicateMovieClip("shape" + shapeDepth, shapeDepth); } eval ("shape" + shapeDepth)._y = rowHeight; do { testingColumn = Math.floor(Math.random() * 12); } while (rowOrganiser[testingColumn] != "empty"); rowOrganiser[testingColumn] = "filled"; eval ("shape" + shapeDepth)._x = 25 + (testingColumn * 50); shapeDepth++; i++; } numberOfShapesInRow++; if (numberOfShapesInRowMax < numberOfShapesInRow) { numberOfShapesInRow = numberOfShapesInRowMin; } nextLevel(); i = 0; while (i < 32) { shapeLastAppearance[i] = shapeLastAppearance[i] + 1; i++; } } score = 0; touched.length = 0; shapeState = "initialising"; level = 0; rows = 0; numberOfShapesInRow = 2; numberOfShapesInRowMax = 2; numberOfShapesInRowMin = 1; numberOfPotentialShapes = 6; globaldy = 0.015; var i = 0; while (i < 32) { shapeCounter[i] = 0; i++; } i = 0; while (i < 32) { shapeLastAppearance[i] = 0; i++; } stop();Symbol 26 Buttonon (release) { getURL ("http://www.newgrounds.com", "blank"); }Symbol 31 Buttonon (release) { _root.play(); }Symbol 32 MovieClip Frame 1_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop (3); }Symbol 32 MovieClip Frame 2gotoAndPlay (1);Symbol 43 MovieClip Frame 1stop();Instance of Symbol 49 MovieClip in Symbol 50 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(1114129); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape1Mother") { myX = _root._xmouse; myY = _root._ymouse; if (!highlighted) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(10027161); _root.highlighting(1); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 52 MovieClip in Symbol 53 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(1644800); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape2Mother") { myX = _root._xmouse; myY = _root._ymouse; if (highlighted != true) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(10066176); _root.highlighting(2); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 55 MovieClip in Symbol 56 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(6425); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape3Mother") { myX = _root._xmouse; myY = _root._ymouse; if (highlighted != true) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(39321); _root.highlighting(3); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 58 MovieClip in Symbol 59 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(1048576); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape4Mother") { myX = _root._xmouse; myY = _root._ymouse; if (highlighted != true) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(16711680); _root.highlighting(4); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 61 MovieClip in Symbol 62 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(4096); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape5Mother") { myX = _root._xmouse; myY = _root._ymouse; if (highlighted != true) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(65280); _root.highlighting(5); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 64 MovieClip in Symbol 65 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(16); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape6Mother") { myX = _root._xmouse; myY = _root._ymouse; if (highlighted != true) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(255); _root.highlighting(6); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 67 MovieClip in Symbol 68 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(0); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape7Mother") { myX = _root._xmouse; myY = _root._ymouse; if (!highlighted) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(4980965); _root.highlighting(7); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 70 MovieClip in Symbol 71 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(0); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape8Mother") { myX = _root._xmouse; myY = _root._ymouse; if (!highlighted) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(19685); _root.highlighting(8); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 73 MovieClip in Symbol 74 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(0); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape9Mother") { myX = _root._xmouse; myY = _root._ymouse; if (!highlighted) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(5039360); _root.highlighting(9); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 76 MovieClip in Symbol 77 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(0); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape10Mother") { myX = _root._xmouse; myY = _root._ymouse; if (!highlighted) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(15007820); _root.highlighting(10); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 79 MovieClip in Symbol 80 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(0); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape11Mother") { myX = _root._xmouse; myY = _root._ymouse; if (!highlighted) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(58700); _root.highlighting(11); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Instance of Symbol 82 MovieClip in Symbol 83 MovieClip Frame 1onClipEvent (load) { var highlighted = false; shapeColour = new Color(this); shapeColour.setRGB(0); var myX; var myY; var dy = 0.5; } onClipEvent (enterFrame) { if (_parent._name != "shape12Mother") { myX = _root._xmouse; myY = _root._ymouse; if (!highlighted) { if (this.hitTest(myX, myY, true) == true) { trace("highlighting"); trace("shapeState: " + _root.shapeState); highlighted = true; shapeColour.setRGB(15027200); _root.highlighting(12); } } _parent._y = _parent._y + (_root.timeElapsed * _root.globaldy); if (370 < _parent._y) { _root.gameOver(); } if (_root.shapeState == "comboFailed") { shapeColour.setRGB(0); highlighted = false; } if (((_root.shapeState == "comboGotten") && (highlighted)) || (_root.shapeState == "delete")) { _parent.removeMovieClip(); } } }Symbol 100 Buttonon (press) { gotoAndPlay (5); }
Library Items
Symbol 1 ShapeTweening | Used by:17 | ||
Symbol 2 ShapeTweening | Used by:17 | ||
Symbol 3 ShapeTweening | Used by:17 | ||
Symbol 4 ShapeTweening | Used by:17 | ||
Symbol 5 ShapeTweening | Used by:17 | ||
Symbol 6 ShapeTweening | Used by:17 | ||
Symbol 7 ShapeTweening | Used by:17 | ||
Symbol 8 ShapeTweening | Used by:17 | ||
Symbol 9 ShapeTweening | Used by:17 | ||
Symbol 10 ShapeTweening | Used by:17 | ||
Symbol 11 ShapeTweening | Used by:17 | ||
Symbol 12 ShapeTweening | Used by:17 | ||
Symbol 13 ShapeTweening | Used by:17 | ||
Symbol 14 ShapeTweening | Used by:17 | ||
Symbol 15 ShapeTweening | Used by:17 | ||
Symbol 16 Graphic | Used by:17 | ||
Symbol 17 MovieClip | Uses:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | Used by:Timeline | |
Symbol 18 Graphic | Used by:32 | ||
Symbol 19 Graphic | Used by:20 45 | ||
Symbol 20 MovieClip | Uses:19 | Used by:32 | |
Symbol 21 Graphic | Used by:32 | ||
Symbol 22 Graphic | Used by:25 26 | ||
Symbol 23 Graphic | Used by:25 26 | ||
Symbol 24 Graphic | Used by:25 26 | ||
Symbol 25 MovieClip | Uses:22 23 24 | Used by:26 | |
Symbol 26 Button | Uses:25 22 23 24 | Used by:32 | |
Symbol 27 Graphic | Used by:31 | ||
Symbol 28 Graphic | Used by:31 | ||
Symbol 29 Graphic | Used by:31 | ||
Symbol 30 Graphic | Used by:31 | ||
Symbol 31 Button | Uses:27 28 29 30 | Used by:32 | |
Symbol 32 MovieClip | Uses:18 20 21 26 31 | Used by:Timeline | |
Symbol 33 Font | Used by:35 | ||
Symbol 34 Font | Used by:35 36 94 | ||
Symbol 35 Text | Uses:33 34 | Used by:Timeline | |
Symbol 36 Text | Uses:34 | Used by:Timeline | |
Symbol 37 Font | Used by:38 44 84 85 86 87 89 90 91 92 93 95 97 98 | ||
Symbol 38 Text | Uses:37 | Used by:Timeline | |
Symbol 39 Sound | Used by:Timeline | ||
Symbol 40 Graphic | Used by:Timeline | ||
Symbol 41 Graphic | Used by:42 | ||
Symbol 42 MovieClip | Uses:41 | Used by:43 | |
Symbol 43 MovieClip | Uses:42 | Used by:Timeline | |
Symbol 44 Text | Uses:37 | Used by:45 | |
Symbol 45 MovieClip | Uses:19 44 | Used by:Timeline | |
Symbol 46 Graphic | Used by:47 | ||
Symbol 47 MovieClip | Uses:46 | Used by:Timeline | |
Symbol 48 Graphic | Used by:49 | ||
Symbol 49 MovieClip | Uses:48 | Used by:50 | |
Symbol 50 MovieClip | Uses:49 | Used by:Timeline | |
Symbol 51 Graphic | Used by:52 | ||
Symbol 52 MovieClip | Uses:51 | Used by:53 | |
Symbol 53 MovieClip | Uses:52 | Used by:Timeline | |
Symbol 54 Graphic | Used by:55 | ||
Symbol 55 MovieClip | Uses:54 | Used by:56 | |
Symbol 56 MovieClip | Uses:55 | Used by:Timeline | |
Symbol 57 Graphic | Used by:58 | ||
Symbol 58 MovieClip | Uses:57 | Used by:59 | |
Symbol 59 MovieClip | Uses:58 | Used by:Timeline | |
Symbol 60 Graphic | Used by:61 | ||
Symbol 61 MovieClip | Uses:60 | Used by:62 | |
Symbol 62 MovieClip | Uses:61 | Used by:Timeline | |
Symbol 63 Graphic | Used by:64 | ||
Symbol 64 MovieClip | Uses:63 | Used by:65 | |
Symbol 65 MovieClip | Uses:64 | Used by:Timeline | |
Symbol 66 Graphic | Used by:67 | ||
Symbol 67 MovieClip | Uses:66 | Used by:68 | |
Symbol 68 MovieClip | Uses:67 | Used by:Timeline | |
Symbol 69 Graphic | Used by:70 | ||
Symbol 70 MovieClip | Uses:69 | Used by:71 | |
Symbol 71 MovieClip | Uses:70 | Used by:Timeline | |
Symbol 72 Graphic | Used by:73 | ||
Symbol 73 MovieClip | Uses:72 | Used by:74 | |
Symbol 74 MovieClip | Uses:73 | Used by:Timeline | |
Symbol 75 Graphic | Used by:76 | ||
Symbol 76 MovieClip | Uses:75 | Used by:77 | |
Symbol 77 MovieClip | Uses:76 | Used by:Timeline | |
Symbol 78 Graphic | Used by:79 | ||
Symbol 79 MovieClip | Uses:78 | Used by:80 | |
Symbol 80 MovieClip | Uses:79 | Used by:Timeline | |
Symbol 81 Graphic | Used by:82 | ||
Symbol 82 MovieClip | Uses:81 | Used by:83 | |
Symbol 83 MovieClip | Uses:82 | Used by:Timeline | |
Symbol 84 EditableText | Uses:37 | Used by:Timeline | |
Symbol 85 Text | Uses:37 | Used by:Timeline | |
Symbol 86 EditableText | Uses:37 | Used by:Timeline | |
Symbol 87 Text | Uses:37 | Used by:Timeline | |
Symbol 88 Text | Used by:Timeline | ||
Symbol 89 Text | Uses:37 | Used by:Timeline | |
Symbol 90 EditableText | Uses:37 | Used by:Timeline | |
Symbol 91 EditableText | Uses:37 | Used by:Timeline | |
Symbol 92 EditableText | Uses:37 | Used by:Timeline | |
Symbol 93 EditableText | Uses:37 | Used by:Timeline | |
Symbol 94 EditableText | Uses:34 | Used by:Timeline | |
Symbol 95 Text | Uses:37 | Used by:Timeline | |
Symbol 96 Graphic | Used by:100 | ||
Symbol 97 Text | Uses:37 | Used by:100 | |
Symbol 98 Text | Uses:37 | Used by:100 | |
Symbol 99 Graphic | Used by:100 | ||
Symbol 100 Button | Uses:96 97 98 99 | Used by:Timeline |
Instance Names
"ouch" | Frame 5 | Symbol 43 MovieClip |
"shape1Mother" | Frame 5 | Symbol 50 MovieClip |
"shape2Mother" | Frame 5 | Symbol 53 MovieClip |
"shape3Mother" | Frame 5 | Symbol 56 MovieClip |
"shape4Mother" | Frame 5 | Symbol 59 MovieClip |
"shape5Mother" | Frame 5 | Symbol 62 MovieClip |
"shape6Mother" | Frame 5 | Symbol 65 MovieClip |
"shape7Mother" | Frame 5 | Symbol 68 MovieClip |
"shape8Mother" | Frame 5 | Symbol 71 MovieClip |
"shape9Mother" | Frame 5 | Symbol 74 MovieClip |
"shape10Mother" | Frame 5 | Symbol 77 MovieClip |
"shape11Mother" | Frame 5 | Symbol 80 MovieClip |
"shape12Mother" | Frame 5 | Symbol 83 MovieClip |
"bar" | Symbol 32 MovieClip Frame 1 | Symbol 20 MovieClip |
Labels
"gameStart" | Frame 5 |
"gameOver" | Frame 14 |
"loaded" | Symbol 32 MovieClip Frame 3 |
"ouch" | Symbol 43 MovieClip Frame 2 |
Dynamic Text Variables
_root.score | Symbol 84 EditableText | "9999:" |
_root.highscore | Symbol 86 EditableText | "9999" |
_root.levelDisplayed | Symbol 90 EditableText | "7-7" |
_root.score | Symbol 91 EditableText | "9999" |
_root.highscore | Symbol 92 EditableText | "9999" |
_root.levelDisplayed | Symbol 93 EditableText | "7-7" |
endMessage | Symbol 94 EditableText | "This is a temporary message, as an example of something you may get after a certain score." |
|