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

swfchan turned sixteen years old yesterday! (5may2024)

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

Bird Flight.swf

This is the info page for
Flash #24236

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


Text
d

遊び方

スタート

ランキング

マウスをクリックするとマザーバードが上に
あがります。
"マウスをクリックして見てください"

空・山にぶつかるとゲームオーバーとなります。

雲にぶつかるとライフ(小鳥)が一つ減りライフ
(小鳥)が無い時にぶつかるとゲームオーバーと
なります。

小鳥を獲得するとライフが一つ追加されます。

空と山にぶつからず、ランダムに出現する雲を避けながら
小鳥を集めます。夜になるとさらに点数を獲得することが出来ます。

ボーナス

+500

+3000

score

準備

マウスをクリックして!

ActionScript [AS1/AS2]

Frame 1
_global.setDelay = function () { var a = arguments; var obj = a[0]; var fnc = a[1]; var delay = a[2]; if ((typeof(obj) == "function") && (typeof(fnc) == "number")) { delay = fnc; fnc = obj; obj = null; var cut = 2; } else if (((obj instanceof Object) && (typeof((fnc = obj[fnc])) == "function")) && (typeof(delay) == "number")) { var cut = 3; } else { trace("Warning : [setDelay] invalid parameter types."); return(false); } a.splice(0, cut); var f = function (array) { fnc.apply(obj, array); clearInterval(id); }; var id = setInterval(f, delay, a); return(id); }; _global.EF = {Old:{}, OnEF:{}, SetOnEF:{}}; _global.EF.traceTable = function (t) { var i = 0; while (i <= (t.length - 1)) { trace(t[i].toString()); i++; } }; _global.EF.Old.oldrandom = _global.random; _global.random = function (intval) { var a = Math.floor(Math.random()); return(a); }; ASSetPropFlags(_global, ["setDelay", "EF"], 1); _global.IV = {GAMEID:"BFLIGHT", FPS:30, FLAP_COOLTIME:5, TIME_SCOREUP:5, TIME_ATTACH_LAND:20, TIME_DAY_CLOUD:30, TIME_NIGHT_CLOUD:25, TIME_DAY:7, DAY_CHANGE_SEASON:3, SCORE_DAY_BONUS:500, SCORE_BIRD_BONUS:3000, SCORE_CLOUD_BIGGER:1500, SCORE_UNIT:10, START_XPOS:180, START_YPOS:240, RATE_BABY:0.3, SPEED_FLAP:-7, SPEED_GRAVITY:0.3, SPEED_MAX:3.5, SPEED_MIN:-4.5, SPEED_SCROLL:-9, SPEED_CLOUD:-10, SPEED_BACKGROUND:2, SPACE_HEIGHT:225, SPACE_UNIT:25, LIMIT_TOP:100, LIMIT_BOTTOM:400}; createEmptyMovieClip("event", 999); createEmptyMovieClip("bgm_mc", 1001); createEmptyMovieClip("ef1_mc", 1002); createEmptyMovieClip("ef2_mc", 1003); onEF_playerMovement = function () { if ((this._y < 450) || (this.yspeed < 0)) { this._y = this._y + this.yspeed; } else { this._y = 450; } this.yspeed = this.yspeed + IV.SPEED_GRAVITY; if (this.yspeed > IV.SPEED_MAX) { this.yspeed = IV.SPEED_MAX; } if (this.yspeed < IV.SPEED_MIN) { this.yspeed = IV.SPEED_MIN; } if ((GAME.timer % IV.TIME_SCOREUP) == 0) { GAME.score = GAME.score + IV.SCORE_UNIT; score_txt.text = GAME.score; } }; onEF_clickCheck = function () { if (Key.isDown(1) && (this.flapCount >= IV.FLAP_COOLTIME)) { this.flapCount = 0; player_mc.yspeed = player_mc.yspeed + (IV.SPEED_FLAP + (bird_area.show_num * 0.5)); player_mc.play(); } else { this.flapCount++; } }; effectCrash = function (t, s, d) { var cnt = 0; var fnc = function (d) { this._x = (this._x0 + random((d * 2) + 1)) - d; this._y = (this._y0 + random((d * 2) + 1)) - d; }; var f = function (d) { fnc.call(t, d); cnt++; if (cnt >= s) { clearInterval(id); t._x = t._x0; t._y = t._y0; delete t._x0; delete t._y0; } updateAfterEvent(); }; t._x0 = t._x; t._y0 = t._y; var id = setInterval(f, 20, d); return(true); }; setPlayer_mc = function () { player_mc.onEnterFrame = onEF_playerMovement; }; init = function () { ServerConnection.onGameStart(); _global.GAME = {score:0, cloudAttachTime:IV.TIME_DAY_CLOUD, lastAttachTime:0, bg_sound:new Sound(bgm_mc), ef1_sound:new Sound(ef1_mc), ef2_sound:new Sound(ef2_mc), timer:0}; GAME.bg_sound.attachSound("bg_symbol"); GAME.bg_sound.setVolume(50); GAME.bg_sound.start(0, 100); score_txt.text = 0; gameover_mc._visible = false; startMsg_mc.gotoAndPlay(1); player_mc._x = IV.START_XPOS; player_mc._y = IV.START_YPOS; player_mc._rotation = 0; player_mc.yspeed = -3; setDelay(setPlayer_mc, 1200); bg_area.dep = 0; for (var i in bg_area) { bg_area[i].removeMovieClip(); } event.flapCount = 0; event.onEnterFrame = onEF_clickCheck; var dep = 0; var mc = null; var ran = 0; var temp = 0; sky_mc.setMask(mask_area); obstacle_area.dep = 0; var i = 1; while (i <= 4) { mc = bird_area.attachMovie("bird_symbol", ("bird" + i) + "_mc", i); mc._x = (player_mc._x - (36 * i)) - 15; mc._y = player_mc._y; mc.gotoAndStop(i); mc._visible = false; i++; } bird_area.show_num = 0; bird_area.showflag = true; bird_area.lose = function () { if (this.show_num > 0) { this[("bird" + this.show_num) + "_mc"]._visible = false; this.show_num--; } }; bird_area.bonus = function () { var i = 1; while (i <= 4) { this.lose(); i++; } player_mc.bonus(IV.SCORE_BIRD_BONUS); GAME.score = GAME.score + IV.SCORE_BIRD_BONUS; }; player_mc.bonus = function (num) { if (num == 3000) { this.bonus_mc.gotoAndPlay("BIRDS"); } else if (num == 500) { this.bonus_mc.gotoAndPlay("DAY"); } }; var i = 1; while (i <= 10) { obstacle_area.dep++; mc = obstacle_area.attachMovie("obstacle_symbol", ("obstacle" + obstacle_area.dep) + "_mc", obstacle_area.dep); mc._x = 600; mc._y = 0; mc.xspeed = IV.SPEED_CLOUD; mc._visible = false; i++; } var i = 1; while (i <= 7) { dep = obstacle_area.dep + i; mc = obstacle_area.attachMovie("sky_symbol", ("sky" + i) + "_mc", dep); ran = random(3) - 1; mc._x = (i - 1) * 100; if (i == 1) { mc._y = 100; } else { mc.prevLand = obstacle_area[("sky" + (i - 1)) + "_mc"]; mc._y = mc.prevLand._y + (ran * IV.SPACE_UNIT); } if (mc._y < IV.LIMIT_TOP) { mc._y = IV.LIMIT_TOP; ran = 0; } else if (mc._y > (IV.LIMIT_BOTTOM - IV.SPACE_HEIGHT)) { mc._y = IV.LIMIT_BOTTOM - IV.SPACE_HEIGHT; ran = 0; } mc.shape_mc.gotoAndStop(ran + 2); mc.xspeed = IV.SPEED_SCROLL; mc_mask = mask_area.attachMovie("mask_symbol", ("mask" + i) + "_mc", dep); mc_mask._x = (i - 1) * 100; if (i == 1) { mc_mask._y = 100; } else { mc_mask._y = mask_area[("mask" + (i - 1)) + "_mc"]._y + (ran * IV.SPACE_UNIT); } mc_mask.gotoAndStop(ran + 2); mc.mask_mc = mc_mask; i = i + 7; mc = mc.land_mc; mc.shape_mc.gotoAndStop(ran + 2); mc._x = (i - 8) * 100; temp = (mc._y = (obstacle_area[("sky" + (i - 7)) + "_mc"]._y + 300) + IV.SPACE_HEIGHT); i = i - 7; i++; } obstacle_area.sky1_mc.prevLand = obstacle_area.sky7_mc; obstacle_area.dep = 0; summer_mc.isDown = true; summer_mc.changeSeason = function () { if (this.isDown) { this._ty = -400; day_mc = winter_mc; this.isDown = false; } else { this._ty = 45; day_mc = summer_mc; this.isDown = true; } }; day_mc = summer_mc; summer_mc._ty = 45; day_mc.gotoAndStop("NIGHT"); day_mc.image_mc.gotoAndStop("NIGHT"); day_mc.label = "DAY"; sky_mc.gotoAndStop("NIGHT"); var i = 1; while (i <= 7) { obstacle_area[("sky" + i) + "_mc"].gotoAndStop("NIGHT"); obstacle_area[("land" + (i + 7)) + "_mc"].gotoAndStop("NIGHT"); i++; } onEnterFrame = function () { var hit = false; var player_coor = player_mc.hit.getBounds(this); GAME.timer++; if ((GAME.timer % (IV.FPS * IV.TIME_DAY)) == 0) { if (day_mc.label == "DAY") { GAME.cloudAttachTime = IV.TIME_NIGHT_CLOUD; day_mc.gotoAndPlay("NIGHT"); day_mc.image_mc.gotoAndPlay("NIGHT"); day_mc.label = "NIGHT"; sky_mc.gotoAndPlay("NIGHT"); } else { GAME.day++; if ((GAME.day % IV.DAY_CHANGE_SEASON) == 0) { summer_mc.changeSeason(); } GAME.ef1_sound.attachSound("hen_symbol"); GAME.ef1_sound.setVolume(70); GAME.ef1_sound.start(0, 1); GAME.cloudAttachTime = IV.TIME_DAY_CLOUD; player_mc.bonus(IV.SCORE_DAY_BONUS); GAME.score = GAME.score + IV.SCORE_DAY_BONUS; score_txt.text = GAME.score; day_mc.gotoAndPlay("DAY"); day_mc.image_mc.gotoAndPlay("DAY"); day_mc.label = "DAY"; bird_area.showflag = true; sky_mc.gotoAndPlay("DAY"); } } var i = 1; while (i <= 10) { mc = obstacle_area[("obstacle" + i) + "_mc"]; if ((mc._x < 0) || (!mc._visible)) { mc._visible = false; } else { mc._x = mc._x + mc.xspeed; var size = mc.cloud_mc._currentframe; if (size == 9) { size = 11; } mc.cloud_mc.trace_mc._width = (35 + (3 * size)) * 2; mc.cloud_mc.trace_mc._height = (25 + (2.5 * size)) * 2; if ((Math.abs(player_mc._x - mc._x) <= (35 + (2 * size))) && (Math.abs(player_mc._y - mc._y) <= (25 + (2.5 * size)))) { if (mc.stats == "CLOUD") { mc.stats = "HIT"; this.onHit(); return(undefined); } if (mc.stats == "BIRD") { GAME.ef2_sound.attachSound("babyhit_symbol"); GAME.ef2_sound.setVolume(60); GAME.ef2_sound.start(0, 1); bird_area.show_num++; bird_area[("bird" + bird_area.show_num) + "_mc"]._visible = true; if (bird_area.show_num == 4) { setDelay(bird_area, "bonus", 600); } mc.stats = "HIT"; mc.gotoAndStop(3); } } } i++; } var ran; var i = 1; while (i <= 7) { mc = obstacle_area[("sky" + i) + "_mc"]; mc._x = (mc.land_mc._x = (mc.mask_mc._x = mc.mask_mc._x + mc.xspeed)); if (mc._x < 0) { mc._x = (mc.land_mc._x = (mc.mask_mc._x = mc.mask_mc._x + 700)); ran = random(3) - 1; mc._y = mc.prevLand._y + (ran * IV.SPACE_UNIT); if (mc._y < IV.LIMIT_TOP) { mc._y = IV.LIMIT_TOP; ran = 0; } else if (mc._y > (IV.LIMIT_BOTTOM - IV.SPACE_HEIGHT)) { mc._y = IV.LIMIT_BOTTOM - IV.SPACE_HEIGHT; ran = 0; } mc.mask_mc._y = mc._y; mc.land_mc._y = (mc._y + IV.SPACE_HEIGHT) + 300; mc.shape_mc.gotoAndStop(ran + 2); mc.land_mc.shape_mc.gotoAndStop(ran + 2); mc.mask_mc.gotoAndStop(ran + 2); } if (mc._x >= 550) { ty = mc._y; } i++; } if ((GAME.timer - GAME.lastAttachTime) >= GAME.cloudAttachTime) { GAME.lastAttachTime = GAME.timer; if (obstacle_area.dep < 10) { obstacle_area.dep++; } else { obstacle_area.dep = 1; } mc = obstacle_area[("obstacle" + obstacle_area.dep) + "_mc"]; mc._x = 550; if ((day_mc.label == "DAY") && (bird_area.showflag == true)) { if (bird_area.show_num < 4) { GAME.ef2_sound.attachSound("baby_symbol"); GAME.ef2_sound.setVolume(40); GAME.ef2_sound.start(0, 5); mc.gotoAndStop(2); mc.bird_mc.gotoAndStop(bird_area.show_num + 1); mc.stats = "BIRD"; bird_area.showflag = false; mc._y = ((ty + random(IV.SPACE_HEIGHT - 50)) - 30) + 60; } else { bird_area.showflag = false; } } else { mc.gotoAndStop(1); mc.stats = "CLOUD"; mc._y = ((ty + random(IV.SPACE_HEIGHT - 50)) - 30) + 60; mc.cloud_mc.gotoAndStop(random(Math.floor(GAME.score / IV.SCORE_CLOUD_BIGGER) + 1) + 1); } mc.xspeed = IV.SPEED_CLOUD; mc._visible = true; } var i = 1; while (i <= 7) { mc = obstacle_area[("sky" + i) + "_mc"]; if ((mc._x <= (player_coor.xmax + 100)) && (mc._x >= player_coor.xmin)) { if ((((mc._y - (((mc.shape_mc._currentframe - 2) * IV.SPACE_UNIT) / 2)) - 3) >= player_coor.ymin) || ((((mc._y + IV.SPACE_HEIGHT) - (((mc.shape_mc._currentframe - 2) * IV.SPACE_UNIT) / 2)) - 2) <= player_coor.ymax)) { mc.stats = "HIT"; this.onGameOver(); return(undefined); } } i++; } var mc; day_mc.image_mc._x = day_mc.image_mc._x - IV.SPEED_BACKGROUND; if (day_mc.image_mc._x <= -1100) { day_mc.image_mc._x = 0; } sky_mc._x = sky_mc._x - 6; if (sky_mc._x <= -550) { sky_mc._x = 0; } var tmc = player_mc; var i = 1; while (i <= 4) { mc = bird_area[("bird" + i) + "_mc"]; mc._y = mc._y + ((tmc._y - mc._y) * 0.1); tmc = mc; i++; } }; }; onHit = function () { if (bird_area.show_num > 0) { bird_area.lose(); effectCrash(this, 4, 3); GAME.ef1_sound.attachSound("wind_symbol"); GAME.ef1_sound.start(0, 1); } else { onGameOver(); } }; onGameOver = function () { GAME.bg_sound.stop(); GAME.ef1_sound.attachSound("wing_symbol"); GAME.ef1_sound.start(0, 1); gameover_mc._visible = true; gameover_mc.replay_btn.onRelease = function () { init(); }; gameover_mc.restart_btn.onRelease = function () { gotoAndPlay (1); }; delete onEnterFrame; delete event.onEnterFrame; delete player_mc.onEnterFrame; this.x0 = this._x; this.y0 = this._y; var i = 1; while (i <= 4) { bg_area.dep++; mc = bg_area.attachMovie("tail_symbol", ("tail" + bg_area.dep) + "_mc", bg_area.dep); mc._x = ((player_mc._x - 10) + random(80)) - 40; mc._y = ((player_mc._y - 10) + random(40)) - 20; mc.gotoAndPlay(random(mc._totalframes) + 1); i++; } effectCrash(this, 12, 3); ServerConnection.onGameOver(); onEnterFrame = function () { player_mc._y = player_mc._y + 9; player_mc._rotation = player_mc._rotation - 5; var i = 1; while (i <= 6) { bg_area[("tail" + ((bg_area.dep - i) + 1)) + "_mc"]._y = bg_area[("tail" + ((bg_area.dep - i) + 1)) + "_mc"]._y + 3; i++; } var i = 1; while (i <= 4) { mc = bird_area[("bird" + i) + "_mc"]; mc._y = mc._y + (10 - i); mc._rotation = mc._rotation - 5; i++; } }; };
Instance of Symbol 77 MovieClip in Frame 1
onClipEvent (load) { speed = 1; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Instance of Symbol 79 MovieClip "c2" in Frame 1
onClipEvent (load) { speed = 3; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Instance of Symbol 77 MovieClip "c1" in Frame 1
onClipEvent (load) { speed = 3; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Instance of Symbol 79 MovieClip in Frame 1
onClipEvent (load) { speed = 0.5; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Instance of Symbol 77 MovieClip in Frame 1
onClipEvent (load) { speed = 0.5; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Frame 45
rank_btn.onRelease = function () { ServerConnection.sendRankRequest(IV.GAMEID, 32); };
Frame 115
stop();
Instance of Symbol 77 MovieClip in Frame 116
onClipEvent (load) { speed = 1; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Instance of Symbol 79 MovieClip "c2" in Frame 116
onClipEvent (load) { speed = 3; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Instance of Symbol 77 MovieClip "c1" in Frame 116
onClipEvent (load) { speed = 3; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Instance of Symbol 79 MovieClip in Frame 116
onClipEvent (load) { speed = 0.5; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Instance of Symbol 77 MovieClip in Frame 116
onClipEvent (load) { speed = 0.5; } onClipEvent (enterFrame) { this._x = this._x - speed; if ((this._x + (this._width / 2)) < 0) { this._x = 550 + (this._width / 2); } }
Frame 143
gotoAndPlay (277);
Instance of Symbol 118 MovieClip in Frame 180
onClipEvent (mouseDown) { play(); }
Frame 255
stop();
Frame 277
init(); stop();
Instance of Symbol 70 MovieClip [decreasingmover] in Frame 277
//component parameters onClipEvent (initialize) { _targetInstanceName = "summer_mc"; speedRate = 0.3; xtarget = "defaultValue"; ytarget = "defaultValue"; stopLimit = 0.5; }
Symbol 10 MovieClip [mask_symbol] Frame 1
stop();
Symbol 27 MovieClip Frame 1
stop();
Symbol 49 MovieClip [obstacle_symbol] Frame 1
stop();
Symbol 63 MovieClip Frame 1
stop();
Symbol 64 MovieClip [sky_symbol] Frame 24
stop();
Symbol 64 MovieClip [sky_symbol] Frame 36
stop();
Symbol 67 MovieClip [DKMoverComponent] Frame 1
#initclip 1 MovieClip.prototype.attachDKMover = function (type, target, depth) { var symbol = ""; switch (type.toUpperCase()) { case "D" : symbol = "decreasingmover"; break; case "E" : symbol = "elasticmover"; break; case "A" : symbol = "accellerativemover"; break; default : trace(("Warning : " + this) + ".attachDKMover has a invalid 'dkmover_type'[String type : \"D\",\"E\",\"A\"]"); } var dkmover = this.attachMovie(symbol, "DKMover_" + target._name, depth); dkmover.mc = target; dkmover.xtarget = target._x; dkmover.ytarget = target._y; dkmover.addTargetProperty(); target._dkmover = dkmover; return(dkmover); }; ASSetPropFlags(MovieClip.prototype, ["attachDKMover"], 1); DKMover = function () { this.init(); }; var p = DKMover.prototype; p.stopLimit = 0.5; p.init = function () { this.mc = this._parent[this._targetInstanceName]; this.mc._dkmover = this; this._visible = false; this.xspeed = 0; this.yspeed = 0; if ((this.xtarget == "defaultValue") || (this.xtarget == "")) { this.xtarget = this.mc._x; } if ((this.ytarget == "defaultValue") || (this.ytarget == "")) { this.ytarget = this.mc._y; } if ((this.xtarget != this.mc._x) || (this.ytarget != this.mc._y)) { this.onEnterFrame = this._onEnterFrame; } if (typeof(this.xtarget) == "string") { this.xtarget = eval (this.xtarget); } if (typeof(this.ytarget) == "string") { this.ytarget = eval (this.ytarget); } if (this._targetInstanceName == "defaultValue") { this._onEnterFrame = function () { trace(("Warning : DKMover \"" + this._name) + "\" has no target MovieClip."); delete this.onEnterFrame; }; } }; p.enabled = true; p._onEnterFrame = function () { var m = this.mc; if (this.enabled) { if ((((Math.abs(this.xtarget - m._x) <= this.stopLimit) && (Math.abs(this.ytarget - m._y) <= this.stopLimit)) && (Math.abs(this.xspeed) <= this.stopLimit)) && (Math.abs(this.yspeed) <= this.stopLimit)) { delete this.onEnterFrame; m._x = this.xtarget; m._y = this.ytarget; } else { m._x = m._x + this.xspeed; m._y = m._y + this.yspeed; } } else { delete this.onEnterFrame; } }; p.mc_setXPos = function (x) { var h = this._dkmover; h.xtarget = x; if ((h.onEnterFrame == undefined) && (h.enabled)) { h.onEnterFrame = h._onEnterFrame; } }; p.mc_setYPos = function (y) { var h = this._dkmover; h.ytarget = y; if ((h.onEnterFrame == undefined) && (h.enabled)) { h.onEnterFrame = h._onEnterFrame; } }; p.mc_getXPos = function () { return(this._dkmover.xtarget); }; p.mc_getYPos = function () { return(this._dkmover.ytarget); }; p.addTargetProperty = function () { var mc = this.mc; if (mc._tx != undefined) { this.mc_setXPos.call(mc, mc._tx); } if (mc._ty != undefined) { this.mc_setYPos.call(mc, mc._ty); } mc.addProperty("_tx", this.mc_getXPos, this.mc_setXPos); mc.addProperty("_ty", this.mc_getYPos, this.mc_setYPos); ASSetPropFlags(mc, ["_dkmover", "_tx", "_ty"], 1); }; delete p; #endinitclip
Symbol 70 MovieClip [decreasingmover] Frame 1
#initclip 2 DecreasingMover = function () { this.init(); }; Object.registerClass("decreasingmover", DecreasingMover); var p = ((DecreasingMover.prototype = new DKMover())); p.init = function () { super.init(); }; p.speedRate = 0.3; p._onEnterFrame = function () { var m = this.mc; this.xspeed = (this.xtarget - m._x) * this.speedRate; this.yspeed = (this.ytarget - m._y) * this.speedRate; super._onEnterFrame(); }; #endinitclip this.addTargetProperty();
Instance of Symbol 67 MovieClip [DKMoverComponent] in Symbol 70 MovieClip [decreasingmover] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 75 MovieClip Frame 30
stop();
Symbol 96 MovieClip Frame 18
stop();
Symbol 98 Button
on (release) { gotoAndPlay (144); }
Symbol 100 MovieClip Frame 18
stop();
Symbol 101 Button
on (release) { gotoAndPlay (116); }
Symbol 103 MovieClip Frame 18
stop();
Symbol 118 MovieClip Frame 1
stop();
Symbol 118 MovieClip Frame 2
player_mc.play();
Symbol 135 Button
on (release) { _parent.gotoAndPlay(272); }
Symbol 136 MovieClip Frame 10
stop();
Symbol 143 MovieClip Frame 20
stop();
Symbol 143 MovieClip Frame 40
stop();
Symbol 150 MovieClip Frame 19
stop();
Symbol 150 MovieClip Frame 40
stop();
Symbol 155 MovieClip Frame 20
stop();
Symbol 155 MovieClip Frame 40
stop();
Symbol 156 MovieClip Frame 19
stop();
Symbol 156 MovieClip Frame 40
stop();
Symbol 163 MovieClip Frame 24
stop();
Symbol 163 MovieClip Frame 37
stop();
Symbol 173 MovieClip Frame 1
stop();
Symbol 173 MovieClip Frame 14
gotoAndStop (1);
Symbol 174 MovieClip Frame 1
stop();
Symbol 179 MovieClip Frame 9
stop();
Symbol 201 MovieClip Frame 31
stop();

Library Items

Symbol 1 Sound [wing_symbol]
Symbol 2 Sound [bg_symbol]
Symbol 3 Sound [baby_symbol]
Symbol 4 Sound [wind_symbol]
Symbol 5 Sound [hen_symbol]
Symbol 6 Sound [babyhit_symbol]
Symbol 7 GraphicUsed by:10
Symbol 8 GraphicUsed by:10
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClip [mask_symbol]Uses:7 8 9
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:27
Symbol 13 BitmapUsed by:14
Symbol 14 GraphicUses:13Used by:27
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:27
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:27
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:27
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:27
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:27
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:27
Symbol 27 MovieClipUses:12 14 16 18 20 22 24 26Used by:49
Symbol 28 BitmapUsed by:29
Symbol 29 GraphicUses:28Used by:32
Symbol 30 BitmapUsed by:31
Symbol 31 GraphicUses:30Used by:32
Symbol 32 MovieClipUses:29 31Used by:48  Timeline
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:37
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:37
Symbol 37 MovieClipUses:34 36Used by:48
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:42
Symbol 40 BitmapUsed by:41
Symbol 41 GraphicUses:40Used by:42
Symbol 42 MovieClipUses:39 41Used by:48
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:47
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:47
Symbol 47 MovieClipUses:44 46Used by:48
Symbol 48 MovieClip [bird_symbol]Uses:32 37 42 47Used by:49
Symbol 49 MovieClip [obstacle_symbol]Uses:27 48
Symbol 50 GraphicUsed by:53
Symbol 51 GraphicUsed by:53
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClip [tail_symbol]Uses:50 51 52
Symbol 54 BitmapUsed by:56
Symbol 55 BitmapUsed by:56 76
Symbol 56 GraphicUses:54 55Used by:63
Symbol 57 BitmapUsed by:59
Symbol 58 BitmapUsed by:59 78
Symbol 59 GraphicUses:57 58Used by:63
Symbol 60 BitmapUsed by:62
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:60 61Used by:63
Symbol 63 MovieClipUses:56 59 62Used by:64
Symbol 64 MovieClip [sky_symbol]Uses:63
Symbol 65 GraphicUsed by:67
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClip [DKMoverComponent]Uses:65 66Used by:70
Symbol 68 FontUsed by:69
Symbol 69 TextUses:68Used by:70
Symbol 70 MovieClip [decreasingmover]Uses:67 69Used by:Timeline
Symbol 71 GraphicUsed by:Timeline
Symbol 72 GraphicUsed by:75
Symbol 73 GraphicUsed by:75
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:72 73 74Used by:Timeline
Symbol 76 GraphicUses:55Used by:77
Symbol 77 MovieClipUses:76Used by:Timeline
Symbol 78 GraphicUses:58Used by:79
Symbol 79 MovieClipUses:78Used by:Timeline
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:84
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:84
Symbol 84 MovieClipUses:81 83Used by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 GraphicUsed by:Timeline
Symbol 87 GraphicUsed by:Timeline
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:Timeline
Symbol 90 GraphicUsed by:Timeline
Symbol 91 GraphicUsed by:Timeline
Symbol 92 GraphicUsed by:96 98 100 101 103 104 134 135
Symbol 93 FontUsed by:94 99 102 120 126 128 133 137 169 171 190
Symbol 94 TextUses:93Used by:96 98
Symbol 95 GraphicUsed by:96 100 103
Symbol 96 MovieClipUses:95 94 92Used by:98
Symbol 97 GraphicUsed by:98 101 104 134 135
Symbol 98 ButtonUses:92 94 96 97Used by:Timeline
Symbol 99 TextUses:93Used by:100 101 134 135
Symbol 100 MovieClipUses:95 99 92Used by:101 134 135
Symbol 101 ButtonUses:92 99 100 97Used by:Timeline
Symbol 102 TextUses:93Used by:103 104
Symbol 103 MovieClipUses:95 102 92Used by:104
Symbol 104 ButtonUses:92 102 103 97Used by:Timeline
Symbol 105 GraphicUsed by:Timeline
Symbol 106 GraphicUsed by:Timeline
Symbol 107 BitmapUsed by:108
Symbol 108 GraphicUses:107Used by:Timeline
Symbol 109 GraphicUsed by:Timeline
Symbol 110 GraphicUsed by:113
Symbol 111 BitmapUsed by:112
Symbol 112 GraphicUses:111Used by:113
Symbol 113 MovieClipUses:110 112Used by:118 174
Symbol 114 GraphicUsed by:117
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:117
Symbol 117 MovieClipUses:114 116Used by:118 174
Symbol 118 MovieClipUses:113 117Used by:Timeline
Symbol 119 GraphicUsed by:Timeline
Symbol 120 TextUses:93Used by:Timeline
Symbol 121 BitmapUsed by:122
Symbol 122 GraphicUses:121Used by:Timeline
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:Timeline
Symbol 125 GraphicUsed by:Timeline
Symbol 126 TextUses:93Used by:Timeline
Symbol 127 GraphicUsed by:131
Symbol 128 TextUses:93Used by:131
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:129Used by:131
Symbol 131 MovieClipUses:127 128 130Used by:Timeline
Symbol 132 GraphicUsed by:Timeline
Symbol 133 TextUses:93Used by:Timeline
Symbol 134 ButtonUses:92 99 100 97Used by:136
Symbol 135 ButtonUses:92 99 100 97Used by:136
Symbol 136 MovieClipUses:134 135Used by:Timeline
Symbol 137 TextUses:93Used by:Timeline
Symbol 138 GraphicUsed by:Timeline
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:143
Symbol 141 BitmapUsed by:142
Symbol 142 GraphicUses:141Used by:143
Symbol 143 MovieClipUses:140 142Used by:150
Symbol 144 GraphicUsed by:150 156
Symbol 145 BitmapUsed by:146
Symbol 146 GraphicUses:145Used by:150 156
Symbol 147 BitmapUsed by:148
Symbol 148 GraphicUses:147Used by:149
Symbol 149 MovieClipUses:148Used by:150 156
Symbol 150 MovieClipUses:143 144 146 149Used by:Timeline
Symbol 151 BitmapUsed by:152
Symbol 152 GraphicUses:151Used by:155
Symbol 153 BitmapUsed by:154
Symbol 154 GraphicUses:153Used by:155
Symbol 155 MovieClipUses:152 154Used by:156
Symbol 156 MovieClipUses:155 144 146 149Used by:Timeline
Symbol 157 MovieClipUsed by:Timeline
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:160
Symbol 160 MovieClipUses:159Used by:163
Symbol 161 BitmapUsed by:162
Symbol 162 GraphicUses:161Used by:163
Symbol 163 MovieClipUses:160 162Used by:Timeline
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164Used by:174
Symbol 166 GraphicUsed by:170 172
Symbol 167 FontUsed by:168 196 197
Symbol 168 TextUses:167Used by:170 172
Symbol 169 TextUses:93Used by:170
Symbol 170 MovieClipUses:166 168 169Used by:173
Symbol 171 TextUses:93Used by:172
Symbol 172 MovieClipUses:166 168 171Used by:173
Symbol 173 MovieClipUses:170 172Used by:174
Symbol 174 MovieClipUses:113 165 173 117Used by:Timeline
Symbol 175 GraphicUsed by:182
Symbol 176 GraphicUsed by:182
Symbol 177 GraphicUsed by:179 182 186
Symbol 178 GraphicUsed by:182
Symbol 179 MovieClipUses:177Used by:182 186
Symbol 180 GraphicUsed by:182
Symbol 181 GraphicUsed by:182 186
Symbol 182 ButtonUses:175 176 177 178 179 180 181Used by:188
Symbol 183 GraphicUsed by:186
Symbol 184 GraphicUsed by:186
Symbol 185 GraphicUsed by:186
Symbol 186 ButtonUses:177 183 179 184 185 181Used by:188
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:182 186 187Used by:Timeline
Symbol 189 GraphicUsed by:191
Symbol 190 TextUses:93Used by:191
Symbol 191 MovieClipUses:189 190Used by:Timeline
Symbol 192 FontUsed by:193
Symbol 193 EditableTextUses:192Used by:Timeline
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:201
Symbol 196 TextUses:167Used by:201
Symbol 197 TextUses:167Used by:201
Symbol 198 GraphicUsed by:201
Symbol 199 GraphicUsed by:201
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:195 196 197 198 199 200Used by:Timeline

Instance Names

"c2"Frame 1Symbol 79 MovieClip
"c1"Frame 1Symbol 77 MovieClip
"rank_btn"Frame 45Symbol 104 Button
"c2"Frame 116Symbol 79 MovieClip
"c1"Frame 116Symbol 77 MovieClip
"player_mc"Frame 170Symbol 118 MovieClip
"winter_mc"Frame 277Symbol 150 MovieClip
"summer_mc"Frame 277Symbol 156 MovieClip
"bg_area"Frame 277Symbol 157 MovieClip
"sky_mc"Frame 277Symbol 163 MovieClip
"mask_area"Frame 277Symbol 157 MovieClip
"bird_area"Frame 277Symbol 157 MovieClip
"player_mc"Frame 277Symbol 174 MovieClip
"obstacle_area"Frame 277Symbol 157 MovieClip
"gameover_mc"Frame 277Symbol 188 MovieClip
"score_txt"Frame 277Symbol 193 EditableText
"startMsg_mc"Frame 277Symbol 201 MovieClip
"cloud_mc"Symbol 49 MovieClip [obstacle_symbol] Frame 1Symbol 27 MovieClip
"bird_mc"Symbol 49 MovieClip [obstacle_symbol] Frame 2Symbol 48 MovieClip [bird_symbol]
"shape_mc"Symbol 64 MovieClip [sky_symbol] Frame 1Symbol 63 MovieClip
"image_mc"Symbol 150 MovieClip Frame 1Symbol 143 MovieClip
"image_mc"Symbol 156 MovieClip Frame 1Symbol 155 MovieClip
"hit"Symbol 174 MovieClip Frame 1Symbol 165 MovieClip
"bonus_mc"Symbol 174 MovieClip Frame 1Symbol 173 MovieClip
"restart_btn"Symbol 188 MovieClip Frame 1Symbol 182 Button
"replay_btn"Symbol 188 MovieClip Frame 1Symbol 186 Button

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "wing_symbol"
ExportAssets (56)Timeline Frame 1Symbol 2 as "bg_symbol"
ExportAssets (56)Timeline Frame 1Symbol 3 as "baby_symbol"
ExportAssets (56)Timeline Frame 1Symbol 4 as "wind_symbol"
ExportAssets (56)Timeline Frame 1Symbol 5 as "hen_symbol"
ExportAssets (56)Timeline Frame 1Symbol 6 as "babyhit_symbol"
ExportAssets (56)Timeline Frame 1Symbol 10 as "mask_symbol"
ExportAssets (56)Timeline Frame 1Symbol 48 as "bird_symbol"
ExportAssets (56)Timeline Frame 1Symbol 49 as "obstacle_symbol"
ExportAssets (56)Timeline Frame 1Symbol 53 as "tail_symbol"
ExportAssets (56)Timeline Frame 1Symbol 64 as "sky_symbol"
ExportAssets (56)Timeline Frame 1Symbol 48 as "bird_symbol"
ExportAssets (56)Timeline Frame 1Symbol 67 as "DKMoverComponent"
ExportAssets (56)Timeline Frame 1Symbol 67 as "DKMoverComponent"
ExportAssets (56)Timeline Frame 1Symbol 70 as "decreasingmover"
ExportAssets (56)Timeline Frame 277Symbol 70 as "decreasingmover"

Labels

"GAMESTART"Frame 116
"HELP"Frame 144
"DAY"Symbol 64 MovieClip [sky_symbol] Frame 1
"NIGHT"Symbol 64 MovieClip [sky_symbol] Frame 25
"DAY"Symbol 143 MovieClip Frame 1
"NIGHT"Symbol 143 MovieClip Frame 21
"DAY"Symbol 150 MovieClip Frame 1
"NIGHT"Symbol 150 MovieClip Frame 20
"DAY"Symbol 155 MovieClip Frame 1
"NIGHT"Symbol 155 MovieClip Frame 21
"DAY"Symbol 156 MovieClip Frame 1
"NIGHT"Symbol 156 MovieClip Frame 20
"DAY"Symbol 163 MovieClip Frame 1
"NIGHT"Symbol 163 MovieClip Frame 25
"DAY"Symbol 173 MovieClip Frame 2
"BIRDS"Symbol 173 MovieClip Frame 15




http://swfchan.com/5/24236/info.shtml
Created: 25/5 -2019 08:35:38 Last modified: 25/5 -2019 08:35:38 Server time: 06/05 -2024 22:43:29