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();