STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229430 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2574 · P5147 |
This is the info page for Flash #23602 |
0 |
Icarus was the son of Daedalus, an ingenious architect and inventor. Among other things Daedalus designed the Labyrinth, an underground maze of endless twists and tunnels. King Minos of Crete imprisoned Daedalus and Icarus in the Labyrinth from where there was no escape. So, Daedalus, being an ingenious inventor, created wings to enable them to fly out! |
Icarus and Daedalus attached their wings to their shoulders with wax. Daedalus warned Icarus not to fly too close to the sun. And so father and son flew out of the Labyrinth and up into the sky. Daedalus made a safe escape, but poor Icarus, despite his father's warning, flew too close to the sun, melting the wax of his wings and crashing into the sea. |
The Story of a Foolish Boy:: Icarus was the son of Daedalus, an ingenious architect and inventor. Among other things Daedalus designed the Labyrinth, an underground maze of endless twists and tunnels. |
King Minos of Crete imprisoned Daedalus and Icarus in the Labyrinth from where there was no escape. So, Daedalus, being an ingenious inventor, created wings to enable them to fly out! |
Icarus and Daedalus attached their wings to their shoulders with wax. Daedalus warned Icarus not to fly too close to the sun. And so father and son flew out of the Labyrinth and up into the sky. |
Daedalus made a safe escape, but poor Icarus, despite his father's warning, flew too close to the sun, melting the wax of his wings and crashing into the sea.... |
Help Icarus gather enough feathers to build his wings. |
Use the left and right keys to move Icarus on the machine. |
Use the spacebar to launch Icarus. The longer you hold it the further he goes. watch the power bar at the bottom of the screen |
Release the spacebar when the power is full. (any more or less + he won't reach the chickens) |
Use the and down keys to flip Icarus on the machine. (up for feathers and down for chickens) |
When you catch a chicken, it gets sucked into the machine and feathers get spat out the top. Catch as many feathers as you can before your time runs out. |
Fly Icarus as close as you can to the sun |
Use the up key to make Icarus flap his wings and fly. Use left and right to steer. |
Use the down key to make Icarus dive |
The Sun will melt Icarus' wings, so try to stay under clouds. Keep an eye on the power meter at the bottom of the screen. Collect obols to get more energy. |
Watch out for birds! |
Watch out for Lightning! |
ActionScript [AS1/AS2]
Frame 2preloaderChicken = function (tl, num) { this._clip = tl.attachMovie("chicken", "pchicken" + num, num); this._clip.gotoAndStop("preload"); this._clip._y = 550; this._clip._x = 50 + (num * this._clip._width); this._clip.obj = this; var blinkevery = (Math.round(Math.random() * 3000) + 2000); this.blinker = setInterval(this, "blinkie", blinkevery, this); this.off = false; }; preloaderChicken.prototype.blinkie = function (obj) { obj._clip.the_chicken.play(); }; preloaderChicken.prototype.cleanUp = function () { this._clip.removeMovieClip(); clearInterval(this.blinker); delete this; }; preloaderChicken.prototype.peck = function () { this._clip.gotoAndStop("peckingright"); }; preloaderChicken.prototype.panic = function () { this._clip.speed = (Math.random() * 10) + 5; this._clip.gotoAndStop("panicright"); this._clip.onEnterFrame = function () { this._x = this._x + this.speed; if (this._x > 430) { this.obj.cleanUp(); } }; };Frame 3chickenlist = []; upto = 0; var i = 0; while (i < 10) { chickenlist.push(new preloaderChicken(this, i)); i++; } checkLoad = function (tl) { var lded = tl.getBytesLoaded(); var ttl = tl.getBytesTotal(); var perc = ((lded / ttl) * 100); var percby10 = Math.floor(perc / 10); trace(percby10); while (percby10 > tl.upto) { tl.chickenlist[upto++].peck(); } if (perc == 100) { clearInterval(tl.loadChecker); var i = 0; while (i < 10) { tl.chickenlist[i].panic(); tl.play(); i++; } } }; loadChecker = setInterval(checkLoad, 1000, this); stop();Frame 4_global.mainTL = this; _global.gameon = false; _global.muzak = new Sound(); _global.muzakPlaying = true; muzak.attachSound("muzak"); muzak.setVolume(20); muzak.onSoundComplete = function () { muzak.start(); }; if (muzakPlaying == true) { muzak.start(); } MovieClip.prototype.setTint = function (r, g, b, amount) { this.c = new Color(this); var percent = (100 - amount); var trans = new Object(); trans.ra = (trans.ga = (trans.ba = percent)); var ratio = (amount / 100); trans.rb = r * ratio; trans.gb = g * ratio; trans.bb = b * ratio; this.c.setTransform(trans); };Frame 5frame._x = -65.6; frame._y = -0.9; frame.swapDepths(15); chicken_backdrop._x = 0; chicken_backdrop._y = 0; if (muzakPlaying == true) { muzak.start(); }Frame 6stop();Frame 7_global.clock = {}; clock.init = function (clk, st) { this._clip = clk; this.time = st; this._clip.time.text = String(this.time); }; clock._start = function () { this._timer = setInterval(this, "decrement", 1000); }; clock._stop = function () { clearInterval(this._timer); }; clock.decrement = function () { this.time--; if (this.time == 0) { gameover("time"); } this._clip.time.text = String(this.time); }; clock.increment = function (by) { this.time = this.time + by; this._clip.time.text = String(this.time); }; _global.score = {}; score.init = function (clp) { this._clip = clp; this._score = 0; this._clip.time.text = String(this._score); }; score.increment = function (by) { this._score = this._score + by; this._clip.time.text = String(this._score); clock.increment(2); this._clip.play(); }; score.getscore = function () { return(this._score); }; _global.chickens = {}; chickens.init = function () { this.list = []; this.baseLine = 525; this.MINX = -20; this.MAXX = 360; this.initial = 3; this.maxi = 10; this.index = 0; this.holder = createEmptyMovieClip("chickHolder", 2); this.maker = setInterval(chickens, "initer", 3000); this.balds = 5; this.beberk1 = new Sound(); this.beberk1.attachSound("chicken man1.wav"); this.beberk2 = new Sound(); this.beberk2.attachSound("chickenBit.wav"); this.beberker = setInterval(this.beberk, (Math.random() * 2000) + 2000); }; chickens.beberk = function () { clearInterval(chickens.beberker); if (Math.random() < 0.5) { chickens.beberk2.start(); } chickens.beberk1.start(); chickens.beberker = setInterval(chickens.beberk, (Math.random() * 2000) + 2000); }; chickens.cleanUp = function () { this.holder.removeMovieClip(); }; chickens.deleteIt = function () { this.toremove._clip.removeMovieClip(); this.toremove._alive = false; }; chickens.makeBaldOne = function () { var a = mainTL.attachMovie("baldie", "baldie" + this.balds, this.balds); mainTL["baldie" + this.balds]._x = 223; mainTL["baldie" + this.balds]._y = 545; mainTL["baldie" + this.balds].onEnterFrame = function () { this._x = this._x - 10; if (this._x < -50) { this.removeMovieClip(); } }; if ((this.balds++) > 10) { this.balds = 5; } }; chickens.initer = function () { this.initial--; if (this.initial > 0) { this.makenew(); } else { clearInterval(this.maker); this.maker = setInterval(this, "makenew", 10000); } }; chickens.makenew = function () { i = 0; while (i < this.list.length) { var chick = this.list.shift(); if (chick._alive == true) { this.list.push(chick); } i++; } if (this.list.length > this.maxi) { return(undefined); } this.list.push(new chicken(this.index++)); clearInterval(this.maker); inter = this.list.length * 1000; this.maker = setInterval(this, "makenew", inter); }; chicken = function (num) { this.depth = Math.ceil(Math.random() * 25); this._facing = "right"; this._action = "walking"; this._alive = true; this._clip = chickens.holder.attachMovie("chicken", "chicken" + num, 100 + num); this._clip._y = chickens.baseLine + this.depth; this._clip._x = -20; this._clip.obj = this; var changeEvery = (Math.round(Math.random() * 3000) + 5000); this._changer = setInterval(this, "_change", changeEvery); this._clip.onEnterFrame = this.onWalk; }; chicken.prototype._change = function () { clearInterval(this._changer); if (Math.random() > 0.7) { if (this._action != "panicking") { this.panic(); return(undefined); } } switch (this._action) { case "walking" : if (Math.random() > 0.6) { if (this._facing == "left") { this._facing = "right"; } else { this._facing = "left"; } } else { this._action = "pecking"; this._clip.onEnterFrame = this.onPeck; } break; case "pecking" : if (Math.random() > 0.5) { if (this._facing == "left") { this._facing = "right"; } else { this._facing = "left"; } } else { this._action = "walking"; if (this._facing == "left") { this._facing = "right"; } else { this._facing = "left"; } this._clip.onEnterFrame = this.onWalk; } break; case "panicking" : this._action = "walking"; if (this._facing == "left") { this._facing = "right"; } else { this._facing = "left"; } this._clip.onEnterFrame = this.onWalk; } var changeEvery = (Math.round(Math.random() * 3000) + 1000); this._changer = setInterval(this, "_change", changeEvery); }; chicken.prototype.panic = function () { clearInterval(this._changer); this.pp = 5; this._action = "panicking"; this._clip.onEnterFrame = this.onPanic; }; chicken.prototype.onPanic = function () { this.gotoAndStop("panic" + this.obj._facing); switch (this.obj._facing) { case "left" : var moveme = (-this.obj.pp); break; case "right" : var moveme = this.obj.pp; break; default : var moveme = 0; } this._x = this._x + moveme; this.obj.pp = this.obj.pp - 0.1; if (moveme < 2) { var changeEvery = (Math.round(Math.random() * 3000) + 2000); this.obj._changer = setInterval(this.obj, "_change", changeEvery); this._action = "walking"; this.onEnterFrame = this.obj.onWalk; } this.obj.render(); }; chicken.prototype.onWalk = function () { this.gotoAndStop("walk" + this.obj._facing); switch (this.obj._facing) { case "left" : var moveme = (-2); break; case "right" : var moveme = 2; break; default : var moveme = 0; } this._x = this._x + moveme; this.obj.render(); }; chicken.prototype.onPeck = function () { this.gotoAndStop("pecking" + this.obj._facing); this.obj.render(); }; chicken.prototype.render = function () { if ((this._clip._x > chickens.MAXX) || (this._clip._x < -20)) { this._clip.removeMovieClip(); this._alive = false; chickens.makenew(); } this._clip.swapDepths((this.depth * 380) + (this._x + 20)); }; _global.feathers = {}; feathers.init = function () { this.list = []; this._clip = mainTL.createEmptyMovieClip("feathers_holder", 4); }; feathers.cleanUp = function () { clearInterval(this._showerer); clearInterval(this._showerer2); this._clip.removeMovieClip(); }; feathers.shower = function () { clearInterval(this._showerer); this.shower_num = this.shower_num + (Math.round(Math.random() * 3) + 1); var ran = Math.round(Math.random() * 2000); this._showerer2 = setInterval(this, "makenew", ran); }; feathers.makenew = function () { if (this.shower_num > 0) { this.list.push(new feather(this.list.length, this._clip)); this.shower_num--; } else { clearInterval(this._showerer2); } }; feather = function (num, tl) { this._clip = tl.attachMovie("feather", "feather" + num, 1 + num); this._clip._x = (Math.random() * 320) + 20; this._clip._y = -10; this._clip.spd = Math.random() * 3; this._clip.obj = this; this._clip.zeropoint = [this._clip._x, this._clip._y]; this._clip.onEnterFrame = this.onFall; this._checker = setInterval(this, "check", 100); }; feather.prototype.onFall = function () { this._y = this._y + this.spd; this._rotation = this._rotation + 5; if (this._y > 550) { this.onEnterFrame = this.obj.onFade; } }; feather.prototype.onFade = function () { this._alpha = this._alpha - 5; if (this._alpha < 5) { this.removeMovieClip(); } }; feather.prototype.check = function () { if ((_main._clip._arm._icarus._currentframe != 12) && (_main._clip._arm._icarus._currentframe != 6)) { return(undefined); } var ix = (((_main._clip._arm._icarus._grab._x + _main._clip._arm._icarus._x) + _main._clip._arm._x) + _main._clip._x); var fx = this._clip._x; var dx = (fx - ix); if (Math.abs(dx) < 30) { var iy = (((_main._clip._arm._icarus._grab._y + _main._clip._arm._icarus._y) + _main._clip._arm._y) + _main._clip._y); var fy = this._clip._y; var dy = (fy - iy); if ((dy < 15) && (dy > -15)) { clearInterval(this._checker); _global.featherID = this; if (dx < 0) { _main._catch("right"); } else { _main._catch("left"); } } } }; _global._powerBar = {}; _powerBar.init = function () { this._clip = power_bar; this.power = 0; this._clip._bar._width = 0; this.listening = true; this.canrelease = 0; }; _powerBar.getPower = function () { var _pow = this._clip._bar._width; if (_pow > 99) { _pow = 99; } if (_pow < 1) { _pow = 1; } return(_pow / 100); }; _powerBar.goUp = function () { this._bar._width = this._bar._width + 5; if (this._bar._width == 100) { this.onEnterFrame = _powerBar.goDown; } }; _powerBar.goDown = function () { this._bar._width = this._bar._width - 5; if (this._bar._width == 0) { this.onEnterFrame = _powerBar.goUp; } }; _powerBar.goDownToZero = function () { this._bar._width = this._bar._width - 5; if (this._bar._width == 0) { this.onEnterFrame = undefined; } }; _powerBar.start = function () { if (!this.listening) { return(undefined); } this.listening = false; this._clip._bar._width = 5; this._clip.onEnterFrame = this.goUp; }; _powerBar.stop = function () { this.listening = true; this._clip.onEnterFrame = this.goDownToZero; }; _global._main = {}; _main.init = function () { this._clip = machine; this.thrust = 0; this.XARMMAX = 53; this.XARMMIN = -220; this.YARMMINUP = -116; this.YARMMAXUP = -254; this.MAXTHRUST = 20; this.YARMMIN = -116; this.YARMMAX = 20; this.DIFF = 150; this.ARMDISTUP = Math.abs(this.YARMMINUP - this.YARMMAXUP); this.ARMDISTDOWN = Math.abs(this.YARMMIN - this.YARMMAX); this.GRABDISTX = 35; this.GRABDISTY = 40; this.WARN = 0.2; this.NEXTHARD = 3; this.HARDINCREASE = this.NEXTHARD; this.collectSound = new Sound(); this.collectSound.attachSound("ping"); this._clip._daedalus.onEnterFrame = function () { var hasMoved = 0; if (Key.isDown(37)) { if ((_parent._arm._icarus._currentframe == 1) || (_parent._arm._icarus._currentframe == 6)) { _main.thrust = _main.thrust - 1; } else { _main.thrust = _main.thrust - 0.5; } hasMoved = 1; _main._clip._daedalus.gotoAndStop("active"); _main._clip._arm._cog.gotoAndStop("active"); } if (Key.isDown(39)) { if ((_parent._arm._icarus._currentframe == 1) || (_parent._arm._icarus._currentframe == 6)) { _main.thrust = _main.thrust + 1; } else { _main.thrust = _main.thrust + 0.5; } hasMoved = 1; _main._clip._daedalus.gotoAndStop("active"); _main._clip._arm._cog.gotoAndStop("active"); } if (!hasMoved) { _main._clip._daedalus.gotoAndStop("inactive"); _main._clip._arm._cog.gotoAndStop("inactive"); _main.thrust = _main.thrust - (_main.thrust / 10); if (Math.abs(_main.thrust) < 0.1) { _main.thrust = 0; } } _main.render(); }; this.onKeyDown = function () { if (Key.getCode() == 38) { this.flip("up"); } if (Key.getCode() == 40) { this.flip("down"); } if (Key.getCode() == 32) { this.startPower(); } }; this.onKeyUp = function () { if (Key.getCode() == 32) { this.stopPower(); } if (Key.getCode() == 8) { this.debug(); } }; Key.addListener(this); }; _main.render = function () { if (this.thrust < (-this.MAXTHRUST)) { this.thrust = -this.MAXTHRUST; } if (this.thrust > this.MAXTHRUST) { this.thrust = this.MAXTHRUST; } this._clip._arm._x = this._clip._arm._x + this.thrust; if (this._clip._arm._x < this.XARMMIN) { this._clip._arm._x = this.XARMMIN; } if (this._clip._arm._x > this.XARMMAX) { this._clip._arm._x = this.XARMMAX; } }; _main.flip = function (upDown) { if (upDown == "up") { if (this._clip._arm._icarus._currentframe == 1) { this._clip._arm._icarus.gotoAndStop(4); } } else if (this._clip._arm._icarus._currentframe == 6) { this._clip._arm._icarus.gotoAndStop(5); } }; _main.startPower = function () { _powerBar.start(); }; _main.stopPower = function () { _powerBar.stop(); this.release(); }; _main.release = function () { if (!gameon) { return(undefined); } if ((this._clip._arm._icarus._currentframe != 1) && (this._clip._arm._icarus._currentframe != 6)) { return(undefined); } if (this._clip._arm._icarus._currentframe == 1) { this.release_down(); } else { this.release_up(); } }; _main.release_up = function () { var _pow = _powerBar.getPower(); this.spd = 3 + Math.round((100 - _pow2) / 10); var lngth = (this.ARMDISTUP - (this.DIFF - (_pow * this.DIFF))); this.tgt = this.YARMMINUP - lngth; if (this.tgt > this._clip._arm._icarus._y) { this.tgt = this._clip._arm._icarus._y - 5; } this._clip._arm._icarus.gotoAndStop("up2"); this._clip.onEnterFrame = function () { var a = _main.tgt; var aa = this._arm._icarus._y; var dist = Math.abs(_main.tgt - this._arm._icarus._y); if (dist < 1) { _main.grab_feather(); } else { dist = dist / _main.spd; this._arm._icarus._y = this._arm._icarus._y - dist; } }; }; _main.release_down = function () { if (Math.random() < this.WARN) { this.warnChickens(); } var _pow = _powerBar.getPower(); this.spd = 3 + Math.round((100 - _pow2) / 10); var lngth = (this.ARMDISTDOWN - (this.DIFF - (_pow * this.DIFF))); this.tgt = lngth + this.YARMMIN; this._clip._arm._icarus.gotoAndStop("plunge"); this._clip.onEnterFrame = function () { dist = _main.tgt - this._arm._icarus._y; if (dist < 1) { _main.grab(); this.onEnterFrame = undefined; } else { dist = dist / _main.spd; this._arm._icarus._y = this._arm._icarus._y + dist; } }; }; _main.grab_feather = function () { this._clip.onEnterFrame = null; this.retract_up(); }; _main.retract_up = function () { this._clip.onEnterFrame = function () { var dist = math.abs(this._arm._icarus._y - _main.YARMMINUP); if (dist < 1) { this._arm._icarus._y = _main.YARMMINUP; this.onEnterFrame = undefined; this._arm._icarus.gotoAndStop("up"); _main.power = 0; } else { dist = dist / 3; this._arm._icarus._y = this._arm._icarus._y + dist; } }; }; _main.grab = function () { this._clip.onEnterFrame = null; this._clip._arm._icarus.gotoAndStop("gograb"); }; _main.retract = function () { this._clip.onEnterFrame = function () { dist = this._arm._icarus._y - _main.YARMMIN; if (dist < 1) { this._arm._icarus._y = _main.YARMMIN; this.onEnterFrame = undefined; if (this._arm._icarus._currentframe == 3) { this._arm._icarus.gotoAndStop("dangle"); } else { this._arm._icarus.gotoAndStop("throw"); } _main.power = 0; } else { dist = dist / 3; this._arm._icarus._y = this._arm._icarus._y - dist; } }; }; _main.grabat = function () { var inRange = []; var inRangeYs = []; var ix = (((this._clip._arm._icarus._grab._x + this._clip._arm._icarus._x) + this._clip._arm._x) + this._clip._x); var iy = (((this._clip._arm._icarus._grab._y + this._clip._arm._icarus._y) + this._clip._arm._y) + this._clip._y); var i = 0; while (i < chickens.list.length) { var cx = chickens.list[i]._clip._x; var cy = chickens.list[i]._clip._y; dx = cx - ix; dy = cy - iy; var dist = Math.abs(dx); if ((dist < this.GRABDISTX) && (dy > -5)) { inRange.push(chickens.list[i]); inRangeYs.push(dy); } i++; } if (inRange.length == 0) { this._clip._arm._icarus.gotoAndStop("miss"); } if (inRange.length >= 1) { var closestChicken = 0; var closestChickenDistance = 1000; i = 0; while (i < inRange.length) { var dy = inRangeYs[i]; dy = Math.abs(dy); if ((dy < this.GRABDISTY) && (dy < closestChickenDistance)) { closestChickenDistance = dy; closestChicken = inRange[i]; } i++; } chickens.toremove = closestChicken; if (chickens.toRemove != 0) { this._clip._arm._icarus.gotoAndStop("grab"); } else { this._clip._arm._icarus.gotoAndStop("miss"); } } }; _main.suck = function () { a = this._clip._machine; this._clip._machine.gotoAndStop("suck"); }; _main._catch = function (lr) { this._clip._arm._icarus.gotoAndStop("catch" + lr); }; _main.catch2 = function () { featherID._clip.removeMovieClip(); score.increment(1); if (score.getscore() == this.NEXTHARD) { makeHarder(); this.NEXTHARD = this.NEXTHARD + this.HARDINCREASE; } clock.increment(5); this.collectSound.start(); }; _main.catch3 = function () { if (this._clip.onEnterFrame == undefined) { this._clip._arm._icarus.gotoAndStop("up"); } else { this._clip._arm._icarus.gotoAndStop("up2"); } }; _main.warnChickens = function () { var ix = (((this._clip._arm._icarus._grab._x + this._clip._arm._icarus._x) + this._clip._arm._x) + this._clip._x); var i = 0; while (i < chickens.list.length) { var cx = chickens.list[i]._clip._x; var dx = (cx - ix); if (Math.abs(dx) < this.GRABDISTY) { chickens.list[i].panic(); } i++; } }; _main.debug = function () { var txt = ""; txt = txt + ((("there should be " + chickens.list.length) + " chickens") + newline); trace(txt); }; _global.readychickens = function () { _global.gameon = false; _global.start_game = function () { chintro2._x = -1000; chintro2._y = -1000; chintro2.gotoAndStop(1); mainTL.attachMovie("machine", "machine", 3); machine._x = 292.5; machine._y = 385.1; mainTL.attachMovie("indicator", "power_bar", 20); power_bar._x = 83; power_bar._y = 577; mainTL.attachMovie("small timer clock", "aclock", 21); aclock._x = 330; aclock._y = 571; mainTL.attachMovie("small timer score", "ascore", 22); ascore._x = 200; ascore._y = 571; chickens.cleanUp(); feathers.cleanUp(); _main.init(); feathers.init(); chickens.init(); clock.init(mainTL.aclock, 50); clock._start(); score.init(mainTL.ascore); _powerBar.init(); chicken_backdrop._x = 0; chicken_backdrop._y = 0; chicken_backdrop._swapDepths(1); gameon = true; }; chintro.playbutton.onRelease = function () { mainTL.gotoAndPlay("gochickens"); }; chintro.backButton.onRelease = function () { mainTL.gotoAndPlay("main"); }; _global.gameover = function () { gameon = false; clock._stop(); var g = mainTL.attachMovie("gameover", "gameOverDialog", 52); g.score_message.gotoAndStop(2); var sc = mainTL.ascore.time.text; var len = sc.length; var k = 1; i = len; while (i > 0) { var moveg = (Number(sc.charAt(i - 1)) + 2); g.score_message["digit" + k].gotoAndStop(moveg); k++; i--; } mainTL.gameOverDialog.pa.onRelease = function () { mainTL.gameoverdialog.removeMovieClip(); start_game(); }; mainTL.gameOverDialog.dpa.onRelease = function () { mainTL.gameoverdialog.removeMovieClip(); cleanchickens(); mainTL.gotoAndPlay("main"); }; }; }; _global.cleanchickens = function () { machine.removeMovieClip(); power_bar.removeMovieClip(); aclock.removeMovieClip(); ascore.removeMovieClip(); chickens.cleanUp(); feathers.cleanUp(); }; _global.makeharder = function () { if (_main.GRABDISTX > 25) { _main.GRABDISTX = _main.GRABDISTX - 1; } if (_main.GRABDISTY > 40) { _main.GRABDISTY = _main.GRABDISTY - 0.5; } if (_main.WARN < 1) { _main.WARN = _main.WARN + 0.1; } };Frame 13readychickens(); stop();Frame 20stop();Frame 21_global.waxpills = {}; waxpills.init = function () { this.cleanUp(); this.index = 0; this.holder = mainTL.createEmptyMovieClip("waxpillholder", 6); var ran = (Math.floor(Math.random() * 5000) + 3000); this.maker = setInterval(this, "makenew", ran); this.theSound = new Sound(); this.theSound.attachSound("ping"); }; waxpills.cleanUp = function () { this.holder.removeMovieClip(); clearInterval(this.maker); }; waxpills.makenew = function () { clearInterval(this.maker); new pill(++this.index, this.theSound); var ran = (Math.floor(Math.random() * 3000) + 3000); this.maker = setInterval(this, "makenew", ran); }; pill = function (num, snd) { this._clip = waxpills.holder.attachMovie("pill", "pill" + num, num); this._clip._x = (Math.random() * 400) + 20; this._clip._y = (Math.random() * 580) + 20; this._clip.alternator = true; this._clip.snd = snd; snd.start(); this._clip.onEnterFrame = function () { var dx = (this._x - _icarus._clip._x); var dy = (this._y - _icarus._clip._y); var d = Math.sqrt((dx * dx) + (dy * dy)); if (d < _icarus.props.radius) { _icarus.collect(); this.snd.start(); this.removeMovieClip(); } if (this.alternator) { this._alpha--; if (this._alpha <= 2) { this.removeMovieClip(); } } this.alternator = !this.alternator; }; }; birds = {}; birds.squawk = new Sound(); birds.squawk.attachSound("squawk"); birds.squawk2 = new Sound(); birds.squawk.attachSound("squawk2"); birds.squawk3 = new Sound(); birds.squawk.attachSound("squawk3"); birds.props = {}; birds.init = function (interval) { if (smallgame) { this.props.scale = 75; interval = Math.round(interval / 1.25); } else { this.props.scale = 100; } this.cleanUp(); this._interval = interval; this.birds_holder = mainTL.createEmptyMovieClip("birdholder", 5); this._list = []; this.numbirds = 0; this.maker = setInterval(this, "makenew", this._interval); this.aim = 0.1; }; birds.changeInterval = function (newinterval) { clearInterval(this.maker); this._interval = newinterval; this.maker = setInterval(this, "makenew", this._interval); }; birds.cleanUp = function () { this.birds_holder.removeMovieClip(); clearInterval(this.maker); }; birds.makenew = function () { this._list.push(new bird(this.birds_holder, ++this.numbirds, this)); }; bird = function (clp, num, control) { this._controller = control; this._clip = clp.attachMovie("bird", "bird" + num, num); this._clip.obj = this; this._clip._y = (Math.random() * 500) + 50; this._clip._xscale = birds.props.scale; this._clip._yscale = birds.props.scale; var ran = Math.ceil(Math.random() * 3); birds["squawk" + ran].start(); var ran = Math.random(); if (ran < 0.5) { this.dir = "left"; this._clip._x = 460; this._clip._xscale = -this._clip._xscale; this._clip.onEnterFrame = function () { this._x = this._x - 5; this._y = this._y + (5 * this.obj.slope); this.obj.check(); if (this._x < -40) { this.obj.remove(); } }; } else { this.dir = "right"; this._clip._x = -40; this._clip.onEnterFrame = function () { this._x = this._x + 5; this._y = this._y + (5 * this.obj.slope); this.obj.check(); if (this._x > 460) { this.obj.remove(); } }; } var ran = Math.random(); if (ran < this._controller.aim) { this.slope = this.aim(); } else { this.slope = 0; } }; bird.prototype.check = function () { var ix = _icarus._clip._x; var iy = _icarus._clip._y; var ir = _icarus.props.radius; var mx = this._clip._x; var my = this._clip._y; var d = Math.sqrt(((ix - mx) * (ix - mx)) + ((iy - my) * (iy - my))); if (d < ir) { var hit = 0; if (ix < mx) { if (this.dir == "left") { hit = 1; } } else if (this.dir == "right") { hit = 1; } } if (hit) { this._clip.gotoAndPlay("impact"); this._clip.onEnterFrame = function () { if (this.dir == "left") { this._x = this._x + 5; this._rotation = this._rotation + 10; } else { this._x = this._x - 5; this._rotation = this._rotation - 10; } }; _icarus.impact(); } }; bird.prototype.fall = function () { this._clip.gotoAndStop("fall"); this._clip.onEnterFrame = function () { this._y = this._y + 5; if (this._y > 640) { this.remove(); } }; }; bird.prototype.remove = function () { this._clip.removeMovieClip(); i = 0; while (i < this._controller._list.length) { var berd = this._controller._list.shift(); if (berd != this) { this._controller._list.push(berd); } i++; } }; bird.prototype.aim = function () { xdiff = _icarus._clip._x - this._clip._x; ydiff = _icarus._clip._y - this._clip._y; angle = Math.atan2(ydiff, xdiff); angle = (angle * 180) / Math.PI; if (xdiff < 0) { this._clip._rotation = 180 + angle; var slope = ((-ydiff) / xdiff); } else { this._clip._rotation = angle; var slope = (ydiff / xdiff); } return(slope); }; _global.clouds = {}; clouds.props = {}; clouds.init = function () { if (smallgame) { clouds.props.scale = 50; inter = 2000; this.nextCloudAt = 35; } else { clouds.props.scale = 100; inter = 3000; this.nextCloudAt = 25; } this.cleanUp(); this.holder = mainTL.createEmptyMovieClip("cloudHolder", 7); this.counter = 0; this.list = []; this.wind = 0.5; this.changeLikely = 0.2; this.lastCloudAt = _icarus.alt; this.maker = setInterval(this, "makenew", inter); this.maxx = 5; this.lc_active = false; this.lc_chance = 0.1; this.makeNew(true); }; clouds.cleanUp = function () { this.holder.removeMovieClip(); clearInterval(this.maker); }; clouds.makenew = function (force) { var alti = _icarus.alt; var letmakeat = (this.lastCloudAt + this.nextCloudAt); if ((alti < letmakeat) && (force != true)) { return(undefined); } this.lastCloudAt = alti; i = 0; while (i < this.list.length) { var clod = this.list.shift(); if (clod.onscreen == true) { this.list.push(clod); } i++; } if (this.list.length > this.maxx) { return(undefined); } this.list.push(new cloud(this.counter++)); if (Math.random() < this.changeLikely) { this.wind = -this.wind; } }; clouds.lighteningGo = function () { clouds.lc_clip.lightening_clip.play(); }; cloud = function (num) { var ran = Math.ceil(Math.random() * 4); var ran2 = Math.random(); this.onscreen = true; this.speed = ran; if ((ran2 < clouds.lc_chance) && (clouds.lc_active == false)) { clouds.lc_active = true; ran = 5; } this._clip = clouds.holder.attachMovie("cloud_" + ran, "cloud" + num, num); if (ran > 4) { this._clip.lightening = true; clouds.lc_clip = this._clip; var rand = ((Math.random() * 3000) + 5000); clouds.lighteningDoer = setInterval(clouds.lighteningGo, rand); } else { this._clip.lightening = false; } this._clip._x = Math.ceil(Math.random() * 300); this._clip._y = -20; this._clip._xscale = clouds.props.scale; this._clip._yscale = clouds.props.scale; this._clip._shadow._height = 600 * (100 / clouds.props.scale); this._clip._shadow._alpha = 0; this._clip._shadow.onEnterFrame = function () { if (this._alpha < 9) { this._alpha = this._alpha + 1; } else { this._alpha = 10; this.onEnterFrame = null; } }; this._clip.obj = this; this._clip.onEnterFrame = this.oncloudmove; }; cloud.prototype.oncloudmove = function () { var g = (((_icarus.thrust + 10) / 10) * this.obj.speed); this._x = this._x + clouds.wind; this._y = this._y + g; if (this._y > 600) { this.obj.onScreen = false; this.removeMovieClip(); if (this.lightening == true) { clearInterval(clouds.lighteningGo); clouds.lc_active = false; } } if (this._x > 450) { this._x = -40; } if (this._x < -40) { this._x = 450; } mainTL.fly_backdrop.bg_1._y = mainTL.fly_backdrop.bg_1._y + Math.round(g / 2); mainTL.fly_backdrop.bg_2._y = mainTL.fly_backdrop.bg_2._y + Math.round(g / 2); if (mainTL.fly_backdrop.bg_1._y > 600) { var off = (mainTL.fly_backdrop.bg_1._y - 600); mainTL.fly_backdrop.bg_1._y = -600 + off; } if (mainTL.fly_backdrop.bg_2._y > 600) { var off = (mainTL.fly_backdrop.bg_2._y - 600); mainTL.fly_backdrop.bg_2._y = -600 + off; } }; _global._icarus = {}; _icarus.props = {}; _icarus.cleanUp = function () { this._clip.removeMovieClip(); this._pointer.removeMovieClip(); this._waxclip.removeMovieClip(); this._altitude.removeMovieClip(); }; _icarus.init = function () { if (smallgame) { this.props.scale = 50; } else { this.props.scale = 75; } this.powergodownby = 0.3; this.props.movescale = this.props.scale / 75; this.props.radius = Math.round((this.props.scale / 100) * 25); this.nextHard = 200; this.flyingFlag = false; this.glidingFlag = false; this._clip = mainTL.attachMovie("icarus", "IcarusClip", 3); this._clip._x = 240; this._clip._y = 100; this._clip.obj = this; this._clip._yscale = this.props.scale; this._clip._xscale = this.props.scale; this._clip.gotoAndPlay(1); this.thrust = 0; this.horiz = 0; this._wrapright = 420 + (this._clip._width / 2); this._wrapleft = -(this._clip._width / 2); this._pointer = mainTL.attachMovie("pointer", "offscreenpointer", 2); this._pointer._x = -100; this._pointer._y = 560; this._waxclip = mainTL.attachMovie("indicator", "wax_bar", 20); this._waxclip._x = 83; this._waxclip._y = 577; this._waxclip._bar._width = 100; this._altitude = mainTL.attachMovie("large timer", "altitude", 21); this._altitude._x = 293; this._altitude._y = 573; this.alt = 0; this._altitude.time.text = this.alt; this._clip.onEnterFrame = function () { if (Key.isDown(38)) { if ((this.obj.flyingFlag == false) && (gameon)) { this.gotoAndPlay("first flap"); } this.obj.flyingFlag = true; } else { this.obj.flyingFlag = false; } if (Key.isDown(37)) { if (this.obj.glidingFlag == false) { this.glidestrength = 2; } else { this.glidestrength = this.glidestrength - 0.2; if (this.glidestrength < 0.5) { this.glidestrength = 0.5; } } if (this.flyingFlag) { this.glidestrength = this.glidestrength * 2; } this.obj.gohoriz(this.glidestrength); this.obj.glidingFlag = true; this._xscale = -this.obj.props.scale; } if (Key.isDown(39)) { if (this.obj.glidingFlag == false) { this.glidestrength = 2; } else { this.glidestrength = this.glidestrength - 0.2; if (this.glidestrength < 0.5) { this.glidestrength = 0.5; } } if (this.flyingFlag) { this.glidestrength = this.glidestrength * 2; } this.obj.ungohoriz(this.glidestrength); this.obj.glidingFlag = true; this._xscale = this.obj.props.scale; } if (!(Key.isDown(39) || (Key.isDown(37)))) { this.obj.glidingFlag = false; } if (Key.isDown(40)) { this.obj.flyingFlag = false; this.obj.glidingFlag = false; this.obj.drop(); } if (this.obj.flyingFlag) { this.obj.gothrust(0.5); } else if (this.obj.glidingFlag) { this.obj.ungothrust(0.2); } else { this.obj.ungothrust(0.5); } if (!this.obj.glidingFlag) { this.obj.normalizeHoriz(); } this.obj.render(this.obj.flyingFlag); }; }; _icarus.drop = function () { if (this.thrust > 0) { this.thrust = 0; if (this._clip._currentframe < 38) { this._clip.times = 0; this._clip.gotoAndPlay("tofall"); } } }; _icarus.gothrust = function (amt) { if (gameon) { this.thrust = this.thrust + amt; if (this.thrust > 10) { this.thrust = 10; } } }; _icarus.ungothrust = function (amt) { this.thrust = this.thrust - amt; if (this.thrust < -10) { this.thrust = -10; } }; _icarus.gohoriz = function (amt) { if (gameon) { this.horiz = this.horiz + amt; if (this.horiz > 10) { this.horiz = 10; } } }; _icarus.ungohoriz = function (amt) { if (gameon) { this.horiz = this.horiz - amt; if (this.horiz < -10) { this.horiz = -10; } } }; _icarus.normalizeHoriz = function () { if (this.horiz < 0) { this.horiz++; } else { this.horiz--; } }; _icarus.render = function (thrusting) { if (thrusting) { if (gameon) { this.alt++; } this._altitude.time.text = this.alt; if (this.alt > this.nextHard) { this.nextHard = this.nextHard + 200; makeHarder(); } } this._clip._y = this._clip._y - (this.thrust * this.props.movescale); this._clip._x = this._clip._x - (this.horiz * this.props.movescale); if (this._clip._x > this._wrapright) { this._clip._x = this._wrapleft; } if (this._clip._x < this._wrapleft) { this._clip._x = this._wrapright; } if (this._clip._y > 620) { this._pointer._x = this._clip._x; } else { this._pointer._x = -100; } if (!clouds.holder.hitTest(this._clip._x, this._clip._y, true)) { this._waxclip._bar._width = this._waxclip._bar._width - 0.5; if (this.tintAmt < 50) { this.tintAmt = this.tintAmt + 1; } if (this._waxclip._bar._width < 1) { if (gameon == true) { this._clip.gotoAndPlay("wings melt"); gameon = false; this.gameoverer = SetInterval(this, "gogameover", 2000); } } } else if (this.tintAmt > 0) { this.tintAmt = this.tintAmt - 10; } if (clouds.lc_active == true) { if (clouds.lc_clip.lightening_clip.hitTest(this._clip._x, this._clip._y)) { if (gameon == true) { this._clip.gotoAndPlay("impact"); gameon = false; } } } this._clip.setTint(255, 153, 102, this.tintAmt); }; _icarus.gogameover = function () { clearInterval(this.gameoverer); gameover(); }; _icarus.collect = function () { if (this._waxclip._bar._width < 100) { this._waxclip._bar._width = this._waxclip._bar._width + 10; } }; _icarus.impact = function () { if (gameon) { this._clip.gotoAndStop("impact"); this.thrust = 0; this.horiz = 0; gameon = false; } }; _icarus.fall = function () { this._clip.gotoAndPlay("fall"); this.gameoverer = SetInterval(this, "gogameover", 2000); }; _global.readyfly = function () { flintro.playbutton.onRelease = function () { mainTL.gotoAndPlay("goFly"); }; flintro.backbutton.onRelease = function () { mainTL.gotoAndPlay("main"); }; _global.start_game = function (smallgame) { gameon = true; mainTL.flintro2._x = -1000; mainTL.flintro2._y = -1000; mainTL.flintro2.gotoAndStop(1); _icarus.init(); birds.init(3000); clouds.init(3000); waxpills.init(); chicken_backdrop._x = -1000; fly_backdrop._x = 0; fly_backdrop._y = 0; fly_backdrop.swapDepths(1); }; _global.gameover = function () { gameon = false; var g = mainTL.attachMovie("gameover", "gameOverDialog", 52); g.score_message.gotoAndStop(3); var sc = _icarus._altitude.time.text; var len = sc.length; var k = 1; i = len; while (i > 0) { var moveg = (Number(sc.charAt(i - 1)) + 2); g.score_message["fdigit" + k].gotoAndStop(moveg); k++; i--; } mainTL.gameOverDialog.pa.onRelease = function () { mainTL.gameoverdialog.removeMovieClip(); start_game(); }; mainTL.gameOverDialog.dpa.onRelease = function () { mainTL.gameoverdialog.removeMovieClip(); cleanfly(); mainTL.gotoAndPlay("main"); }; }; }; _global.cleanFly = function () { birds.cleanUp(); clouds.cleanUp(); waxpills.cleanUp(); _icarus.cleanUp(); frame._x = -1000; fly_backdrop._x = -1000; chicken_backdrop._x = -1000; }; _global.makeHarder = function () { clouds.wind = clouds.wind + (Math.abs(clouds.wind) / clouds.wind); clouds.changeLikely = clouds.changeLikely + 0.05; if (clouds.maxx > 3) { clouds.maxx = clouds.maxx - 0.5; } if (birds._interval > 500) { birds._interval = birds._interval - 500; } if (birds.aim < 1) { birds.aim = birds.aim + 0.1; } clearInterval(birds.maker); birds.maker = setInterval(birds, "makenew", birds._interval); };Frame 27readyfly(); stop();Frame 34stop();Symbol 4 MovieClip [small timer clock] Frame 1stop();Symbol 25 MovieClip Frame 1stop();Symbol 26 MovieClip [chicken] Frame 1stop();Symbol 51 Buttonon (release) { if (_global.muzakPlaying == true) { _global.muzakPlaying = false; muzak.stop(); } else { _global.muzakPlaying = true; muzak.start(); } }Symbol 75 MovieClip [bird] Frame 1stop();Symbol 75 MovieClip [bird] Frame 11this.obj.fall();Symbol 123 MovieClip Frame 27gotoAndPlay (3);Symbol 145 MovieClip Frame 1stop();Symbol 209 MovieClip Frame 26feathers._showerer = setInterval(feathers, "shower", 3000); chickens.makeBaldOne(); _parent.gotoAndStop(1);Symbol 210 MovieClip Frame 1stop();Symbol 233 MovieClip Frame 1_main.retract(); chickens.deleteIt(); stop();Symbol 235 MovieClip Frame 6_main.retract();Symbol 238 MovieClip Frame 17_parent.gotoAndStop("Up");Symbol 241 MovieClip Frame 11_parent.gotoAndStop("dangle");Symbol 244 MovieClip Frame 7_main.suck(); _parent.gotoAndStop("dangle");Symbol 245 MovieClip Frame 8_main.grabat();Symbol 251 MovieClip Frame 6_main.catch2();Symbol 251 MovieClip Frame 11_main.catch3();Symbol 252 MovieClip Frame 1stop();Symbol 254 MovieClip Frame 1stop();Symbol 255 MovieClip Frame 1stop();Symbol 294 MovieClip Frame 20_icarus.fall();Symbol 299 MovieClip [icarus] Frame 15if (_ivcarus.flyingFlag) { _icarus.inject(); }Symbol 299 MovieClip [icarus] Frame 19if (_icarus.flyingFlag == true) { gotoAndPlay (8); }Symbol 299 MovieClip [icarus] Frame 24times = 10;Symbol 299 MovieClip [icarus] Frame 38if (((times--) > 0) || (_icarus.glidingFlag == true)) { gotoAndPlay (25); }Symbol 299 MovieClip [icarus] Frame 52gotoAndPlay (41);Symbol 299 MovieClip [icarus] Frame 53stop();Symbol 299 MovieClip [icarus] Frame 83gotoAndPlay (72);Symbol 318 MovieClip [large timer] Frame 1stop();Symbol 323 MovieClip [small timer score] Frame 1stop();Symbol 363 MovieClip Frame 1stop();Symbol 365 MovieClip Frame 1stop();Symbol 380 MovieClip Frame 1stop();Symbol 428 MovieClip Frame 1next_button.onRelease = function () { trace(this._currentframe); this._parent.play(); };Symbol 428 MovieClip Frame 6stop();Symbol 428 MovieClip Frame 14stop();Symbol 428 MovieClip Frame 22stop();Symbol 428 MovieClip Frame 30stop();Symbol 428 MovieClip Frame 38stop();Symbol 429 MovieClip Frame 49but_c.onRelease = function () { mainTL.gotoAndPlay("chickens"); }; but_f.onRelease = function () { mainTL.gotoAndPlay("fly"); };Symbol 429 MovieClip Frame 69gotoAndPlay (50);Symbol 465 MovieClip Frame 30readychickens();Symbol 465 MovieClip Frame 60gotoAndPlay (31);Symbol 476 MovieClip Frame 72start_game();Symbol 487 Buttonon (release) { _global.smallgame = true; ic.onEnterFrame = function () { this._xscale = this._xscale - 10; this._yscale = this._yscale - 10; if (this._xscale < 50) { this.onEnterFrame = null; } }; gotoAndStop (2); }Symbol 489 Buttonon (release) { _global.smallgame = false; ic.onEnterFrame = function () { this._xscale = this._xscale + 10; this._yscale = this._yscale + 10; if (this._xscale > 91) { this.onEnterFrame = null; } }; gotoAndStop (1); }Symbol 490 MovieClip Frame 1stop();Symbol 513 MovieClip Frame 39readyfly();Symbol 513 MovieClip Frame 183gotoAndPlay (113);Symbol 515 MovieClip Frame 55start_game();
Library Items
Symbol 1 Graphic | Used by:4 | |
Symbol 2 Font | Used by:3 317 322 411 412 415 422 424 426 446 453 456 458 461 494 497 500 503 506 | |
Symbol 3 EditableText | Uses:2 | Used by:4 |
Symbol 4 MovieClip [small timer clock] | Uses:1 3 | |
Symbol 5 Graphic | Used by:Timeline | |
Symbol 6 Graphic | Used by:15 16 21 24 25 209 302 430 475 | |
Symbol 7 Graphic | Used by:15 16 25 475 | |
Symbol 8 Graphic | Used by:15 16 21 24 25 430 475 | |
Symbol 9 Graphic | Used by:15 16 21 24 25 209 430 475 | |
Symbol 10 Graphic | Used by:15 16 21 24 25 209 430 475 | |
Symbol 11 Graphic | Used by:15 16 21 24 25 209 302 430 475 | |
Symbol 12 Graphic | Used by:15 16 21 24 25 209 302 430 475 | |
Symbol 13 Graphic | Used by:15 16 21 24 25 209 302 430 | |
Symbol 14 Graphic | Used by:15 25 | |
Symbol 15 MovieClip | Uses:6 7 8 9 10 11 12 13 14 | Used by:26 233 244 429 465 476 513 |
Symbol 16 MovieClip | Uses:6 7 8 9 10 11 12 13 | Used by:26 429 465 476 513 |
Symbol 17 Graphic | Used by:21 | |
Symbol 18 Graphic | Used by:21 209 | |
Symbol 19 Graphic | Used by:21 24 302 | |
Symbol 20 Graphic | Used by:21 24 302 | |
Symbol 21 MovieClip | Uses:6 8 9 10 17 11 12 13 18 19 20 | Used by:26 429 465 476 |
Symbol 22 Graphic | Used by:24 302 | |
Symbol 23 Graphic | Used by:24 302 | |
Symbol 24 MovieClip | Uses:6 8 9 10 11 12 13 22 19 20 23 | Used by:26 476 |
Symbol 25 MovieClip | Uses:6 7 8 9 10 11 12 13 14 | Used by:26 |
Symbol 26 MovieClip [chicken] | Uses:15 16 21 24 25 | Used by:Timeline |
Symbol 27 Graphic | Used by:31 | |
Symbol 28 Bitmap | Used by:29 | |
Symbol 29 Graphic | Uses:28 | Used by:30 |
Symbol 30 MovieClip | Uses:29 | Used by:31 |
Symbol 31 MovieClip | Uses:27 30 | Used by:Timeline |
Symbol 32 Graphic | Used by:54 | |
Symbol 33 Graphic | Used by:54 476 | |
Symbol 34 Graphic | Used by:54 476 | |
Symbol 35 Graphic | Used by:54 476 | |
Symbol 36 Graphic | Used by:54 476 | |
Symbol 37 Graphic | Used by:54 476 | |
Symbol 38 Graphic | Used by:54 476 | |
Symbol 39 Graphic | Used by:54 476 | |
Symbol 40 Graphic | Used by:54 476 | |
Symbol 41 Graphic | Used by:54 476 | |
Symbol 42 Graphic | Used by:54 476 | |
Symbol 43 Graphic | Used by:44 | |
Symbol 44 MovieClip | Uses:43 | Used by:54 476 |
Symbol 45 Graphic | Used by:46 | |
Symbol 46 MovieClip | Uses:45 | Used by:54 476 |
Symbol 47 Graphic | Used by:51 | |
Symbol 48 Graphic | Used by:51 | |
Symbol 49 Graphic | Used by:51 | |
Symbol 50 Graphic | Used by:51 | |
Symbol 51 Button | Uses:47 48 49 50 | Used by:53 |
Symbol 52 Graphic | Used by:53 | |
Symbol 53 MovieClip | Uses:51 52 | Used by:54 |
Symbol 54 MovieClip | Uses:32 33 34 35 36 37 38 39 40 41 42 44 46 53 | Used by:Timeline |
Symbol 55 Bitmap | Used by:56 | |
Symbol 56 Graphic | Uses:55 | Used by:57 |
Symbol 57 MovieClip | Uses:56 | Used by:Timeline |
Symbol 58 Graphic | Used by:59 | |
Symbol 59 MovieClip | Uses:58 | Used by:75 252 |
Symbol 60 Graphic | Used by:67 71 75 | |
Symbol 61 Graphic | Used by:67 71 75 | |
Symbol 62 Graphic | Used by:67 71 75 | |
Symbol 63 Graphic | Used by:67 71 75 | |
Symbol 64 Graphic | Used by:67 71 75 | |
Symbol 65 Graphic | Used by:67 71 75 | |
Symbol 66 Graphic | Used by:67 71 75 | |
Symbol 67 MovieClip | Uses:60 61 62 63 64 65 66 | Used by:75 |
Symbol 68 Graphic | Used by:71 75 | |
Symbol 69 Graphic | Used by:71 75 | |
Symbol 70 Graphic | Used by:71 75 | |
Symbol 71 MovieClip | Uses:60 61 68 69 64 65 66 62 70 63 | Used by:75 |
Symbol 72 Graphic | Used by:75 | |
Symbol 73 Graphic | Used by:75 | |
Symbol 74 Graphic | Used by:75 | |
Symbol 75 MovieClip [bird] | Uses:59 67 71 60 61 62 63 64 65 66 68 72 69 73 74 70 | Used by:Timeline |
Symbol 76 Graphic | Used by:77 | |
Symbol 77 MovieClip | Uses:76 | Used by:123 144 253 254 |
Symbol 78 Graphic | Used by:123 144 | |
Symbol 79 Graphic | Used by:123 144 | |
Symbol 80 Graphic | Used by:123 144 | |
Symbol 81 Graphic | Used by:123 144 | |
Symbol 82 Graphic | Used by:123 144 | |
Symbol 83 Graphic | Used by:123 144 | |
Symbol 84 Graphic | Used by:123 | |
Symbol 85 Graphic | Used by:123 144 | |
Symbol 86 Graphic | Used by:123 144 | |
Symbol 87 Graphic | Used by:123 144 | |
Symbol 88 Graphic | Used by:123 144 | |
Symbol 89 Graphic | Used by:123 144 | |
Symbol 90 Graphic | Used by:123 | |
Symbol 91 Graphic | Used by:123 | |
Symbol 92 Graphic | Used by:123 | |
Symbol 93 Graphic | Used by:123 | |
Symbol 94 Graphic | Used by:123 | |
Symbol 95 Graphic | Used by:123 | |
Symbol 96 Graphic | Used by:123 | |
Symbol 97 Graphic | Used by:123 | |
Symbol 98 Graphic | Used by:123 513 515 | |
Symbol 99 Graphic | Used by:123 | |
Symbol 100 Graphic | Used by:123 | |
Symbol 101 Graphic | Used by:123 | |
Symbol 102 Graphic | Used by:123 | |
Symbol 103 Graphic | Used by:123 | |
Symbol 104 Graphic | Used by:123 | |
Symbol 105 Graphic | Used by:123 | |
Symbol 106 Graphic | Used by:123 | |
Symbol 107 Graphic | Used by:123 | |
Symbol 108 Graphic | Used by:123 | |
Symbol 109 Graphic | Used by:123 | |
Symbol 110 Graphic | Used by:123 | |
Symbol 111 Graphic | Used by:123 | |
Symbol 112 Graphic | Used by:123 | |
Symbol 113 Graphic | Used by:123 | |
Symbol 114 Graphic | Used by:123 | |
Symbol 115 Graphic | Used by:123 | |
Symbol 116 Graphic | Used by:123 | |
Symbol 117 Graphic | Used by:123 | |
Symbol 118 Graphic | Used by:123 | |
Symbol 119 Graphic | Used by:123 | |
Symbol 120 Graphic | Used by:123 | |
Symbol 121 Graphic | Used by:123 | |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 MovieClip | Uses:77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | Used by:145 |
Symbol 124 Graphic | Used by:144 209 210 | |
Symbol 125 Graphic | Used by:144 | |
Symbol 126 Graphic | Used by:144 | |
Symbol 127 Sound | Used by:144 | |
Symbol 128 Graphic | Used by:144 | |
Symbol 129 Graphic | Used by:144 | |
Symbol 130 Graphic | Used by:144 | |
Symbol 131 Graphic | Used by:144 | |
Symbol 132 Graphic | Used by:144 | |
Symbol 133 Graphic | Used by:144 | |
Symbol 134 Graphic | Used by:144 | |
Symbol 135 Graphic | Used by:144 | |
Symbol 136 Graphic | Used by:144 | |
Symbol 137 Graphic | Used by:144 | |
Symbol 138 Graphic | Used by:144 | |
Symbol 139 Graphic | Used by:144 | |
Symbol 140 Graphic | Used by:144 | |
Symbol 141 Graphic | Used by:144 | |
Symbol 142 Graphic | Used by:144 | |
Symbol 143 Graphic | Used by:144 | |
Symbol 144 MovieClip | Uses:77 78 79 124 80 81 82 83 125 85 86 87 126 88 89 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | Used by:145 |
Symbol 145 MovieClip | Uses:123 144 | Used by:256 |
Symbol 146 Graphic | Used by:164 209 | |
Symbol 147 Graphic | Used by:148 | |
Symbol 148 MovieClip | Uses:147 | Used by:164 209 |
Symbol 149 Graphic | Used by:150 | |
Symbol 150 MovieClip | Uses:149 | Used by:164 209 |
Symbol 151 Graphic | Used by:164 209 | |
Symbol 152 Graphic | Used by:164 | |
Symbol 153 Graphic | Used by:154 | |
Symbol 154 MovieClip | Uses:153 | Used by:164 209 |
Symbol 155 Graphic | Used by:156 | |
Symbol 156 MovieClip | Uses:155 | Used by:164 209 |
Symbol 157 Graphic | Used by:164 209 | |
Symbol 158 Graphic | Used by:164 209 | |
Symbol 159 Graphic | Used by:164 209 | |
Symbol 160 Graphic | Used by:161 | |
Symbol 161 MovieClip | Uses:160 | Used by:164 209 |
Symbol 162 Graphic | Used by:164 209 | |
Symbol 163 Graphic | Used by:164 | |
Symbol 164 MovieClip | Uses:146 148 150 151 152 154 156 157 158 159 161 162 163 | Used by:210 |
Symbol 165 Graphic | Used by:209 | |
Symbol 166 Graphic | Used by:209 475 | |
Symbol 167 Graphic | Used by:209 | |
Symbol 168 Graphic | Used by:209 | |
Symbol 169 Sound | Used by:209 | |
Symbol 170 Graphic | Used by:209 | |
Symbol 171 Graphic | Used by:209 | |
Symbol 172 Graphic | Used by:209 | |
Symbol 173 Graphic | Used by:209 | |
Symbol 174 Graphic | Used by:209 | |
Symbol 175 Graphic | Used by:209 | |
Symbol 176 Graphic | Used by:209 | |
Symbol 177 Graphic | Used by:184 209 257 | |
Symbol 178 Graphic | Used by:209 | |
Symbol 179 Graphic | Used by:209 | |
Symbol 180 Graphic | Used by:209 | |
Symbol 181 Graphic | Used by:209 | |
Symbol 182 Graphic | Used by:209 | |
Symbol 183 Graphic | Used by:209 | |
Symbol 184 MovieClip | Uses:177 | Used by:209 |
Symbol 185 Graphic | Used by:209 | |
Symbol 186 Graphic | Used by:209 | |
Symbol 187 Graphic | Used by:209 | |
Symbol 188 Graphic | Used by:209 | |
Symbol 189 Graphic | Used by:209 | |
Symbol 190 Graphic | Used by:209 | |
Symbol 191 Graphic | Used by:209 | |
Symbol 192 Graphic | Used by:209 | |
Symbol 193 Graphic | Used by:209 | |
Symbol 194 Graphic | Used by:209 | |
Symbol 195 Graphic | Used by:209 | |
Symbol 196 Graphic | Used by:209 | |
Symbol 197 Graphic | Used by:209 | |
Symbol 198 Graphic | Used by:209 | |
Symbol 199 Graphic | Used by:209 | |
Symbol 200 Graphic | Used by:209 | |
Symbol 201 Graphic | Used by:209 | |
Symbol 202 Graphic | Used by:209 | |
Symbol 203 Graphic | Used by:209 | |
Symbol 204 Graphic | Used by:209 | |
Symbol 205 Graphic | Used by:209 | |
Symbol 206 Graphic | Used by:209 | |
Symbol 207 Graphic | Used by:209 | |
Symbol 208 Graphic | Used by:209 | |
Symbol 209 MovieClip | Uses:146 6 165 9 10 11 12 166 148 150 151 167 154 156 157 158 159 161 162 168 124 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 13 198 199 200 201 202 203 204 205 18 206 207 208 | Used by:210 |
Symbol 210 MovieClip | Uses:164 124 209 | Used by:256 |
Symbol 211 Graphic | Used by:255 | |
Symbol 212 Graphic | Used by:231 233 235 238 241 242 243 244 245 251 476 513 515 | |
Symbol 213 Graphic | Used by:231 233 235 238 241 242 243 244 245 251 299 398 399 476 513 515 | |
Symbol 214 Graphic | Used by:231 233 235 238 241 242 243 244 245 251 294 299 398 399 476 513 515 | |
Symbol 215 Graphic | Used by:231 233 235 238 241 242 243 244 245 251 299 476 513 515 | |
Symbol 216 Graphic | Used by:231 233 235 238 241 242 243 244 245 251 294 299 395 398 399 476 513 515 | |
Symbol 217 Graphic | Used by:231 233 235 238 241 242 243 244 245 251 294 299 395 398 399 476 513 515 | |
Symbol 218 Graphic | Used by:231 233 235 238 241 242 243 244 245 251 294 299 395 398 399 476 513 515 | |
Symbol 219 Graphic | Used by:231 233 238 241 242 243 244 245 251 294 299 395 398 399 476 513 515 | |
Symbol 220 Graphic | Used by:231 233 235 238 241 242 243 244 245 251 294 299 395 398 399 476 513 515 | |
Symbol 221 Graphic | Used by:226 | |
Symbol 222 Graphic | Used by:223 | |
Symbol 223 MovieClip | Uses:222 | Used by:226 |
Symbol 224 Graphic | Used by:225 | |
Symbol 225 MovieClip | Uses:224 | Used by:226 254 |
Symbol 226 MovieClip | Uses:221 223 225 | Used by:231 233 235 238 241 242 243 244 245 251 |
Symbol 227 Graphic | Used by:231 | |
Symbol 228 Graphic | Used by:231 238 241 | |
Symbol 229 Graphic | Used by:231 | |
Symbol 230 Graphic | Used by:231 238 241 | |
Symbol 231 MovieClip | Uses:212 213 214 215 216 217 218 219 220 226 227 228 229 230 | Used by:252 |
Symbol 232 Graphic | Used by:233 244 | |
Symbol 233 MovieClip | Uses:212 213 214 215 15 216 232 217 218 219 220 226 | Used by:252 |
Symbol 234 Graphic | Used by:235 238 241 245 251 | |
Symbol 235 MovieClip | Uses:212 213 214 215 216 217 218 234 220 226 | Used by:252 |
Symbol 236 Sound | Used by:238 | |
Symbol 237 Graphic | Used by:238 241 | |
Symbol 238 MovieClip | Uses:212 213 214 215 216 217 218 219 220 226 236 230 234 237 228 | Used by:252 |
Symbol 239 Sound | Used by:241 | |
Symbol 240 Graphic | Used by:241 245 251 | |
Symbol 241 MovieClip | Uses:212 213 214 215 216 217 218 219 220 226 239 228 234 237 240 230 | Used by:252 |
Symbol 242 MovieClip | Uses:212 213 214 215 216 217 218 219 220 226 | Used by:252 |
Symbol 243 MovieClip | Uses:212 213 214 215 216 217 218 219 220 226 | Used by:252 |
Symbol 244 MovieClip | Uses:212 213 214 215 15 216 232 217 218 219 220 226 | Used by:252 |
Symbol 245 MovieClip | Uses:212 213 214 215 216 217 218 219 220 226 240 234 | Used by:252 |
Symbol 246 Graphic | Used by:251 476 513 | |
Symbol 247 Graphic | Used by:251 | |
Symbol 248 Graphic | Used by:251 | |
Symbol 249 Graphic | Used by:251 | |
Symbol 250 Graphic | Used by:251 | |
Symbol 251 MovieClip | Uses:212 213 214 215 216 217 218 219 220 226 240 246 234 247 248 249 250 | Used by:252 |
Symbol 252 MovieClip | Uses:231 233 235 238 241 59 242 243 244 245 251 | Used by:255 |
Symbol 253 MovieClip | Uses:77 | Used by:254 |
Symbol 254 MovieClip | Uses:225 77 253 | Used by:255 |
Symbol 255 MovieClip | Uses:211 252 254 | Used by:256 |
Symbol 256 MovieClip [machine] | Uses:145 210 255 | Used by:Timeline |
Symbol 257 MovieClip | Uses:177 | Used by:258 |
Symbol 258 MovieClip [feather] | Uses:257 | Used by:Timeline |
Symbol 259 Graphic | Used by:294 299 395 398 399 513 515 | |
Symbol 260 Graphic | Used by:294 299 | |
Symbol 261 Graphic | Used by:294 299 395 398 399 513 515 | |
Symbol 262 Graphic | Used by:294 299 | |
Symbol 263 Graphic | Used by:294 299 395 398 476 513 | |
Symbol 264 Graphic | Used by:294 299 | |
Symbol 265 Graphic | Used by:299 | |
Symbol 266 Graphic | Used by:267 | |
Symbol 267 MovieClip | Uses:266 | Used by:299 399 515 |
Symbol 268 Graphic | Used by:299 515 | |
Symbol 269 Graphic | Used by:299 398 399 515 | |
Symbol 270 Graphic | Used by:294 299 | |
Symbol 271 Graphic | Used by:299 | |
Symbol 272 Graphic | Used by:294 299 | |
Symbol 273 Graphic | Used by:294 299 513 | |
Symbol 274 Graphic | Used by:294 299 | |
Symbol 275 Graphic | Used by:299 | |
Symbol 276 Graphic | Used by:299 | |
Symbol 277 Graphic | Used by:299 | |
Symbol 278 Graphic | Used by:299 | |
Symbol 279 Graphic | Used by:299 | |
Symbol 280 Graphic | Used by:299 | |
Symbol 281 Graphic | Used by:299 | |
Symbol 282 Graphic | Used by:299 | |
Symbol 283 Graphic | Used by:299 | |
Symbol 284 Graphic | Used by:299 | |
Symbol 285 Graphic | Used by:299 | |
Symbol 286 Graphic | Used by:299 | |
Symbol 287 Graphic | Used by:294 | |
Symbol 288 Graphic | Used by:294 | |
Symbol 289 Graphic | Used by:294 299 | |
Symbol 290 Graphic | Used by:294 299 | |
Symbol 291 Graphic | Used by:294 | |
Symbol 292 Graphic | Used by:294 | |
Symbol 293 Graphic | Used by:294 | |
Symbol 294 MovieClip | Uses:259 260 261 262 263 264 217 216 218 219 220 287 288 272 289 290 291 292 270 293 274 214 273 | Used by:299 |
Symbol 295 Graphic | Used by:299 | |
Symbol 296 Graphic | Used by:299 | |
Symbol 297 Graphic | Used by:299 | |
Symbol 298 Sound | Used by:299 | |
Symbol 299 MovieClip [icarus] | Uses:259 260 261 262 263 264 217 216 218 219 220 265 213 215 214 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 294 289 290 295 296 297 298 | Used by:Timeline |
Symbol 300 Graphic | Used by:302 | |
Symbol 301 Graphic | Used by:302 | |
Symbol 302 MovieClip [baldie] | Uses:6 300 301 11 12 13 22 19 20 23 | Used by:Timeline |
Symbol 303 Graphic | Used by:304 | |
Symbol 304 MovieClip | Uses:303 | Used by:306 308 310 312 381 |
Symbol 305 Graphic | Used by:306 | |
Symbol 306 MovieClip [cloud_1] | Uses:304 305 | Used by:Timeline |
Symbol 307 Graphic | Used by:308 | |
Symbol 308 MovieClip [cloud_2] | Uses:304 307 | Used by:Timeline |
Symbol 309 Graphic | Used by:310 | |
Symbol 310 MovieClip [cloud_3] | Uses:304 309 | Used by:Timeline |
Symbol 311 Graphic | Used by:312 381 | |
Symbol 312 MovieClip [cloud_4] | Uses:304 311 | Used by:Timeline |
Symbol 313 Graphic | Used by:315 | |
Symbol 314 Graphic | Used by:315 | |
Symbol 315 MovieClip [pill] | Uses:313 314 | Used by:502 Timeline |
Symbol 316 Graphic | Used by:318 | |
Symbol 317 EditableText | Uses:2 | Used by:318 |
Symbol 318 MovieClip [large timer] | Uses:316 317 | Used by:Timeline |
Symbol 319 Graphic | Used by:320 | |
Symbol 320 MovieClip [pointer] | Uses:319 | Used by:Timeline |
Symbol 321 Graphic | Used by:323 | |
Symbol 322 EditableText | Uses:2 | Used by:323 |
Symbol 323 MovieClip [small timer score] | Uses:321 322 | Used by:Timeline |
Symbol 324 Graphic | Used by:325 | |
Symbol 325 MovieClip | Uses:324 | Used by:327 457 |
Symbol 326 Graphic | Used by:327 | |
Symbol 327 MovieClip [indicator] | Uses:325 326 | Used by:Timeline |
Symbol 328 Graphic | Used by:366 | |
Symbol 329 Graphic | Used by:335 340 366 405 | |
Symbol 330 Graphic | Used by:335 | |
Symbol 331 Graphic | Used by:335 | |
Symbol 332 Graphic | Used by:335 | |
Symbol 333 Graphic | Used by:335 | |
Symbol 334 Sound | Used by:335 340 405 410 436 441 487 489 | |
Symbol 335 Button | Uses:330 329 331 332 333 334 | Used by:366 |
Symbol 336 Graphic | Used by:340 | |
Symbol 337 Graphic | Used by:340 | |
Symbol 338 Graphic | Used by:340 | |
Symbol 339 Graphic | Used by:340 | |
Symbol 340 Button | Uses:336 329 337 338 339 334 | Used by:366 |
Symbol 341 Graphic | Used by:366 | |
Symbol 342 Graphic | Used by:365 | |
Symbol 343 Graphic | Used by:344 | |
Symbol 344 MovieClip | Uses:343 | Used by:363 |
Symbol 345 Graphic | Used by:346 | |
Symbol 346 MovieClip | Uses:345 | Used by:363 |
Symbol 347 Graphic | Used by:348 | |
Symbol 348 MovieClip | Uses:347 | Used by:363 |
Symbol 349 Graphic | Used by:350 | |
Symbol 350 MovieClip | Uses:349 | Used by:363 |
Symbol 351 Graphic | Used by:352 | |
Symbol 352 MovieClip | Uses:351 | Used by:363 |
Symbol 353 Graphic | Used by:354 | |
Symbol 354 MovieClip | Uses:353 | Used by:363 |
Symbol 355 Graphic | Used by:356 | |
Symbol 356 MovieClip | Uses:355 | Used by:363 |
Symbol 357 Graphic | Used by:358 | |
Symbol 358 MovieClip | Uses:357 | Used by:363 |
Symbol 359 Graphic | Used by:360 | |
Symbol 360 MovieClip | Uses:359 | Used by:363 |
Symbol 361 Graphic | Used by:362 | |
Symbol 362 MovieClip | Uses:361 | Used by:363 |
Symbol 363 MovieClip | Uses:344 346 348 350 352 354 356 358 360 362 | Used by:365 |
Symbol 364 Graphic | Used by:365 | |
Symbol 365 MovieClip | Uses:342 363 364 | Used by:366 |
Symbol 366 MovieClip [gameover] | Uses:328 329 335 340 341 365 | Used by:Timeline |
Symbol 367 Graphic | Used by:380 | |
Symbol 368 Graphic | Used by:380 | |
Symbol 369 Graphic | Used by:380 | |
Symbol 370 Graphic | Used by:380 | |
Symbol 371 Graphic | Used by:380 | |
Symbol 372 Graphic | Used by:380 | |
Symbol 373 Graphic | Used by:380 | |
Symbol 374 Graphic | Used by:380 | |
Symbol 375 Graphic | Used by:380 | |
Symbol 376 Graphic | Used by:380 | |
Symbol 377 Graphic | Used by:380 | |
Symbol 378 Graphic | Used by:380 | |
Symbol 379 Graphic | Used by:380 | |
Symbol 380 MovieClip | Uses:367 368 369 370 371 372 373 374 375 376 377 378 379 SS1 | Used by:381 |
Symbol 381 MovieClip [cloud_5] | Uses:304 311 380 | Used by:Timeline |
Symbol 382 Graphic | Used by:390 | |
Symbol 383 Sound [chicken man1.wav] | Used by:390 465 | |
Symbol 384 Sound [chickenBit.wav] | Used by:390 | |
Symbol 385 Sound [squawk] | Used by:390 | |
Symbol 386 Sound [squawk2] | Used by:390 | |
Symbol 387 Sound [squawk3] | Used by:390 | |
Symbol 388 Sound [ping] | Used by:390 | |
Symbol 389 Sound [muzak] | Used by:390 | |
Symbol 390 MovieClip | Uses:382 383 384 385 386 387 388 389 | Used by:Timeline |
Symbol 391 Sound | Used by:Timeline | |
Symbol 392 Graphic | Used by:395 398 | |
Symbol 393 Graphic | Used by:395 398 399 476 513 515 | |
Symbol 394 Graphic | Used by:395 398 399 513 515 | |
Symbol 395 MovieClip | Uses:259 392 261 393 263 394 217 216 218 219 220 | Used by:429 |
Symbol 396 Graphic | Used by:429 465 513 | |
Symbol 397 Graphic | Used by:398 513 | |
Symbol 398 MovieClip | Uses:269 393 213 261 214 394 216 217 218 219 220 259 397 392 263 | Used by:429 |
Symbol 399 MovieClip | Uses:269 393 213 261 214 394 216 217 218 219 220 259 267 | Used by:429 465 513 515 |
Symbol 400 Graphic | Used by:405 | |
Symbol 401 Graphic | Used by:405 | |
Symbol 402 Graphic | Used by:405 | |
Symbol 403 Graphic | Used by:405 | |
Symbol 404 Graphic | Used by:405 | |
Symbol 405 Button | Uses:400 401 329 402 403 404 334 | Used by:429 |
Symbol 406 Graphic | Used by:410 | |
Symbol 407 Graphic | Used by:410 | |
Symbol 408 Graphic | Used by:410 | |
Symbol 409 Graphic | Used by:410 | |
Symbol 410 Button | Uses:406 407 408 409 334 | Used by:429 |
Symbol 411 Text | Uses:2 | Used by:429 |
Symbol 412 Text | Uses:2 | Used by:429 |
Symbol 413 Graphic | Used by:416 423 425 427 | |
Symbol 414 Font | Used by:415 442 456 492 | |
Symbol 415 Text | Uses:414 2 | Used by:416 |
Symbol 416 MovieClip | Uses:413 415 | Used by:428 |
Symbol 417 Graphic | Used by:421 | |
Symbol 418 Graphic | Used by:421 | |
Symbol 419 Graphic | Used by:421 | |
Symbol 420 Graphic | Used by:421 | |
Symbol 421 Button | Uses:417 418 419 420 | Used by:428 |
Symbol 422 Text | Uses:2 | Used by:423 |
Symbol 423 MovieClip | Uses:413 422 | Used by:428 |
Symbol 424 Text | Uses:2 | Used by:425 |
Symbol 425 MovieClip | Uses:413 424 | Used by:428 |
Symbol 426 Text | Uses:2 | Used by:427 |
Symbol 427 MovieClip | Uses:413 426 | Used by:428 |
Symbol 428 MovieClip | Uses:416 421 423 425 427 | Used by:429 |
Symbol 429 MovieClip | Uses:395 396 21 398 399 15 16 405 410 411 412 428 | Used by:Timeline |
Symbol 430 MovieClip | Uses:6 8 9 11 10 13 12 | Used by:465 476 513 |
Symbol 431 Graphic | Used by:465 476 | |
Symbol 432 Graphic | Used by:436 | |
Symbol 433 Graphic | Used by:436 | |
Symbol 434 Graphic | Used by:436 | |
Symbol 435 Graphic | Used by:436 | |
Symbol 436 Button | Uses:432 433 434 435 334 | Used by:465 476 513 515 |
Symbol 437 Graphic | Used by:441 | |
Symbol 438 Graphic | Used by:441 | |
Symbol 439 Graphic | Used by:441 | |
Symbol 440 Graphic | Used by:441 | |
Symbol 441 Button | Uses:437 438 439 440 334 | Used by:465 476 513 515 |
Symbol 442 Text | Uses:414 | Used by:443 |
Symbol 443 MovieClip | Uses:442 | Used by:464 |
Symbol 444 Graphic | Used by:445 | |
Symbol 445 MovieClip | Uses:444 | Used by:452 457 460 463 496 499 502 505 508 |
Symbol 446 Text | Uses:2 | Used by:452 |
Symbol 447 Graphic | Used by:448 | |
Symbol 448 MovieClip | Uses:447 | Used by:452 460 496 499 |
Symbol 449 Graphic | Used by:450 | |
Symbol 450 MovieClip | Uses:449 | Used by:452 460 496 499 |
Symbol 451 Graphic | Used by:452 | |
Symbol 452 MovieClip | Uses:445 446 448 450 451 | Used by:464 |
Symbol 453 Text | Uses:2 | Used by:457 |
Symbol 454 Graphic | Used by:457 | |
Symbol 455 Graphic | Used by:457 | |
Symbol 456 Text | Uses:2 414 | Used by:457 |
Symbol 457 MovieClip | Uses:445 453 454 325 455 456 | Used by:464 |
Symbol 458 Text | Uses:2 | Used by:460 |
Symbol 459 Graphic | Used by:460 | |
Symbol 460 MovieClip | Uses:445 458 459 448 450 | Used by:464 |
Symbol 461 Text | Uses:2 | Used by:463 |
Symbol 462 Graphic | Used by:463 | |
Symbol 463 MovieClip | Uses:445 461 462 | Used by:464 |
Symbol 464 MovieClip | Uses:443 452 457 460 463 | Used by:465 |
Symbol 465 MovieClip | Uses:399 396 16 430 15 21 431 436 441 464 383 | Used by:Timeline |
Symbol 466 Graphic | Used by:476 | |
Symbol 467 Graphic | Used by:476 | |
Symbol 468 Graphic | Used by:476 | |
Symbol 469 Graphic | Used by:476 515 | |
Symbol 470 Graphic | Used by:476 513 515 | |
Symbol 471 Graphic | Used by:476 513 515 | |
Symbol 472 Graphic | Used by:476 513 | |
Symbol 473 Sound | Used by:476 | |
Symbol 474 Graphic | Used by:476 | |
Symbol 475 MovieClip | Uses:6 7 8 9 10 11 12 166 | Used by:476 |
Symbol 476 MovieClip | Uses:431 21 436 441 466 33 34 35 36 37 38 39 40 41 42 44 46 212 213 467 215 216 217 218 220 219 16 15 468 430 469 470 393 214 471 472 263 24 473 474 475 246 | Used by:Timeline |
Symbol 477 Graphic | Used by:513 | |
Symbol 478 Graphic | Used by:513 | |
Symbol 479 Graphic | Used by:513 | |
Symbol 480 Graphic | Used by:513 515 | |
Symbol 481 Graphic | Used by:482 | |
Symbol 482 MovieClip | Uses:481 | Used by:490 |
Symbol 483 Graphic | Used by:484 | |
Symbol 484 MovieClip | Uses:483 | Used by:490 |
Symbol 485 Graphic | Used by:490 | |
Symbol 486 Graphic | Used by:487 489 | |
Symbol 487 Button | Uses:486 334 | Used by:490 |
Symbol 488 Graphic | Used by:490 | |
Symbol 489 Button | Uses:486 334 | Used by:490 |
Symbol 490 MovieClip | Uses:482 484 485 487 488 489 | Used by:513 |
Symbol 491 Sound | Used by:513 515 | |
Symbol 492 Text | Uses:414 | Used by:493 |
Symbol 493 MovieClip | Uses:492 | Used by:509 |
Symbol 494 Text | Uses:2 | Used by:496 |
Symbol 495 Graphic | Used by:496 | |
Symbol 496 MovieClip | Uses:445 494 448 450 495 | Used by:509 |
Symbol 497 Text | Uses:2 | Used by:499 |
Symbol 498 Graphic | Used by:499 | |
Symbol 499 MovieClip | Uses:445 497 448 450 498 | Used by:509 |
Symbol 500 Text | Uses:2 | Used by:502 |
Symbol 501 Graphic | Used by:502 | |
Symbol 502 MovieClip | Uses:445 500 315 501 | Used by:509 |
Symbol 503 Text | Uses:2 | Used by:505 |
Symbol 504 Graphic | Used by:505 | |
Symbol 505 MovieClip | Uses:445 503 504 | Used by:509 |
Symbol 506 Text | Uses:2 | Used by:508 |
Symbol 507 Graphic | Used by:508 | |
Symbol 508 MovieClip | Uses:445 506 507 | Used by:509 |
Symbol 509 MovieClip | Uses:493 496 499 502 505 508 | Used by:513 |
Symbol 510 Sound | Used by:513 | |
Symbol 511 Graphic | Used by:513 515 | |
Symbol 512 Graphic | Used by:513 | |
Symbol 513 MovieClip | Uses:399 396 16 430 15 212 259 213 261 477 216 217 478 479 219 220 471 480 470 393 215 214 218 436 441 490 98 491 472 509 397 246 510 511 263 273 394 512 | Used by:Timeline |
Symbol 514 Sound | Used by:515 | |
Symbol 515 MovieClip | Uses:480 259 212 213 261 214 215 216 217 218 469 220 436 441 98 470 514 491 393 219 471 511 268 269 394 267 399 | Used by:Timeline |
Streaming Sound 1 | Used by:Symbol 380 MovieClip |
Instance Names
"fly_backdrop" | Frame 4 | Symbol 31 MovieClip |
"frame" | Frame 4 | Symbol 54 MovieClip |
"chicken_backdrop" | Frame 4 | Symbol 57 MovieClip |
"chintro" | Frame 7 | Symbol 465 MovieClip |
"chintro2" | Frame 14 | Symbol 476 MovieClip |
"flintro" | Frame 21 | Symbol 513 MovieClip |
"flintro2" | Frame 28 | Symbol 515 MovieClip |
"offscreenpointer" | Frame 34 | Symbol 320 MovieClip [pointer] |
"time" | Symbol 4 MovieClip [small timer clock] Frame 1 | Symbol 3 EditableText |
"walkleft" | Symbol 26 MovieClip [chicken] Frame 5 | Symbol 21 MovieClip |
"panicleft" | Symbol 26 MovieClip [chicken] Frame 7 | Symbol 24 MovieClip |
"the_chicken" | Symbol 26 MovieClip [chicken] Frame 9 | Symbol 25 MovieClip |
"bg_2" | Symbol 31 MovieClip Frame 1 | Symbol 30 MovieClip |
"bg_1" | Symbol 31 MovieClip Frame 1 | Symbol 30 MovieClip |
"target" | Symbol 75 MovieClip [bird] Frame 1 | Symbol 59 MovieClip |
"_icarus" | Symbol 252 MovieClip Frame 1 | Symbol 231 MovieClip |
"_icarus" | Symbol 252 MovieClip Frame 2 | Symbol 233 MovieClip |
"_icarus" | Symbol 252 MovieClip Frame 3 | Symbol 235 MovieClip |
"_icarus" | Symbol 252 MovieClip Frame 4 | Symbol 238 MovieClip |
"_icarus" | Symbol 252 MovieClip Frame 5 | Symbol 241 MovieClip |
"_grab" | Symbol 252 MovieClip Frame 6 | Symbol 59 MovieClip |
" " | Symbol 252 MovieClip Frame 6 | Symbol 242 MovieClip |
"_icarus" | Symbol 252 MovieClip Frame 7 | Symbol 243 MovieClip |
"_icarus" | Symbol 252 MovieClip Frame 8 | Symbol 244 MovieClip |
"_grab" | Symbol 252 MovieClip Frame 9 | Symbol 59 MovieClip |
"_icarus" | Symbol 252 MovieClip Frame 9 | Symbol 245 MovieClip |
" " | Symbol 252 MovieClip Frame 10 | Symbol 251 MovieClip |
"_grab" | Symbol 252 MovieClip Frame 12 | Symbol 59 MovieClip |
" " | Symbol 252 MovieClip Frame 12 | Symbol 242 MovieClip |
"_icarus" | Symbol 255 MovieClip Frame 1 | Symbol 252 MovieClip |
"_cog" | Symbol 255 MovieClip Frame 1 | Symbol 254 MovieClip |
"_daedalus" | Symbol 256 MovieClip [machine] Frame 1 | Symbol 145 MovieClip |
"_machine" | Symbol 256 MovieClip [machine] Frame 1 | Symbol 210 MovieClip |
"_arm" | Symbol 256 MovieClip [machine] Frame 1 | Symbol 255 MovieClip |
"_feather" | Symbol 258 MovieClip [feather] Frame 1 | Symbol 257 MovieClip |
"_shadow" | Symbol 306 MovieClip [cloud_1] Frame 1 | Symbol 304 MovieClip |
"_shadow" | Symbol 308 MovieClip [cloud_2] Frame 1 | Symbol 304 MovieClip |
"_shadow" | Symbol 310 MovieClip [cloud_3] Frame 1 | Symbol 304 MovieClip |
"_shadow" | Symbol 312 MovieClip [cloud_4] Frame 1 | Symbol 304 MovieClip |
"time" | Symbol 318 MovieClip [large timer] Frame 1 | Symbol 317 EditableText |
"time" | Symbol 323 MovieClip [small timer score] Frame 1 | Symbol 322 EditableText |
"_bar" | Symbol 327 MovieClip [indicator] Frame 1 | Symbol 325 MovieClip |
"digit4" | Symbol 365 MovieClip Frame 2 | Symbol 363 MovieClip |
"digit3" | Symbol 365 MovieClip Frame 2 | Symbol 363 MovieClip |
"digit2" | Symbol 365 MovieClip Frame 2 | Symbol 363 MovieClip |
"digit1" | Symbol 365 MovieClip Frame 2 | Symbol 363 MovieClip |
"fdigit4" | Symbol 365 MovieClip Frame 3 | Symbol 363 MovieClip |
"fdigit3" | Symbol 365 MovieClip Frame 3 | Symbol 363 MovieClip |
"fdigit2" | Symbol 365 MovieClip Frame 3 | Symbol 363 MovieClip |
"fdigit1" | Symbol 365 MovieClip Frame 3 | Symbol 363 MovieClip |
"fdigit5" | Symbol 365 MovieClip Frame 3 | Symbol 363 MovieClip |
"fdigit6" | Symbol 365 MovieClip Frame 3 | Symbol 363 MovieClip |
"fdigit7" | Symbol 365 MovieClip Frame 3 | Symbol 363 MovieClip |
"pa" | Symbol 366 MovieClip [gameover] Frame 1 | Symbol 335 Button |
"dpa" | Symbol 366 MovieClip [gameover] Frame 1 | Symbol 340 Button |
"score_message" | Symbol 366 MovieClip [gameover] Frame 1 | Symbol 365 MovieClip |
"_shadow" | Symbol 381 MovieClip [cloud_5] Frame 1 | Symbol 304 MovieClip |
"lightening_clip" | Symbol 381 MovieClip [cloud_5] Frame 1 | Symbol 380 MovieClip |
"next_button" | Symbol 428 MovieClip Frame 1 | Symbol 421 Button |
"but_f" | Symbol 429 MovieClip Frame 47 | Symbol 405 Button |
"but_c" | Symbol 429 MovieClip Frame 47 | Symbol 410 Button |
"_bar" | Symbol 457 MovieClip Frame 1 | Symbol 325 MovieClip |
"playbutton" | Symbol 465 MovieClip Frame 20 | Symbol 436 Button |
"backButton" | Symbol 465 MovieClip Frame 20 | Symbol 441 Button |
"ic" | Symbol 490 MovieClip Frame 1 | Symbol 482 MovieClip |
"playbutton" | Symbol 513 MovieClip Frame 39 | Symbol 436 Button |
"backButton" | Symbol 513 MovieClip Frame 39 | Symbol 441 Button |
"backButton" | Symbol 515 MovieClip Frame 1 | Symbol 441 Button |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "small timer clock" |
ExportAssets (56) | Timeline Frame 2 | Symbol 26 as "chicken" |
ExportAssets (56) | Timeline Frame 4 | Symbol 75 as "bird" |
ExportAssets (56) | Timeline Frame 4 | Symbol 256 as "machine" |
ExportAssets (56) | Timeline Frame 4 | Symbol 258 as "feather" |
ExportAssets (56) | Timeline Frame 4 | Symbol 299 as "icarus" |
ExportAssets (56) | Timeline Frame 4 | Symbol 302 as "baldie" |
ExportAssets (56) | Timeline Frame 4 | Symbol 306 as "cloud_1" |
ExportAssets (56) | Timeline Frame 4 | Symbol 308 as "cloud_2" |
ExportAssets (56) | Timeline Frame 4 | Symbol 310 as "cloud_3" |
ExportAssets (56) | Timeline Frame 4 | Symbol 312 as "cloud_4" |
ExportAssets (56) | Timeline Frame 4 | Symbol 315 as "pill" |
ExportAssets (56) | Timeline Frame 4 | Symbol 318 as "large timer" |
ExportAssets (56) | Timeline Frame 4 | Symbol 320 as "pointer" |
ExportAssets (56) | Timeline Frame 4 | Symbol 323 as "small timer score" |
ExportAssets (56) | Timeline Frame 4 | Symbol 327 as "indicator" |
ExportAssets (56) | Timeline Frame 4 | Symbol 366 as "gameover" |
ExportAssets (56) | Timeline Frame 4 | Symbol 381 as "cloud_5" |
ExportAssets (56) | Timeline Frame 4 | Symbol 383 as "chicken man1.wav" |
ExportAssets (56) | Timeline Frame 4 | Symbol 384 as "chickenBit.wav" |
ExportAssets (56) | Timeline Frame 4 | Symbol 385 as "squawk" |
ExportAssets (56) | Timeline Frame 4 | Symbol 386 as "squawk2" |
ExportAssets (56) | Timeline Frame 4 | Symbol 387 as "squawk3" |
ExportAssets (56) | Timeline Frame 4 | Symbol 388 as "ping" |
ExportAssets (56) | Timeline Frame 4 | Symbol 389 as "muzak" |
ExportAssets (56) | Timeline Frame 7 | Symbol 383 as "chicken man1.wav" |
ExportAssets (56) | Timeline Frame 21 | Symbol 315 as "pill" |
ExportAssets (56) | Timeline Frame 34 | Symbol 320 as "pointer" |
Labels
"main" | Frame 5 |
"chickens" | Frame 7 |
"gochickens" | Frame 14 |
"fly" | Frame 21 |
"gofly" | Frame 28 |
"standingleft" | Symbol 26 MovieClip [chicken] Frame 1 |
"standingright" | Symbol 26 MovieClip [chicken] Frame 2 |
"peckingleft" | Symbol 26 MovieClip [chicken] Frame 3 |
"peckingright" | Symbol 26 MovieClip [chicken] Frame 4 |
"walkleft" | Symbol 26 MovieClip [chicken] Frame 5 |
"walkright" | Symbol 26 MovieClip [chicken] Frame 6 |
"panicleft" | Symbol 26 MovieClip [chicken] Frame 7 |
"panicright" | Symbol 26 MovieClip [chicken] Frame 8 |
"preload" | Symbol 26 MovieClip [chicken] Frame 9 |
"flap" | Symbol 75 MovieClip [bird] Frame 1 |
"fall" | Symbol 75 MovieClip [bird] Frame 2 |
"impact" | Symbol 75 MovieClip [bird] Frame 3 |
"inactive" | Symbol 145 MovieClip Frame 1 |
"active" | Symbol 145 MovieClip Frame 2 |
"suck" | Symbol 210 MovieClip Frame 2 |
"dangle" | Symbol 252 MovieClip Frame 1 |
"grab" | Symbol 252 MovieClip Frame 2 |
"miss" | Symbol 252 MovieClip Frame 3 |
"spinUp" | Symbol 252 MovieClip Frame 4 |
"spinDown" | Symbol 252 MovieClip Frame 5 |
"up" | Symbol 252 MovieClip Frame 6 |
"plunge" | Symbol 252 MovieClip Frame 7 |
"throw" | Symbol 252 MovieClip Frame 8 |
"gograb" | Symbol 252 MovieClip Frame 9 |
"catchright" | Symbol 252 MovieClip Frame 10 |
"catchleft" | Symbol 252 MovieClip Frame 11 |
"up2" | Symbol 252 MovieClip Frame 12 |
"inactive" | Symbol 254 MovieClip Frame 1 |
"active" | Symbol 254 MovieClip Frame 2 |
"first flap" | Symbol 299 MovieClip [icarus] Frame 1 |
"fly" | Symbol 299 MovieClip [icarus] Frame 8 |
"tofloat" | Symbol 299 MovieClip [icarus] Frame 19 |
"float" | Symbol 299 MovieClip [icarus] Frame 25 |
"tofall" | Symbol 299 MovieClip [icarus] Frame 38 |
"fall" | Symbol 299 MovieClip [icarus] Frame 41 |
"impact" | Symbol 299 MovieClip [icarus] Frame 53 |
"wings melt" | Symbol 299 MovieClip [icarus] Frame 54 |
"fallnowings" | Symbol 299 MovieClip [icarus] Frame 72 |
"chickens" | Symbol 365 MovieClip Frame 2 |
"fly" | Symbol 365 MovieClip Frame 3 |
"loop_main" | Symbol 429 MovieClip Frame 50 |
"loop" | Symbol 465 MovieClip Frame 31 |
"loop_fly" | Symbol 513 MovieClip Frame 113 |
|