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

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

Icarus.swf

This is the info page for
Flash #23602

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


Text
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 2
preloaderChicken = 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 3
chickenlist = []; 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 5
frame._x = -65.6; frame._y = -0.9; frame.swapDepths(15); chicken_backdrop._x = 0; chicken_backdrop._y = 0; if (muzakPlaying == true) { muzak.start(); }
Frame 6
stop();
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 13
readychickens(); stop();
Frame 20
stop();
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 27
readyfly(); stop();
Frame 34
stop();
Symbol 4 MovieClip [small timer clock] Frame 1
stop();
Symbol 25 MovieClip Frame 1
stop();
Symbol 26 MovieClip [chicken] Frame 1
stop();
Symbol 51 Button
on (release) { if (_global.muzakPlaying == true) { _global.muzakPlaying = false; muzak.stop(); } else { _global.muzakPlaying = true; muzak.start(); } }
Symbol 75 MovieClip [bird] Frame 1
stop();
Symbol 75 MovieClip [bird] Frame 11
this.obj.fall();
Symbol 123 MovieClip Frame 27
gotoAndPlay (3);
Symbol 145 MovieClip Frame 1
stop();
Symbol 209 MovieClip Frame 26
feathers._showerer = setInterval(feathers, "shower", 3000); chickens.makeBaldOne(); _parent.gotoAndStop(1);
Symbol 210 MovieClip Frame 1
stop();
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 1
stop();
Symbol 254 MovieClip Frame 1
stop();
Symbol 255 MovieClip Frame 1
stop();
Symbol 294 MovieClip Frame 20
_icarus.fall();
Symbol 299 MovieClip [icarus] Frame 15
if (_ivcarus.flyingFlag) { _icarus.inject(); }
Symbol 299 MovieClip [icarus] Frame 19
if (_icarus.flyingFlag == true) { gotoAndPlay (8); }
Symbol 299 MovieClip [icarus] Frame 24
times = 10;
Symbol 299 MovieClip [icarus] Frame 38
if (((times--) > 0) || (_icarus.glidingFlag == true)) { gotoAndPlay (25); }
Symbol 299 MovieClip [icarus] Frame 52
gotoAndPlay (41);
Symbol 299 MovieClip [icarus] Frame 53
stop();
Symbol 299 MovieClip [icarus] Frame 83
gotoAndPlay (72);
Symbol 318 MovieClip [large timer] Frame 1
stop();
Symbol 323 MovieClip [small timer score] Frame 1
stop();
Symbol 363 MovieClip Frame 1
stop();
Symbol 365 MovieClip Frame 1
stop();
Symbol 380 MovieClip Frame 1
stop();
Symbol 428 MovieClip Frame 1
next_button.onRelease = function () { trace(this._currentframe); this._parent.play(); };
Symbol 428 MovieClip Frame 6
stop();
Symbol 428 MovieClip Frame 14
stop();
Symbol 428 MovieClip Frame 22
stop();
Symbol 428 MovieClip Frame 30
stop();
Symbol 428 MovieClip Frame 38
stop();
Symbol 429 MovieClip Frame 49
but_c.onRelease = function () { mainTL.gotoAndPlay("chickens"); }; but_f.onRelease = function () { mainTL.gotoAndPlay("fly"); };
Symbol 429 MovieClip Frame 69
gotoAndPlay (50);
Symbol 465 MovieClip Frame 30
readychickens();
Symbol 465 MovieClip Frame 60
gotoAndPlay (31);
Symbol 476 MovieClip Frame 72
start_game();
Symbol 487 Button
on (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 Button
on (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 1
stop();
Symbol 513 MovieClip Frame 39
readyfly();
Symbol 513 MovieClip Frame 183
gotoAndPlay (113);
Symbol 515 MovieClip Frame 55
start_game();

Library Items

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

Instance Names

"fly_backdrop"Frame 4Symbol 31 MovieClip
"frame"Frame 4Symbol 54 MovieClip
"chicken_backdrop"Frame 4Symbol 57 MovieClip
"chintro"Frame 7Symbol 465 MovieClip
"chintro2"Frame 14Symbol 476 MovieClip
"flintro"Frame 21Symbol 513 MovieClip
"flintro2"Frame 28Symbol 515 MovieClip
"offscreenpointer"Frame 34Symbol 320 MovieClip [pointer]
"time"Symbol 4 MovieClip [small timer clock] Frame 1Symbol 3 EditableText
"walkleft"Symbol 26 MovieClip [chicken] Frame 5Symbol 21 MovieClip
"panicleft"Symbol 26 MovieClip [chicken] Frame 7Symbol 24 MovieClip
"the_chicken"Symbol 26 MovieClip [chicken] Frame 9Symbol 25 MovieClip
"bg_2"Symbol 31 MovieClip Frame 1Symbol 30 MovieClip
"bg_1"Symbol 31 MovieClip Frame 1Symbol 30 MovieClip
"target"Symbol 75 MovieClip [bird] Frame 1Symbol 59 MovieClip
"_icarus"Symbol 252 MovieClip Frame 1Symbol 231 MovieClip
"_icarus"Symbol 252 MovieClip Frame 2Symbol 233 MovieClip
"_icarus"Symbol 252 MovieClip Frame 3Symbol 235 MovieClip
"_icarus"Symbol 252 MovieClip Frame 4Symbol 238 MovieClip
"_icarus"Symbol 252 MovieClip Frame 5Symbol 241 MovieClip
"_grab"Symbol 252 MovieClip Frame 6Symbol 59 MovieClip
"   "Symbol 252 MovieClip Frame 6Symbol 242 MovieClip
"_icarus"Symbol 252 MovieClip Frame 7Symbol 243 MovieClip
"_icarus"Symbol 252 MovieClip Frame 8Symbol 244 MovieClip
"_grab"Symbol 252 MovieClip Frame 9Symbol 59 MovieClip
"_icarus"Symbol 252 MovieClip Frame 9Symbol 245 MovieClip
"   "Symbol 252 MovieClip Frame 10Symbol 251 MovieClip
"_grab"Symbol 252 MovieClip Frame 12Symbol 59 MovieClip
"   "Symbol 252 MovieClip Frame 12Symbol 242 MovieClip
"_icarus"Symbol 255 MovieClip Frame 1Symbol 252 MovieClip
"_cog"Symbol 255 MovieClip Frame 1Symbol 254 MovieClip
"_daedalus"Symbol 256 MovieClip [machine] Frame 1Symbol 145 MovieClip
"_machine"Symbol 256 MovieClip [machine] Frame 1Symbol 210 MovieClip
"_arm"Symbol 256 MovieClip [machine] Frame 1Symbol 255 MovieClip
"_feather"Symbol 258 MovieClip [feather] Frame 1Symbol 257 MovieClip
"_shadow"Symbol 306 MovieClip [cloud_1] Frame 1Symbol 304 MovieClip
"_shadow"Symbol 308 MovieClip [cloud_2] Frame 1Symbol 304 MovieClip
"_shadow"Symbol 310 MovieClip [cloud_3] Frame 1Symbol 304 MovieClip
"_shadow"Symbol 312 MovieClip [cloud_4] Frame 1Symbol 304 MovieClip
"time"Symbol 318 MovieClip [large timer] Frame 1Symbol 317 EditableText
"time"Symbol 323 MovieClip [small timer score] Frame 1Symbol 322 EditableText
"_bar"Symbol 327 MovieClip [indicator] Frame 1Symbol 325 MovieClip
"digit4"Symbol 365 MovieClip Frame 2Symbol 363 MovieClip
"digit3"Symbol 365 MovieClip Frame 2Symbol 363 MovieClip
"digit2"Symbol 365 MovieClip Frame 2Symbol 363 MovieClip
"digit1"Symbol 365 MovieClip Frame 2Symbol 363 MovieClip
"fdigit4"Symbol 365 MovieClip Frame 3Symbol 363 MovieClip
"fdigit3"Symbol 365 MovieClip Frame 3Symbol 363 MovieClip
"fdigit2"Symbol 365 MovieClip Frame 3Symbol 363 MovieClip
"fdigit1"Symbol 365 MovieClip Frame 3Symbol 363 MovieClip
"fdigit5"Symbol 365 MovieClip Frame 3Symbol 363 MovieClip
"fdigit6"Symbol 365 MovieClip Frame 3Symbol 363 MovieClip
"fdigit7"Symbol 365 MovieClip Frame 3Symbol 363 MovieClip
"pa"Symbol 366 MovieClip [gameover] Frame 1Symbol 335 Button
"dpa"Symbol 366 MovieClip [gameover] Frame 1Symbol 340 Button
"score_message"Symbol 366 MovieClip [gameover] Frame 1Symbol 365 MovieClip
"_shadow"Symbol 381 MovieClip [cloud_5] Frame 1Symbol 304 MovieClip
"lightening_clip"Symbol 381 MovieClip [cloud_5] Frame 1Symbol 380 MovieClip
"next_button"Symbol 428 MovieClip Frame 1Symbol 421 Button
"but_f"Symbol 429 MovieClip Frame 47Symbol 405 Button
"but_c"Symbol 429 MovieClip Frame 47Symbol 410 Button
"_bar"Symbol 457 MovieClip Frame 1Symbol 325 MovieClip
"playbutton"Symbol 465 MovieClip Frame 20Symbol 436 Button
"backButton"Symbol 465 MovieClip Frame 20Symbol 441 Button
"ic"Symbol 490 MovieClip Frame 1Symbol 482 MovieClip
"playbutton"Symbol 513 MovieClip Frame 39Symbol 436 Button
"backButton"Symbol 513 MovieClip Frame 39Symbol 441 Button
"backButton"Symbol 515 MovieClip Frame 1Symbol 441 Button

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 4 as "small timer clock"
ExportAssets (56)Timeline Frame 2Symbol 26 as "chicken"
ExportAssets (56)Timeline Frame 4Symbol 75 as "bird"
ExportAssets (56)Timeline Frame 4Symbol 256 as "machine"
ExportAssets (56)Timeline Frame 4Symbol 258 as "feather"
ExportAssets (56)Timeline Frame 4Symbol 299 as "icarus"
ExportAssets (56)Timeline Frame 4Symbol 302 as "baldie"
ExportAssets (56)Timeline Frame 4Symbol 306 as "cloud_1"
ExportAssets (56)Timeline Frame 4Symbol 308 as "cloud_2"
ExportAssets (56)Timeline Frame 4Symbol 310 as "cloud_3"
ExportAssets (56)Timeline Frame 4Symbol 312 as "cloud_4"
ExportAssets (56)Timeline Frame 4Symbol 315 as "pill"
ExportAssets (56)Timeline Frame 4Symbol 318 as "large timer"
ExportAssets (56)Timeline Frame 4Symbol 320 as "pointer"
ExportAssets (56)Timeline Frame 4Symbol 323 as "small timer score"
ExportAssets (56)Timeline Frame 4Symbol 327 as "indicator"
ExportAssets (56)Timeline Frame 4Symbol 366 as "gameover"
ExportAssets (56)Timeline Frame 4Symbol 381 as "cloud_5"
ExportAssets (56)Timeline Frame 4Symbol 383 as "chicken man1.wav"
ExportAssets (56)Timeline Frame 4Symbol 384 as "chickenBit.wav"
ExportAssets (56)Timeline Frame 4Symbol 385 as "squawk"
ExportAssets (56)Timeline Frame 4Symbol 386 as "squawk2"
ExportAssets (56)Timeline Frame 4Symbol 387 as "squawk3"
ExportAssets (56)Timeline Frame 4Symbol 388 as "ping"
ExportAssets (56)Timeline Frame 4Symbol 389 as "muzak"
ExportAssets (56)Timeline Frame 7Symbol 383 as "chicken man1.wav"
ExportAssets (56)Timeline Frame 21Symbol 315 as "pill"
ExportAssets (56)Timeline Frame 34Symbol 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




http://swfchan.com/5/23602/info.shtml
Created: 26/5 -2019 03:00:59 Last modified: 26/5 -2019 03:00:59 Server time: 01/11 -2024 01:23:19