Frame 1
var aise_sound = new Sound();
stop();
Frame 2
function btnSound(st) {
if (soundS == 1) {
this[st].start(0, 1);
}
}
function tranceF() {
getURL ("javascript:ranking_reload();");
if (((user_id == "") || (user_id == undefined)) || (user_id == null)) {
user_id = "guest";
}
var bLoad = new LoadVars();
bLoad.onLoad = function (success) {
if (success) {
ranking = bLoad.ranking;
result_window_mc.resultmc.ranking = ranking;
} else {
tranceF();
}
};
sLoad = new LoadVars();
_root.game_id = game_id;
_root.user_id = user_id;
_root.score = score;
sLoad.game_id = game_id;
sLoad.user_id = user_id;
sLoad.score = score;
sLoad.sendAndLoad("/game_files/game/put_info.asp", bLoad, "POST");
}
var clickSou = new Sound();
var overSou = new Sound();
clickSou.attachSound("clickSou");
overSou.attachSound("overSou");
System.useCodepage = true;
with (Stage) {
showMenu = false;
scaleMode = "noScale";
}
snd_check = true;
var snd_array = ["click1_snd", "click2_snd", "goal_snd", "roll_snd", "success_effect_snd", "fail_effect_snd", "fail_effect2_snd", "jump_snd", "ball_bound_snd", "roof_hit_snd", "goal_hit_snd", "ball_fly_snd", "assign_ball_snd", "window_move_snd", "time_over_snd", "level_view_snd", "success_bg_snd", "fail_bg_snd"];
var i = 0;
while (i < snd_array.length) {
var snd_str = snd_array[i];
_root[snd_str] = new Sound(_root);
eval (snd_str).attachSound(snd_str);
i++;
}
movie_name = "free_style";
game_init = function () {
_root.view_num("1", "levelVi_");
gametype = "fg";
ball_num_ref = 5;
g = 3;
jump_value = 45;
move_value = [5, 10, 15, 20, 25, 30, 36, 42, 50];
fric = 0.95;
time_ref = 260;
time = time_ref;
var minute = Math.floor(time / 60);
if (String(minute).length == 1) {
minute = "0" + minute;
}
var second = (time % 60);
if (String(second).length == 1) {
second = "0" + second;
}
common_mc.time = (minute + " : ") + second;
_root.view_num(String(minute), "time_si_");
_root.view_num(String(second), "time_bun_");
var i = 1;
while (i <= ball_num_ref) {
var mc = eval ("life_mc.b" + i);
mc.ori_x = mc._x;
mc.ori_y = mc._y;
i++;
}
};
game_start = function (repeat_chk) {
game_play = true;
clearAllInterval();
ball_num = 0;
if (repeat_chk == undefined) {
score = 0;
_root.view_num(String(score), "score_");
time = time_ref;
if (snd_check) {
if (bg_snd_stop_chk) {
snd_stop("bg_snd");
bg_snd = new Sound(bg_snd_ref);
bg_snd.attachSound("bg_snd");
bg_snd.start(0, 9999);
}
bg_snd.setVolume(60);
}
}
stat = "ready";
assign_num = 0;
delete_item(life_mc.control);
var i = 1;
while (i <= ball_num_ref) {
var mc = eval ("life_mc.b" + i);
mc._visible = true;
mc._x = mc.ori_x;
mc._y = mc.ori_y;
i++;
}
with (disp_mc) {
ball._x = (ball._y = 0);
hor_way_mc._visible = false;
ver_way_mc._visible = false;
}
cha_mc.gotoAndStop(1);
time_interval = setInterval(time_f, 1000);
};
game_out = function (input) {
if (game_play) {
game_play = false;
clearAllInterval();
delete disp_mc.onEnterFrame;
if (input == false) {
result_window(false);
} else {
result_window(true);
}
}
};
game_restart_help = function () {
delete_item(result_window_mc);
level_mc.gotoAndStop("1step");
level_mc.m.gotoAndPlay(1);
level = 1;
_root.view_num("1", "levelVi_");
score = 0;
_root.view_num(String(score), "score_");
delete_item(life_mc.control);
var i = 1;
while (i <= ball_num_ref) {
var mc = eval ("life_mc.b" + i);
mc._visible = true;
mc._x = mc.ori_x;
mc._y = mc.ori_y;
i++;
}
snd_stop("success_bg_snd");
snd_stop("fail_bg_snd");
_root.gotoAndPlay(496);
};
game_restart = function () {
delete_item(result_window_mc);
level_mc.gotoAndStop("1step");
level_mc.m.gotoAndPlay(1);
score_1.gotoAndStop(1);
level = 1;
_root.view_num("1", "levelVi_");
score = 0;
_root.view_num(String(score), "score_");
time = time_ref;
var minute = Math.floor(time / 60);
if (String(minute).length == 1) {
minute = "0" + minute;
}
var second = (time % 60);
if (String(second).length == 1) {
second = "0" + second;
}
common_mc.time = (minute + " : ") + second;
_root.view_num(String(minute), "time_si_");
_root.view_num(String(second), "time_bun_");
delete_item(life_mc.control);
var i = 1;
while (i <= ball_num_ref) {
var mc = eval ("life_mc.b" + i);
mc._visible = true;
mc._x = mc.ori_x;
mc._y = mc.ori_y;
i++;
}
snd_stop("success_bg_snd");
snd_stop("fail_bg_snd");
score = 0;
};
game_exit = function () {
getURL ("javascript:self.close ()");
};
time_f = function () {
if (game_play) {
time--;
var _local3 = Math.floor(time / 60);
if (String(_local3).length == 1) {
_local3 = "0" + _local3;
}
var _local2 = time % 60;
if (String(_local2).length == 1) {
_local2 = "0" + _local2;
}
common_mc.time = (_local3 + " : ") + _local2;
_root.view_num(String(_local3), "time_si_");
_root.view_num(String(_local2), "time_bun_");
if (time <= 0) {
time_over();
}
}
};
time_over = function () {
game_out(false);
trace("time_over");
};
get_ball = function () {
if (game_play) {
if (ball_num < ball_num_ref) {
stat = "getBall";
cha_mc.gotoAndPlay("getBall");
load_ball();
ball_control_assign();
}
}
};
load_ball = function () {
var i = 1;
while (i <= 5) {
eval ("people" + i).gotoAndStop(1);
i++;
}
ball_num++;
var i = 1;
while (i <= ball_num_ref) {
var mc = eval ("life_mc.b" + i);
if (i > ball_num) {
mc._visible = true;
mc.tx = eval ("life_mc.b" + (i - 1))._x;
mc.ty = eval ("life_mc.b" + (i - 1))._y;
mc.move_chk = true;
} else {
mc._visible = false;
}
i++;
}
var mc = life_mc.createEmptyMovieClip("control", 1);
mc.num = 0;
mc.onEnterFrame = function () {
var i = ball_num_ref;
while (i > ball_num) {
var bmc = eval ("life_mc.b" + i);
smoothMove(bmc, bmc.tx, bmc.ty, 0.3);
var dx = (bmc._x - bmc.tx);
var dy = (bmc._y - bmc.ty);
if ((Math.sqrt((dx * dx) + (dy * dy)) < 3) && (bmc.move_chk != false)) {
bmc._x = bmc.tx;
bmc._y = bmc.ty;
bmc.move_chk = false;
this.num++;
if (this.num >= (ball_num_ref - ball_num)) {
delete this.onEnterFrame;
}
}
i--;
}
};
disp_mc.ver_way_mc._visible = false;
disp_mc.hor_way_mc._visible = false;
snd_attach("roll_snd");
};
ball_control_assign = function () {
assign_num++;
if (assign_num == 1) {
disp_mc.max_val = move_value[level - 1];
disp_mc.min_val = 1;
disp_mc.ball._visible = true;
disp_mc.ball._x = 0;
disp_mc.ball._y = 0;
disp_mc.onEnterFrame = function () {
var _local2 = (((this.min_val - this.max_val) / 53) * Math.abs(this.ball._y)) + this.max_val;
if (this.direct == "down") {
this.ball._y = this.ball._y + _local2;
if (this.ball._y >= 53) {
this.direct = "up";
this.ball._y = 53;
}
} else {
this.ball._y = this.ball._y - _local2;
if (this.ball._y <= -53) {
this.direct = "down";
this.ball._y = -53;
}
}
};
disp_mc.ver_way_mc._visible = true;
} else if (assign_num == 2) {
disp_mc.ball_y = disp_mc.ball._y;
var _local2 = disp_mc.attachMovie("effect_mc", "effect_mc", 1);
_local2._x = disp_mc.ball._x;
_local2._y = disp_mc.ball._y;
disp_mc.ball._y = 0;
disp_mc.ball._x = 0;
disp_mc.move_value = move_value[level - 1];
disp_mc.onEnterFrame = function () {
var _local2 = (((this.min_val - this.max_val) / 53) * Math.abs(this.ball._x)) + this.max_val;
if (this.direct == "right") {
this.ball._x = this.ball._x + _local2;
if (this.ball._x >= 53) {
this.direct = "left";
this.ball._x = 53;
}
} else {
this.ball._x = this.ball._x - _local2;
if (this.ball._x <= -53) {
this.direct = "right";
this.ball._x = -53;
}
}
};
disp_mc.hor_way_mc._visible = true;
stat = "readyBall";
snd_attach("assign_ball_snd");
}
};
shoot = function () {
assign_num = 0;
stat = "shoot";
cha_mc.gotoAndPlay("shoot");
disp_mc.ball_x = disp_mc.ball._x;
delete disp_mc.onEnterFrame;
var _local1 = disp_mc.attachMovie("effect_mc", "effect_mc", 2);
_local1._x = disp_mc.ball._x;
_local1._y = disp_mc.ball._y;
snd_attach("jump_snd");
snd_attach("assign_ball_snd");
};
ball_shoot = function () {
ball_over_chk = undefined;
ball_lack_chk = undefined;
goal_chk = undefined;
goal_hit_chk = undefined;
ball_mc.add_x = 0;
var mc = ball_mc;
mc._xscale = (mc._yscale = 100);
mc._visible = true;
if (level != 1) {
var ball_min_val = -25;
} else {
var ball_min_val = -18;
}
if (disp_mc.ball_y < ball_min_val) {
goal_chk = false;
ball_over_chk = true;
mc.add_x = disp_mc.ball_x * 0.05;
} else if (disp_mc.ball_y > Math.abs(ball_min_val)) {
goal_chk = false;
ball_lack_chk = true;
mc.add_x = disp_mc.ball_x * 0.07;
} else if (Math.abs(disp_mc.ball_x) > 15) {
goal_chk = false;
mc.add_x = disp_mc.ball_x * 0.07;
} else {
goal_chk = true;
}
if (ball_num == 5) {
mc.gotoAndStop("last");
} else {
mc.gotoAndStop("normal");
}
mc._x = 270;
mc._y = 68;
mc.add_y = -jump_value;
mc.add_y = mc.add_y + (disp_mc.ball_y * 0.2);
mc.onEnterFrame = function () {
this.add_x = this.add_x * 0.97;
this.add_y = this.add_y + g;
this.add_y = this.add_y * fric;
if (this.add_y > 30) {
this.add_y = 30;
}
this._x = this._x + this.add_x;
this._y = this._y + this.add_y;
if (this._xscale > 40) {
this._xscale = (this._yscale = this._yscale - 2.5);
}
if (goal_chk == true) {
if ((this._y > 90) && (this.add_y > 0)) {
goal_mc.gotoAndPlay("goal");
goal_chk = "done";
this._y = 90;
this.add_y = -7;
this.swapDepths(goal_mc);
var i = 1;
while (i <= 5) {
eval ("people" + i).gotoAndPlay(2);
i++;
}
score_cul();
snd_attach("goal_snd");
}
} else if (!goal_chk) {
if (ball_over_chk) {
if (roof_mc.hitTest(ball_mc._x, ball_mc._y, true) && (this.add_y > 0)) {
ball_over_chk = undefined;
this.add_y = (-jump_value) * 1.5;
this.add_x = (disp_mc.ball_x * 0.4) * ((random(10) + 6) * 0.1);
roof_mc.gotoAndPlay("bound");
var bo_mc = _root.attachMovie("bound_effect", "bound_effect", 10);
bo_mc._x = ball_mc._x;
bo_mc._y = ball_mc._y;
snd_attach("roof_hit_snd");
}
} else if (!ball_lack_chk) {
if ((goal_mc.hit_mc.hitTest(ball_mc._x, ball_mc._y, true) && (this.add_y > 0)) && (goal_hit_chk != true)) {
goal_hit_chk = true;
this.add_y = (-jump_value) * 1.5;
this.add_x = (disp_mc.ball_x * 0.4) * ((random(10) + 6) * 0.1);
this._y = goal_mc._y;
goal_mc.gotoAndPlay("hit");
snd_attach("goal_hit_snd");
}
}
}
if ((this._y >= 220) && (this.add_y > 0)) {
this.add_y = this.add_y * -1;
this._y = 220;
if (Math.abs(this.add_y) < 10) {
stat = "ready";
this._visible = false;
delete this.onEnterFrame;
if (goal_chk == false) {
var i = 1;
while (i <= 5) {
eval ("people" + i).gotoAndPlay(2);
i++;
}
cha_mc.gotoAndPlay("fail");
snd_attach("fail_effect_snd");
}
if (ball_num >= ball_num_ref) {
next_level();
}
}
if (goal_chk == "done") {
this.swapDepths(goal_mc);
goal_chk = "donw2";
cha_mc.gotoAndPlay("success");
}
snd_attach("ball_bound_snd");
} else if ((this._x < -10) || (this._x > 570)) {
stat = "ready";
this._visible = false;
delete this.onEnterFrame;
if (ball_num >= ball_num_ref) {
next_level();
}
if (goal_chk == "done") {
this.swapDepths(goal_mc);
}
var i = 1;
while (i <= 5) {
eval ("people" + i).gotoAndPlay(2);
i++;
}
cha_mc.gotoAndPlay("fail");
snd_attach("fail_effect_snd");
}
};
snd_attach("ball_fly_snd");
};
next_level = function () {
if (level == 1) {
_root[("level" + level) + "_score"] = score;
} else {
_root[("level" + level) + "_score"] = score - prev_score;
}
prev_score = score;
if (level < 9) {
level++;
_root.view_num(String(level), "levelVi_");
level_mc.gotoAndStop(level + "step");
} else if ((time > 0) && (score > 0)) {
game_out(true);
stopAllSounds();
} else {
game_out(false);
}
};
result_window = function (input) {
tranceF();
var _local3 = _root.attachMovie("result_window_mc", "result_window_mc", 50);
if (input == "error") {
_local3.gotoAndStop("success");
snd_attach("fail_bg_snd", "loop");
} else if (input == "limited") {
_local3.gotoAndStop("success");
snd_attach("fail_bg_snd", "loop");
} else if (input) {
_local3.gotoAndStop("success");
if ((userid == null) || (userid == "")) {
var _local4 = _root.attachMovie("chk_login", "chk_login_mc", 51);
_local4._x = 280;
_local4._y = 200;
} else {
var _local6 = (((_root.userid + "&") + "4?@5kw") + "&") + _root.gamescore;
gamecode = calcMD5(_local6);
}
snd_attach("success_bg_snd", "loop");
} else if (time <= 0) {
_local3.gotoAndStop("success");
} else if (score == 0) {
_local3.gotoAndStop("success");
snd_attach("fail_bg_snd", "loop");
} else {
_local3.gotoAndStop("success");
snd_attach("fail_bg_snd", "loop");
}
_local3._x = 265;
_local3._y = 500;
_local3.ty = 230;
_local3.onEnterFrame = function () {
smoothMove(this, this._x, this.ty, 0.4);
if (Math.abs(this.ty - this._y) < 5) {
this._y = this.ty;
delete this.onEnterFrame;
}
};
stopAllSounds();
snd_attach("window_move_snd");
bg_snd_stop_chk = true;
};
_global.snd_attach = function (name, loop) {
if (snd_check != false) {
if (loop == undefined) {
eval (name).start();
} else if (typeof(loop) == "number") {
eval (name).start(0, loop);
} else {
eval (name).start(0, 100000);
}
}
};
_global.snd_stop = function (name) {
eval (name).stop(name);
};
_global.alert = function (input) {
getURL (("javascript:alert (\"" + input) + "\");");
};
delete_item = function (mc) {
if (typeof(mc) == "movieclip") {
for (var _local2 in mc) {
delete_item(mc[_local2]);
}
delete mc.onEnterFrame;
mc.removeMovieClip();
} else {
}
};
clearAllInterval = function () {
var _local2 = setInterval(function () {
}, 100);
var _local1 = 0;
while (_local1 <= _local2) {
clearInterval(_local1);
_local1++;
}
};
score_cul = function () {
if (ball_num != 5) {
var _local2 = 1;
} else {
var _local2 = 2;
}
score = score + _local2;
_root.view_num(String(score), "score_");
fly_score.gotoAndPlay("view");
fly_score.add_score.score = "+" + _local2;
gamescore = score;
};
smoothMove = function (mc, tx, ty, sp) {
var _local2 = tx - mc._x;
var _local3 = ty - mc._y;
mc._x = mc._x + (_local2 * sp);
mc._y = mc._y + (_local3 * sp);
};
myListen = new Object();
_root.onMouseUp = function () {
if ((!key_press) && (game_play)) {
if (stat == "ready") {
get_ball();
} else if (stat == "getBall") {
ball_control_assign();
} else if (stat == "readyBall") {
shoot();
}
key_press = true;
}
};
_root.onMouseDown = function () {
key_press = undefined;
};
myListen.onKeyDown = function () {
if ((!key_press) && (game_play)) {
if (Key.isDown(32)) {
if (stat == "ready") {
get_ball();
} else if (stat == "getBall") {
ball_control_assign();
} else if (stat == "readyBall") {
shoot();
}
}
key_press = true;
}
};
myListen.onKeyUp = function () {
key_press = undefined;
};
Key.addListener(myListen);
_root.view_num = function (num, mcName) {
var _local3 = num.toString().split("");
var _local4 = _local3.length - 1;
var _local2 = 0;
while (_local2 < Number(_local3.length)) {
frame = Number(_local3[_local4]) + 1;
_root[mcName + _local2].gotoAndStop(frame);
_local4--;
_local2++;
}
};
userid = "dfdf";
cnt = 1;
gametype = "fg";
use_num = 1;
goto_main = function () {
if (!Number(_root.cnt)) {
_root.result_window("limited");
help_mc._visible = false;
} else {
gotoAndStop (7);
}
};
fscommand ("STT_start");
Frame 3
stop();
this.createEmptyMovieClip("bg_snd_ref", 100);
bg_snd = new Sound(bg_snd_ref);
bg_snd.attachSound("bg_snd");
bg_snd.start(0, 9999);
Instance of Symbol 176 MovieClip in Frame 3
on (release) {
getURL ("http:///www.allgamehere.com/", "_self");
}
Instance of Symbol 228 MovieClip "snd_control_mc" in Frame 3
onClipEvent (load) {
if (_root.snd_check != false) {
this.gotoAndStop("on");
} else {
this.gotoAndStop("off");
}
this.onPress = function () {
_root.snd_check = !_root.snd_check;
if (_root.snd_check) {
this.gotoAndStop("on");
snd_attach("bg_snd", "loop");
} else {
this.gotoAndStop("off");
snd_stop("bg_snd");
stopAllSounds();
}
snd_attach("click2_sound");
};
}
Instance of Symbol 231 MovieClip in Frame 3
onClipEvent (load) {
if (_root.vol_aise == 1) {
this.gotoAndStop(1);
} else if (_root.vol_aise == 2) {
this.gotoAndStop(2);
}
}
Instance of Symbol 176 MovieClip in Frame 4
on (release) {
getURL ("http:///www.allgamehere.com/", "_blank");
}
Frame 5
stop();
help_mc.gotoAndStop(help_mc._totalframes);
Frame 7
game_init();
stop();
Instance of Symbol 67 MovieClip [ball] "ball_mc" in Frame 7
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 228 MovieClip "snd_control_mc" in Frame 7
onClipEvent (load) {
if (_root.snd_check != false) {
this.gotoAndStop("on");
} else {
this.gotoAndStop("off");
}
this.onPress = function () {
_root.snd_check = !_root.snd_check;
if (_root.snd_check) {
this.gotoAndStop("on");
snd_attach("bg_snd", "loop");
} else {
this.gotoAndStop("off");
snd_stop("bg_snd");
stopAllSounds();
}
snd_attach("click2_sound");
};
}
Instance of Symbol 231 MovieClip in Frame 7
onClipEvent (load) {
if (_root.vol_aise == 1) {
this.gotoAndStop(1);
} else if (_root.vol_aise == 2) {
this.gotoAndStop(2);
}
}
Instance of Symbol 307 MovieClip "levelVi_0" in Frame 7
onClipEvent (load) {
function levelF() {
this.gotoAndStop(_global.gameStage);
}
}
Instance of Symbol 307 MovieClip "score_2" in Frame 7
onClipEvent (load) {
function levelF() {
this.gotoAndStop(_global.gameStage);
}
}
Instance of Symbol 307 MovieClip "score_1" in Frame 7
onClipEvent (load) {
function levelF() {
this.gotoAndStop(_global.gameStage);
}
}
Instance of Symbol 307 MovieClip "score_0" in Frame 7
onClipEvent (load) {
function levelF() {
this.gotoAndStop(_global.gameStage);
}
}
Instance of Symbol 307 MovieClip "time_si_1" in Frame 7
onClipEvent (load) {
function levelF() {
this.gotoAndStop(_global.gameStage);
}
}
Instance of Symbol 307 MovieClip "time_bun_1" in Frame 7
onClipEvent (load) {
function levelF() {
this.gotoAndStop(_global.gameStage);
}
}
Instance of Symbol 307 MovieClip "time_bun_0" in Frame 7
onClipEvent (load) {
function levelF() {
this.gotoAndStop(_global.gameStage);
}
}
Instance of Symbol 307 MovieClip "time_si_0" in Frame 7
onClipEvent (load) {
function levelF() {
this.gotoAndStop(_global.gameStage);
}
}
Instance of Symbol 325 MovieClip in Frame 7
on (release) {
getURL ("http://www.allgamehere.com/", "_blank");
}
Symbol 27 Button
on (release) {
getURL ("javascript:call_login();");
}
Symbol 29 Button
on (release) {
removeMovieClip(this);
}
Symbol 34 MovieClip Frame 1
stop();
Symbol 37 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 1
stop();
Symbol 48 MovieClip Frame 1
stop();
Symbol 49 MovieClip Frame 1
stop();
cuScore = _parent._parent.score;
user_id = _parent._parent.user_id;
ranking = _parent._parent.ranking;
if ((((user_id == undefined) || (user_id == "Guest")) || (user_id == "guest")) || (user_id == "")) {
user_id = "guest";
_parent.user_id = user_id;
this.gotoAndStop(2);
}
Instance of Symbol 34 MovieClip "btRetry" in Symbol 49 MovieClip Frame 1
on (rollOver) {
_parent._parent._parent.btnSound("overSou");
this.nextFrame();
}
on (rollOut) {
this.prevFrame();
}
on (press) {
_parent._parent._parent.btnSound("clickSou");
_parent._parent._parent.gotoAndPlay("init");
_root.result_window_mc.removeMovieClip();
}
Instance of Symbol 37 MovieClip "btRetry" in Symbol 49 MovieClip Frame 1
on (rollOver) {
_parent._parent._parent.btnSound("overSou");
this.nextFrame();
}
on (rollOut) {
this.prevFrame();
}
on (press) {
_root.cuScore = 0;
_parent._parent._parent.btnSound("clickSou");
_root.game_restart();
snd_attach("click2_snd");
_root.result_window_mc.removeMovieClip();
}
Instance of Symbol 45 MovieClip in Symbol 49 MovieClip Frame 2
on (rollOver) {
_parent._parent._parent.btnSound("overSou");
this.nextFrame();
}
on (rollOut) {
this.prevFrame();
}
on (release) {
_parent._parent._parent.btnSound("clickSou");
getURL ("http://www.wowgame.jp/user/UserLogin.asp", "_self");
}
Instance of Symbol 48 MovieClip in Symbol 49 MovieClip Frame 2
on (rollOver) {
_parent._parent._parent.btnSound("overSou");
this.nextFrame();
}
on (rollOut) {
this.prevFrame();
}
on (release) {
_parent._parent._parent.btnSound("clickSou");
getURL ("http://www.wowgame.jp/user/UserRegi.asp", "_self");
}
Symbol 58 MovieClip [result_window_mc] Frame 9
stop();
Symbol 64 MovieClip [bound_effect] Frame 7
stop();
_root.delete_item(this);
Symbol 67 MovieClip [ball] Frame 8
stop();
Symbol 73 MovieClip Frame 10
stop();
_root.delete_item(_parent);
Symbol 149 MovieClip Frame 100
_parent.play();
Symbol 151 MovieClip Frame 51
this.stop();
Instance of Symbol 149 MovieClip "bar" in Symbol 151 MovieClip Frame 51
onClipEvent (enterFrame) {
this.gotoAndStop(Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100));
}
Symbol 151 MovieClip Frame 66
_parent.play();
Symbol 168 Button
on (release) {
goto_main();
snd_attach("click2_snd");
}
on (rollOver) {
snd_attach("click1_snd");
}
Symbol 172 Button
on (release) {
snd_attach("click2_snd");
this.help_mc.gotoAndPlay(1);
}
on (rollOver) {
snd_attach("click1_snd");
}
Symbol 179 MovieClip Frame 85
stop();
Symbol 190 MovieClip Frame 75
stop();
Symbol 196 MovieClip Frame 5
stop();
Instance of Symbol 196 MovieClip in Symbol 207 MovieClip Frame 12
onClipEvent (load) {
if (_root.ball_num != 5) {
this.gotoAndStop("normal");
} else {
this.gotoAndStop("last");
}
}
Symbol 207 MovieClip Frame 81
stop();
Symbol 212 Button
on (rollOver) {
_parent.btnSound("overSou");
}
on (release) {
_parent._parent.help_mc.gotoAndPlay(1);
}
Symbol 218 MovieClip Frame 1
stop();
trace(_root.url1);
load_var.onLoad = function (flag) {
if (flag) {
_root.userid = this.userid;
_root.cnt = this.cnt;
_root.gametype = "fg";
_root.use_num = this.use_num;
start_btn._visible = true;
if (this.use_num > 3) {
_root.result_window("limited");
_root.help_mc._visible = false;
_root.stop();
this.start_btn._visible = false;
}
} else {
_root.result_window("error");
_root.help_mc._visible = false;
_root.stop();
}
};
Symbol 219 MovieClip Frame 1
this.stop();
Symbol 219 MovieClip Frame 8
stop();
Symbol 222 MovieClip Frame 1
stop();
Symbol 227 MovieClip Frame 1
stop();
Symbol 228 MovieClip Frame 5
stop();
Instance of Symbol 227 MovieClip in Symbol 228 MovieClip Frame 6
on (rollOver) {
_root.sound_press = true;
this.nextFrame();
}
on (rollOut) {
_root.sound_press = false;
this.prevFrame();
}
on (press) {
_parent._parent.soundFrame = 1;
_root.vol = 1;
_parent.prevFrame();
}
Symbol 229 MovieClip Frame 1
stop();
Symbol 230 MovieClip Frame 1
stop();
Symbol 231 MovieClip Frame 1
this.stop();
Instance of Symbol 229 MovieClip in Symbol 231 MovieClip Frame 1
on (rollOver) {
this.nextFrame();
}
on (rollOut) {
this.prevFrame();
}
on (press) {
_root.vol_aise = 2;
_root.aise_sound.setVolume(0);
_parent.nextFrame();
}
Instance of Symbol 230 MovieClip in Symbol 231 MovieClip Frame 2
on (rollOver) {
this.nextFrame();
}
on (rollOut) {
this.prevFrame();
}
on (press) {
_root.vol_aise = 1;
_root.aise_sound.setVolume(100);
_parent.prevFrame();
}
Instance of Symbol 77 MovieClip [effect_mc] "effect_mc" in Symbol 241 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 242 MovieClip Frame 3
stop();
Symbol 242 MovieClip Frame 10
snd_attach("success_effect_snd");
Symbol 253 MovieClip Frame 4
stop();
Instance of Symbol 196 MovieClip in Symbol 253 MovieClip Frame 5
onClipEvent (load) {
if (_root.ball_num != 5) {
this.gotoAndStop("normal");
} else {
this.gotoAndStop("last");
}
}
Symbol 253 MovieClip Frame 16
stop();
Instance of Symbol 196 MovieClip in Symbol 253 MovieClip Frame 19
onClipEvent (load) {
if (_root.ball_num != 5) {
this.gotoAndStop("normal");
} else {
this.gotoAndStop("last");
}
}
Symbol 253 MovieClip Frame 30
_parent.ball_shoot();
Symbol 253 MovieClip Frame 68
gotoAndPlay (1);
Symbol 253 MovieClip Frame 88
gotoAndPlay (1);
Symbol 253 MovieClip Frame 116
gotoAndPlay (1);
Symbol 258 MovieClip Frame 1
this.stop();
if (this.score == 1) {
gotoAndStop (2);
} else {
gotoAndStop (3);
}
Symbol 259 MovieClip Frame 3
stop();
Symbol 275 Button
on (rollOver) {
gotoAndStop (2);
}
on (rollOut, dragOut) {
gotoAndStop (1);
}
Symbol 282 Button
on (release) {
_parent._parent.gotoAndStop("intro");
}
Symbol 285 MovieClip Frame 1
stop();
Symbol 307 MovieClip Frame 1
stop();
Symbol 313 MovieClip Frame 3
stop();
Symbol 315 MovieClip Frame 1
snd_attach("level_view_snd");
Symbol 315 MovieClip Frame 40
stop();
_root.level = 1;
_root.game_start();
Symbol 316 MovieClip Frame 1
snd_attach("level_view_snd");
Symbol 316 MovieClip Frame 40
stop();
_root.level = 2;
_root.game_start("repeat");
Symbol 317 MovieClip Frame 1
snd_attach("level_view_snd");
Symbol 317 MovieClip Frame 40
stop();
_root.level = 3;
_root.game_start("repeat");
Symbol 318 MovieClip Frame 1
snd_attach("level_view_snd");
Symbol 318 MovieClip Frame 40
stop();
_root.level = 4;
_root.game_start("repeat");
Symbol 319 MovieClip Frame 1
snd_attach("level_view_snd");
Symbol 319 MovieClip Frame 40
stop();
_root.level = 5;
_root.game_start("repeat");
Symbol 320 MovieClip Frame 1
snd_attach("level_view_snd");
Symbol 320 MovieClip Frame 40
stop();
_root.level = 6;
_root.game_start("repeat");
Symbol 321 MovieClip Frame 1
snd_attach("level_view_snd");
Symbol 321 MovieClip Frame 40
stop();
_root.level = 7;
_root.game_start("repeat");
Symbol 322 MovieClip Frame 1
snd_attach("level_view_snd");
Symbol 322 MovieClip Frame 40
stop();
_root.level = 8;
_root.game_start("repeat");
Symbol 323 MovieClip Frame 1
snd_attach("level_view_snd");
Symbol 323 MovieClip Frame 40
stop();
_root.level = 9;
_root.game_start("repeat");
Symbol 324 MovieClip Frame 7
stop();