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

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

MiqiBo.swf

This is the info page for
Flash #57088

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


Text
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 1
var 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 2
stopAllSounds();
Instance of Symbol 45 MovieClip in Frame 5
onClipEvent (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 5
onClipEvent (enterFrame) { _y = (_y + (_root.timeElapsed * _root.globaldy)); if (-10 < _y) { _y = (_y - 50); _root.newRow(_y); } }
Frame 6
function 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 Button
on (release) { getURL ("http://www.newgrounds.com", "blank"); }
Symbol 31 Button
on (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 2
gotoAndPlay (1);
Symbol 43 MovieClip Frame 1
stop();
Instance of Symbol 49 MovieClip in Symbol 50 MovieClip Frame 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 Button
on (press) { gotoAndPlay (5); }

Library Items

Symbol 1 ShapeTweeningUsed by:17
Symbol 2 ShapeTweeningUsed by:17
Symbol 3 ShapeTweeningUsed by:17
Symbol 4 ShapeTweeningUsed by:17
Symbol 5 ShapeTweeningUsed by:17
Symbol 6 ShapeTweeningUsed by:17
Symbol 7 ShapeTweeningUsed by:17
Symbol 8 ShapeTweeningUsed by:17
Symbol 9 ShapeTweeningUsed by:17
Symbol 10 ShapeTweeningUsed by:17
Symbol 11 ShapeTweeningUsed by:17
Symbol 12 ShapeTweeningUsed by:17
Symbol 13 ShapeTweeningUsed by:17
Symbol 14 ShapeTweeningUsed by:17
Symbol 15 ShapeTweeningUsed by:17
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16Used by:Timeline
Symbol 18 GraphicUsed by:32
Symbol 19 GraphicUsed by:20 45
Symbol 20 MovieClipUses:19Used by:32
Symbol 21 GraphicUsed by:32
Symbol 22 GraphicUsed by:25 26
Symbol 23 GraphicUsed by:25 26
Symbol 24 GraphicUsed by:25 26
Symbol 25 MovieClipUses:22 23 24Used by:26
Symbol 26 ButtonUses:25 22 23 24Used by:32
Symbol 27 GraphicUsed by:31
Symbol 28 GraphicUsed by:31
Symbol 29 GraphicUsed by:31
Symbol 30 GraphicUsed by:31
Symbol 31 ButtonUses:27 28 29 30Used by:32
Symbol 32 MovieClipUses:18 20 21 26 31Used by:Timeline
Symbol 33 FontUsed by:35
Symbol 34 FontUsed by:35 36 94
Symbol 35 TextUses:33 34Used by:Timeline
Symbol 36 TextUses:34Used by:Timeline
Symbol 37 FontUsed by:38 44 84 85 86 87 89 90 91 92 93 95 97 98
Symbol 38 TextUses:37Used by:Timeline
Symbol 39 SoundUsed by:Timeline
Symbol 40 GraphicUsed by:Timeline
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:43
Symbol 43 MovieClipUses:42Used by:Timeline
Symbol 44 TextUses:37Used by:45
Symbol 45 MovieClipUses:19 44Used by:Timeline
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:Timeline
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:50
Symbol 50 MovieClipUses:49Used by:Timeline
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:53
Symbol 53 MovieClipUses:52Used by:Timeline
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:56
Symbol 56 MovieClipUses:55Used by:Timeline
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:59
Symbol 59 MovieClipUses:58Used by:Timeline
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:62
Symbol 62 MovieClipUses:61Used by:Timeline
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:65
Symbol 65 MovieClipUses:64Used by:Timeline
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:68
Symbol 68 MovieClipUses:67Used by:Timeline
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:71
Symbol 71 MovieClipUses:70Used by:Timeline
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:74
Symbol 74 MovieClipUses:73Used by:Timeline
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:75Used by:77
Symbol 77 MovieClipUses:76Used by:Timeline
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:80
Symbol 80 MovieClipUses:79Used by:Timeline
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:83
Symbol 83 MovieClipUses:82Used by:Timeline
Symbol 84 EditableTextUses:37Used by:Timeline
Symbol 85 TextUses:37Used by:Timeline
Symbol 86 EditableTextUses:37Used by:Timeline
Symbol 87 TextUses:37Used by:Timeline
Symbol 88 TextUsed by:Timeline
Symbol 89 TextUses:37Used by:Timeline
Symbol 90 EditableTextUses:37Used by:Timeline
Symbol 91 EditableTextUses:37Used by:Timeline
Symbol 92 EditableTextUses:37Used by:Timeline
Symbol 93 EditableTextUses:37Used by:Timeline
Symbol 94 EditableTextUses:34Used by:Timeline
Symbol 95 TextUses:37Used by:Timeline
Symbol 96 GraphicUsed by:100
Symbol 97 TextUses:37Used by:100
Symbol 98 TextUses:37Used by:100
Symbol 99 GraphicUsed by:100
Symbol 100 ButtonUses:96 97 98 99Used by:Timeline

Instance Names

"ouch"Frame 5Symbol 43 MovieClip
"shape1Mother"Frame 5Symbol 50 MovieClip
"shape2Mother"Frame 5Symbol 53 MovieClip
"shape3Mother"Frame 5Symbol 56 MovieClip
"shape4Mother"Frame 5Symbol 59 MovieClip
"shape5Mother"Frame 5Symbol 62 MovieClip
"shape6Mother"Frame 5Symbol 65 MovieClip
"shape7Mother"Frame 5Symbol 68 MovieClip
"shape8Mother"Frame 5Symbol 71 MovieClip
"shape9Mother"Frame 5Symbol 74 MovieClip
"shape10Mother"Frame 5Symbol 77 MovieClip
"shape11Mother"Frame 5Symbol 80 MovieClip
"shape12Mother"Frame 5Symbol 83 MovieClip
"bar"Symbol 32 MovieClip Frame 1Symbol 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.scoreSymbol 84 EditableText"9999:"
_root.highscoreSymbol 86 EditableText"9999"
_root.levelDisplayedSymbol 90 EditableText"7-7"
_root.scoreSymbol 91 EditableText"9999"
_root.highscoreSymbol 92 EditableText"9999"
_root.levelDisplayedSymbol 93 EditableText"7-7"
endMessageSymbol 94 EditableText"This is a temporary message, as an example of something you may get after a certain score."




http://swfchan.com/12/57088/info.shtml
Created: 18/4 -2019 15:25:10 Last modified: 18/4 -2019 15:25:10 Server time: 09/05 -2024 10:47:52