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

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

Arcanoid.swf

This is the info page for
Flash #26429

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


Text
Yes

No

Paused

Sound Off

Sound On

Game Loading ...

Score:

0

Hit:

Series:

0

0

©

Absolutist.com

Absolutist.com

Absolutist.com

Absolutist.com

New Game

Sound On

Game   Over

Your Score:

0

Your Best Series:

0

Your Best Hit:

0

Send your results

Name:

ActionScript [AS1/AS2]

Frame 1
tellTarget ("_level0") { lbLoadingGame = ""; };
Frame 3
if (_framesloaded >= _totalframes) { gotoAndPlay (4); } else { gotoAndPlay (2); }
Frame 4
function GenerateBlock() { number = random(100); returnbrick = 0; if (parity_flag) { if (number < 20) { returnbrick = 0; } else if (number < 40) { returnbrick = 1; } else if (number < 50) { returnbrick = 2; } else if (number < 60) { returnbrick = 3; } else if (number < 70) { returnbrick = 4; } else if (number < 80) { returnbrick = 5; } else if (number < 90) { returnbrick = 6; } else if (number < 100) { returnbrick = 7; } } else if (number < 65) { returnbrick = 0; } else if (number < 70) { returnbrick = 1; } else if (number < 75) { returnbrick = 2; } else if (number < 80) { returnbrick = 3; } else if (number < 85) { returnbrick = 4; } else if (number < 90) { returnbrick = 5; } else if (number < 95) { returnbrick = 6; } else if (number < 100) { returnbrick = 7; } return(returnbrick); } function Crypto(st) { var sum1 = 0; var sum2 = 0; var i = 0; while (i < st.length) { sum1 = sum1 + st.charCodeAt(i); sum2 = sum2 + (st.charCodeAt(i) ^ 175); i++; } sum1 = sum1 % 256; sum2 = sum2 % 256; st = (String.fromCharCode(sum1) + String.fromCharCode(sum2)) + st; var cryptSt = ""; var b0 = 193; var i = 0; while (i < st.length) { var b = st.charCodeAt(i); var CryptB = (b ^ b0); CryptB = CryptB.toString(); var len = CryptB.length; var j = 0; while (j < (3 - len)) { CryptB = "0" + CryptB; j++; } cryptSt = cryptSt + CryptB; b0 = b; i++; } return(cryptSt); } x = 275; y = 350; dx = 2; dy = 1; abs_vx = 3; abs_vy = 2; platform_vx = 10; platform_vy = 10; platform_v = 0; platform_vh = 0; maxy = 355; miny = 310; vx = abs_vx; if (random(2) == 1) { vx = -vx; } vy = -abs_vy; top = 22; bottom = 390; left = 20; right = 480; scores = 0; minus = 0; series_ = 0; max_series = 0; hits = 0; max_hit = 0; Ball._x = Platform._x; Ball._y = Platform._y - Ball._Height; begin_flag = true; first_flag = true; replace_flag = false; wasmove_flag = false; wasfall_flag = false; was_beat_flag = false; stick_flag = false; push_flag = true; pause_flag = false; sound_flag = true; wasvertical_flag = false; last_string = 5; oldxmouse = 250; oldymouse = _ymouse; word = "block"; Ball._visible = true; plat_width = 90; parity_flag = true; Date1 = new Date(); Date2 = new Date(); Aseconds = 0.1; BeatDate = new Date(); BeatDate2 = new Date(); BeatSeconds = 100; Sound1 = new Sound(); Sound1.attachSound("Sound1"); Sound2 = new Sound(); Sound2.attachSound("Sound2"); Sound3 = new Sound(); Sound3.attachSound("Sound3"); Sound4 = new Sound(); Sound4.attachSound("Sound4"); Sound5 = new Sound(); Sound5.attachSound("Sound6"); Sound6 = new Sound(); Sound6.attachSound("Sound6"); out1._visible = false; out2._visible = false; out3._visible = false; out4._visible = false; field = new Array(192); j = 0; while (j < last_string) { i = 0; while (i < 6) { field[(j * 12) + i] = GenerateBlock(); field[((j * 12) + 11) - i] = field[(j * 12) + i]; if (0 < field[(j * 12) + i]) { brickname = word + field[(j * 12) + i]; attachMovie(brickname, (("x" + i) + "y") + j, (j * 12) + i); attachMovie(brickname, (("x" + (11 - i)) + "y") + j, ((j * 12) + 11) - i); tellTarget ((("x" + i) + "y") + j) { _x = ((22 + (_parent.i * 38)) + (_width / 2)); _y = ((20 + (_parent.j * 20)) + (_height / 2)); }; tellTarget ((("x" + (11 - i)) + "y") + j) { _x = ((22 + ((11 - _parent.i) * 38)) + (_width / 2)); _y = ((20 + (_parent.j * 20)) + (_height / 2)); }; } i++; } parity_flag = !parity_flag; j++; } i = last_string * 12; while (i < 192) { field[i] = 0; i++; }
Instance of Symbol 87 MovieClip "Platform" in Frame 4
onClipEvent (keyUp) { plat_v = 0; plat_vy = 0; _parent.wasmove_flag = false; _parent.platform_v = 0; _parent.Date1 = new Date(); } onClipEvent (keyDown) { if (!_parent.pause_flag) { if (Key.getCode() == Key.RIGHT) { if (_x < (_parent.right - (_width / 2))) { _parent.wasmove_flag = true; plat_v = _parent.platform_vx; _parent.platform_v = _parent.dx; } } else if (Key.getCode() == Key.LEFT) { if ((_parent.left + (_width / 2)) < _x) { _parent.wasmove_flag = true; plat_v = -_parent.platform_vx; _parent.platform_v = -_parent.dx; } } else if (Key.getCode() == Key.SPACE) { if (_parent.begin_flag) { _parent.platform_v = 0; _parent.begin_flag = false; _parent.push_flag = true; } else { _parent.x = _x; _parent.y = _y; _parent.oldxmouse = _parent._xmouse; _parent.oldymouse = _parent._ymouse; plat_v = 0; plat_vy = 0; pause_flag = true; _parent.gotoAndPlay(8); } } else if (Key.getCode() == Key.UP) { if (_parent.miny < _y) { _parent.wasmove_flag = true; plat_vy = -_parent.platform_vy; _parent.platform_vh = -_parent.dy; } } else if (Key.getCode() == Key.DOWN) { if (_y < _parent.maxy) { _parent.wasmove_flag = true; plat_vy = _parent.platform_vy; _parent.platform_vh = _parent.dy; } } } } onClipEvent (mouseDown) { if (!((((((385 < _parent._xmouse) && (_parent._xmouse < 480)) && (363 < _parent._ymouse)) && (_parent._ymouse < 379)) || ((((317 < _parent._xmouse) && (_parent._xmouse < 387)) && (0 < _parent._ymouse)) && (_parent._ymouse < 18))) || ((((402 < _parent._xmouse) && (_parent._xmouse < 482)) && (0 < _parent._ymouse)) && (_parent._ymouse < 18)))) { if (_parent.begin_flag) { _parent.platform_v = 0; _parent.begin_flag = false; _parent.push_flag = true; } } } onClipEvent (enterFrame) { _x = (_x + plat_v); if (_x < (_parent.left + (_width / 2))) { _x = (_parent.left + (_width / 2)); _parent.platform_v = 0; } if ((_parent.right - (_width / 2)) < _x) { _x = (_parent.right - (_width / 2)); _parent.platform_v = 0; } _y = (_y + plat_vy); if (plat_vy != 0) { _parent.Date1 = new Date(); } if (_y < _parent.miny) { _y = _parent.miny; _parent.Date1 = new Date(); } if (_parent.maxy < _y) { _y = _parent.maxy; _parent.Date1 = new Date(); } _parent.x = _x; _parent.y = _y; if (_parent._xmouse != _parent.oldxmouse) { if (_parent._xmouse < (_parent.left + (_width / 2))) { _parent.x = _parent.left + (_width / 2); } else if (535 < _parent._xmouse) { _parent.x = 535; } else { _parent.x = _parent._xmouse; } if (_parent.oldxmouse < _parent._xmouse) { _parent.platform_v = _parent.dx; } else { _parent.platform_v = -_parent.dx; } _parent.oldxmouse = _parent._xmouse; } else if (!_parent.wasmove_flag) { _parent.platform_v = 0; } if (_parent._ymouse != _parent.oldymouse) { tempmy = _parent._ymouse; oldplaty = _parent.y; _parent.y = _parent.y + (tempmy - _parent.oldymouse); if (_parent.oldymouse < tempmy) { _parent.platform_vh = _parent.dy; if (((((_x - (_width / 2)) < _parent.Ball._x) && (_parent.Ball._x < (_x + (_width / 2)))) && (_parent.Ball._y < _parent.y)) && (oldplaty < _parent.Ball._y)) { _parent.wasvertical_flag = true; } } else { _parent.platform_vh = -_parent.dy; if (((((0 < _parent.vy) && ((_x - (_width / 2)) < _parent.Ball._x)) && (_parent.Ball._x < (_x + (_width / 2)))) && (_parent.y < _parent.Ball._y)) && (_parent.Ball._y < oldplaty)) { _parent.wasvertical_flag = true; } } _parent.oldymouse = tempmy; } else if (!_parent.wasmove_flag) { _parent.Date1 = new Date(); plat_vy = 0; } _x = _parent.x; _y = _parent.y; if (_x < (_parent.left + (_width / 2))) { _x = (_parent.left + (_width / 2)); _parent.platform_v = 0; } if ((_parent.right - (_width / 2)) < _x) { _x = (_parent.right - (_width / 2)); _parent.platform_v = 0; } if (_y < _parent.miny) { _y = _parent.miny; _parent.Date1 = new Date(); } if (_parent.maxy < _y) { _y = _parent.maxy; _parent.Date1 = new Date(); } if (_parent.begin_flag) { _parent.Ball._x = _x; } }
Frame 5
if (replace_flag) { Platform._x = x; Platform._y = y; Platform._width = plat_width; replace_flag = false; }
Frame 6
function AddString() { i = 0; while (i < 12) { j = 14; while (j >= 0) { field[((j + 1) * 12) + i] = field[(j * 12) + i]; field[(j * 12) + i] = 0; if (field[((j + 1) * 12) + i] != 0) { removeMovieClip((("x" + i) + "y") + j); attachMovie(word + field[((j + 1) * 12) + i], (("x" + i) + "y") + (j + 1), ((j + 1) * 12) + i); tellTarget ((("x" + i) + "y") + (j + 1)) { _x = ((22 + (_parent.i * 38)) + (_width / 2)); _y = ((20 + ((_parent.j + 1) * 20)) + (_height / 2)); }; } j--; } i++; } j = 0; i = 0; while (i < 6) { field[(j * 12) + i] = GenerateBlock(); field[((j * 12) + 11) - i] = field[(j * 12) + i]; if (0 < field[(j * 12) + i]) { brickname = word + field[(j * 12) + i]; attachMovie(brickname, (("x" + i) + "y") + j, (j * 12) + i); attachMovie(brickname, (("x" + (11 - i)) + "y") + j, ((j * 12) + 11) - i); tellTarget ((("x" + i) + "y") + j) { _x = ((22 + (_parent.i * 38)) + (_width / 2)); _y = ((20 + (_parent.j * 20)) + (_height / 2)); }; tellTarget ((("x" + (11 - i)) + "y") + j) { _x = ((22 + ((11 - _parent.i) * 38)) + (_width / 2)); _y = ((20 + (_parent.j * 20)) + (_height / 2)); }; } i++; } parity_flag = !parity_flag; last_string++; if (last_string >= 13) { gotoAndPlay (10); } } br = 0; Platform._width = plat_width; i = 0; while (i < 12) { if (field[(last_string * 12) + i] != 0) { br++; } i++; } if (br == 0) { last_string--; } Date2 = new Date(); if (Aseconds < Math.abs(Date2 - Date1)) { platform_vh = 0; } if (begin_flag) { Ball._x = Platform._x; Ball._y = Platform._y - Ball._Height; } else { Ball._x = Ball._x + vx; Ball._y = Ball._y + vy; if (Ball._x < left) { was_beat_flag = false; if (sound_flag) { Sound2.start(); } push_flag = false; if (abs_vx < Math.abs(vx)) { vx = vx + 1; } if (vy < ((-abs_vy) - 1)) { vy = vy + 1; } else if ((abs_vy + 1) < vy) { vy = vy - 1; } vx = Math.abs(vx); Ball._x = left; } else if (right < Ball._x) { was_beat_flag = false; if (sound_flag) { Sound2.start(); } push_flag = false; if (abs_vx < vx) { vx = vx - 1; } if (vy < ((-abs_vy) - 1)) { vy = vy + 1; } else if ((abs_vy + 1) < vy) { vy = vy - 1; } vx = -Math.abs(vx); Ball._x = right; } if (Ball._y < (top + (Ball._width / 2))) { was_beat_flag = false; if (sound_flag) { Sound2.start(); } push_flag = false; vy = Math.abs(vy); if ((abs_vy + 1) < vy) { vy = vy - 1; } Ball._y = top + (Ball._width / 2); } else if (bottom < Ball._y) { if (max_series < series_) { max_series = series_; } series_ = 0; if (max_hit < hits) { max_hit = hits; } hits = 0; vx = abs_vx; vy = -abs_vy; begin_flag = true; Ball._x = Platform._x; Ball._y = Platform._y - Ball._Height; vx = abs_vx; if (random(2) == 1) { vx = -vx; } AddString(); wasfall_flag = true; if (sound_flag) { Sound4.start(); } } if (wasvertical_flag || (((((Platform._x - (Platform._width / 2)) < Ball._x) && (Ball._x < (Platform._x + (Platform._width / 2)))) && ((Platform._y - 8) < Ball._y)) && (Ball._y < ((Platform._y + (Platform._height / 2)) + 10)))) { BeatDate2 = new Date(); Ball._y = ((Platform._y - (Platform._height / 2)) - Ball._Height) - 5; if ((BeatDate2 - BeatDate) >= BeatSeconds) { tmptmp = Platform._y; BeatDate = BeatDate2; wasvertical_flag = false; if (stick_flag && (!push_flag)) { begin_flag = true; } if (sound_flag) { Sound2.start(); } Date2 = new Date(); if (platform_vh < 0) { vy = (-Math.abs(vy)) - Math.abs(platform_vh); if (vy >= 0) { vy = -abs_vy; } } else { vy = (-Math.abs(vy)) + (2 * Math.abs(platform_vh)); if (vy >= -1) { vy = -abs_vy; } } if (Aseconds < Math.abs(Date2 - Date1)) { platform_vh = 0; } else if (max_hit < hits) { max_hit = hits; } vx = vx + platform_v; if (vy < -8) { vy = -8; } if (vx < -6) { vx = -6; } if (6 < vx) { vx = 6; } if (vx == 0) { vx = random(2 * abs_vx) - 3; } platform_v = 0; platform_vh = 0; if (((hits == 0) && (!push_flag)) && (!wasfall_flag)) { AddString(); if (sound_flag && (!wasvertical_flag)) { Sound4.start(); } } wasfall_flag = false; push_flag = true; hits = 0; Ball._y = ((Platform._y - (Platform._height / 2)) - Ball._Height) - 5; } } } bally = int((Ball._y - 28) / 20); ballx = int((Ball._x - 22) / 38); if (11 < ballx) { ballx = 11; } if (bally < 0) { bally = 0; } if ((last_string >= bally) && (field[(bally * 12) + ballx] != 0)) { was_beat_flag = false; push_flag = false; field[(bally * 12) + ballx]--; if (field[(bally * 12) + ballx] == 0) { if (sound_flag) { Sound3.start(); } tellTarget ((("x" + ballx) + "y") + bally) { gotoAndPlay (2); }; scores = scores + (10 * ((last_string - bally) + 5)); series_ = series_ + (10 * ((last_string - bally) + 5)); hits = hits + (10 * ((last_string - bally) + 5)); minus = minus + (10 * ((last_string - bally) + 5)); } else { if (sound_flag) { Sound1.start(); } clipname = (("x" + ballx) + "y") + bally; removeMovieClip(clipname); attachMovie(word + field[(bally * 12) + ballx], clipname, (bally * 12) + ballx); tellTarget (clipname) { _x = ((22 + (_parent.ballx * 38)) + (_width / 2)); _y = ((20 + (_parent.bally * 20)) + (_height / 2)); }; scores = scores + 10; series_ = series_ + 10; hits = hits + 10; minus = minus + 10; } vy = -vy; } else { tempx = (ballx * 38) + 22; if (((((last_string >= bally) && (0 < ballx)) && (vx < 0)) && (field[((bally * 12) + ballx) - 1] != 0)) && (Math.abs(tempx - Ball._x) < 10)) { was_beat_flag = false; push_flag = false; field[((bally * 12) + ballx) - 1]--; if (field[((bally * 12) + ballx) - 1] == 0) { if (sound_flag) { Sound3.start(); } tellTarget ((("x" + (ballx - 1)) + "y") + bally) { gotoAndPlay (2); }; scores = scores + (10 * ((last_string - bally) + 5)); series_ = series_ + (10 * ((last_string - bally) + 5)); hits = hits + (10 * ((last_string - bally) + 5)); minus = minus + (10 * ((last_string - bally) + 5)); } else { if (sound_flag) { Sound1.start(); } clipname = (("x" + (ballx - 1)) + "y") + bally; removeMovieClip(clipname); attachMovie(word + field[((bally * 12) + ballx) - 1], clipname, ((bally * 12) + ballx) - 1); tellTarget (clipname) { _x = ((22 + ((_parent.ballx - 1) * 38)) + (_width / 2)); _y = ((20 + (_parent.bally * 20)) + (_height / 2)); }; scores = scores + 10; series_ = series_ + 10; hits = hits + 10; minus = minus + 10; } vx = -vx; } tempx = ((ballx + 1) * 38) + 22; if (((((last_string >= bally) && (ballx < 11)) && (0 < vx)) && (field[((bally * 12) + ballx) + 1] != 0)) && (Math.abs(tempx - Ball._x) < 10)) { was_beat_flag = false; push_flag = false; field[((bally * 12) + ballx) + 1]--; if (field[((bally * 12) + ballx) + 1] == 0) { if (sound_flag) { Sound3.start(); } tellTarget ((("x" + (ballx + 1)) + "y") + bally) { gotoAndPlay (2); }; scores = scores + (10 * ((last_string - bally) + 5)); series_ = series_ + (10 * ((last_string - bally) + 5)); hits = hits + (10 * ((last_string - bally) + 5)); minus = minus + (10 * ((last_string - bally) + 5)); } else { if (sound_flag) { Sound1.start(); } clipname = (("x" + (ballx + 1)) + "y") + bally; removeMovieClip(clipname); attachMovie(word + field[((bally * 12) + ballx) + 1], clipname, ((bally * 12) + ballx) + 1); tellTarget (clipname) { _x = ((22 + ((_parent.ballx + 1) * 38)) + (_width / 2)); _y = ((20 + (_parent.bally * 20)) + (_height / 2)); }; scores = scores + 10; series_ = series_ + 10; hits = hits + 10; minus = minus + 10; } vx = -vx; } } bally = int((Ball._y - 16) / 20); if (bally < 0) { bally = 0; } if ((last_string >= bally) && (field[(bally * 12) + ballx] != 0)) { was_beat_flag = false; push_flag = false; field[(bally * 12) + ballx]--; if (field[(bally * 12) + ballx] == 0) { if (sound_flag) { Sound3.start(); } tellTarget ((("x" + ballx) + "y") + bally) { gotoAndPlay (2); }; scores = scores + (10 * ((last_string - bally) + 5)); series_ = series_ + (10 * ((last_string - bally) + 5)); hits = hits + (10 * ((last_string - bally) + 5)); minus = minus + (10 * ((last_string - bally) + 5)); } else { if (sound_flag) { Sound1.start(); } clipname = (("x" + ballx) + "y") + bally; removeMovieClip(clipname); attachMovie(word + field[(bally * 12) + ballx], clipname, (bally * 12) + ballx); tellTarget (clipname) { _x = ((22 + (_parent.ballx * 38)) + (_width / 2)); _y = ((20 + (_parent.bally * 20)) + (_height / 2)); }; scores = scores + 10; series_ = series_ + 10; hits = hits + 10; minus = minus + 10; } vy = -vy; } else { tempx = (ballx * 38) + 22; if (((((last_string >= bally) && (0 < ballx)) && (vx < 0)) && (field[((bally * 12) + ballx) - 1] != 0)) && (Math.abs(tempx - Ball._x) < 10)) { was_beat_flag = false; push_flag = false; field[((bally * 12) + ballx) - 1]--; if (field[((bally * 12) + ballx) - 1] == 0) { if (sound_flag) { Sound3.start(); } tellTarget ((("x" + (ballx - 1)) + "y") + bally) { gotoAndPlay (2); }; scores = scores + (10 * ((last_string - bally) + 5)); series_ = series_ + (10 * ((last_string - bally) + 5)); hits = hits + (10 * ((last_string - bally) + 5)); minus = minus + (10 * ((last_string - bally) + 5)); } else { if (sound_flag) { Sound1.start(); } clipname = (("x" + (ballx - 1)) + "y") + bally; removeMovieClip(clipname); attachMovie(word + field[((bally * 12) + ballx) - 1], clipname, ((bally * 12) + ballx) - 1); tellTarget (clipname) { _x = ((22 + ((_parent.ballx - 1) * 38)) + (_width / 2)); _y = ((20 + (_parent.bally * 20)) + (_height / 2)); }; scores = scores + 10; series_ = series_ + 10; hits = hits + 10; minus = minus + 10; } vx = -vx; } tempx = ((ballx + 1) * 38) + 22; if (((((last_string >= bally) && (ballx < 11)) && (0 < vx)) && (field[((bally * 12) + ballx) + 1] != 0)) && (Math.abs(tempx - Ball._x) < 10)) { was_beat_flag = false; push_flag = false; field[((bally * 12) + ballx) + 1]--; if (field[((bally * 12) + ballx) + 1] == 0) { if (sound_flag) { Sound3.start(); } tellTarget ((("x" + (ballx + 1)) + "y") + bally) { gotoAndPlay (2); }; scores = scores + (10 * ((last_string - bally) + 5)); series_ = series_ + (10 * ((last_string - bally) + 5)); hits = hits + (10 * ((last_string - bally) + 5)); minus = minus + (10 * ((last_string - bally) + 5)); } else { if (sound_flag) { Sound1.start(); } clipname = (("x" + (ballx + 1)) + "y") + bally; removeMovieClip(clipname); attachMovie(word + field[((bally * 12) + ballx) + 1], clipname, ((bally * 12) + ballx) + 1); tellTarget (clipname) { _x = ((22 + ((_parent.ballx + 1) * 38)) + (_width / 2)); _y = ((20 + (_parent.bally * 20)) + (_height / 2)); }; scores = scores + 10; series_ = series_ + 10; hits = hits + 10; minus = minus + 10; } vx = -vx; } } if (minus >= 50) { if (20 < Platform._width) { Platform._width--; plat_width = Platform._width; } minus = 0; } Score = scores; Series = series_; Hit = hits; gotoAndPlay (5);
Instance of Symbol 92 MovieClip "Platform" in Frame 7
onClipEvent (enterFrame) { _width = _parent.plat_width; _x = _parent.x; _parent.oldxmouse = _parent._xmouse; _parent.oldymouse = _parent._ymouse; } onClipEvent (keyDown) { removeMovieClip(_parent.PauseString); _parent.first_flag = true; _parent.x = _x; _parent.y = _y; _parent.pause_flag = false; _parent.gotoAndPlay(5); } onClipEvent (mouseDown) { if (!(((((385 < _parent._xmouse) && (_parent._xmouse < 480)) && (363 < _parent._ymouse)) && (_parent._ymouse < 379)) || ((((317 < _parent._xmouse) && (_parent._xmouse < 387)) && (0 < _parent._ymouse)) && (_parent._ymouse < 18)))) { removeMovieClip(_parent.PauseString); _parent.first_flag = true; _parent.x = _x; _parent.y = _y; _parent.pause_flag = false; _parent.gotoAndPlay(5); } }
Frame 8
if (first_flag) { attachMovie("PauseString", "PauseString", 400); PauseString._x = 250; PauseString._y = 185; PauseString._alpha = 75; first_flag = false; replace_flag = true; platform._x = x; platform._y = y; platform._width = plat_width; } gotoAndPlay (7);
Frame 10
if (first_flag) { if (sound_flag) { Sound5.start(); } i = 0; while (i < 12) { j = 0; while (j < 16) { if (field[i][j] != 0) { field[i][j] = 0; removeMovieClip((("x" + i) + "y") + j); } j++; } i++; } FinalScore = scores; FinalSeries = max_series; FinalHit = max_hit; first_flag = false; } gotoAndPlay (9);
Symbol 29 MovieClip [Brick1] Frame 1
stop();
Symbol 29 MovieClip [Brick1] Frame 60
this.removeMovieClip(); stop();
Symbol 49 MovieClip [Block1] Frame 1
stop();
Symbol 49 MovieClip [Block1] Frame 30
this.removeMovieClip(); stop();
Symbol 52 Button [YesButton]
on (release) { if (sound_flag) { Sound6.start(); } var stSend = ((((((((Number(FinalScore) + "\t") + 0) + "\t") + stName) + "\t") + "arc") + "\t") + "web"); getURL ("http://absolutist.com/cgi-bin/gameres.pl?e=" + _root.Crypto(stSend), "_top"); gotoAndPlay (4); }
Symbol 53 Button [NoButton]
on (release) { if (sound_flag) { Sound6.start(); } gotoAndPlay (4); }
Symbol 78 Button
on (release) { getURL ("http://absolutist.com", "_blank"); }
Symbol 80 Button
on (release) { i = 0; while (i < 12) { j = 0; while (j < 16) { if (field[i][j] != 0) { field[i][j] = 0; removeMovieClip((("x" + i) + "y") + j); } j++; } i++; } Ball._visible = false; if (sound_flag) { Sound6.start(); } gotoAndPlay (4); }
Symbol 83 Button
on (release) { if (sound_flag) { SoundOut = "Sound Off"; } else { SoundOut = "Sound On"; } sound_flag = !sound_flag; }

Library Items

Symbol 1 Sound [Sound2]
Symbol 2 Sound [Sound3]
Symbol 3 Sound [Sound5]
Symbol 4 Sound [Sound1]
Symbol 5 Sound [Sound4]
Symbol 6 Sound [Sound6]
Symbol 7 GraphicUsed by:13 15 52 53 80 83
Symbol 8 FontUsed by:9 14 34 36 63 64 65 66 67 68 79 81 100 101 102 103 104 105 106 107 108
Symbol 9 TextUses:8Used by:13 52
Symbol 10 GraphicUsed by:13 15 52 53 80 83
Symbol 11 GraphicUsed by:13 15 52 53 80
Symbol 12 GraphicUsed by:13 15 52 53 80 83
Symbol 13 Button [YesButton]Uses:7 9 10 11 12
Symbol 14 TextUses:8Used by:15 53
Symbol 15 Button [NoButton]Uses:7 14 10 11 12
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClip [Brick2]Uses:16
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClip [Brick3]Uses:18
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClip [Brick4]Uses:20
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClip [Brick5]Uses:22
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClip [Brick6]Uses:24
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClip [Brick7]Uses:26
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClip [Brick1]Uses:28
Symbol 30 GraphicUsed by:33 54
Symbol 31 FontUsed by:32
Symbol 32 TextUses:31Used by:33 54
Symbol 33 MovieClip [PauseString]Uses:30 32
Symbol 34 TextUses:8Used by:35
Symbol 35 MovieClip [SoundOffText]Uses:34
Symbol 36 TextUses:8Used by:37
Symbol 37 MovieClip [SoundOnText]Uses:36
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClip [Block7]Uses:38
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClip [Block6]Uses:40
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClip [Block5]Uses:42
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClip [Block4]Uses:44
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClip [Block3]Uses:46
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClip [Block1]Uses:48
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClip [Block2]Uses:50
Symbol 52 Button [YesButton]Uses:7 9 10 11 12Used by:Timeline
Symbol 53 Button [NoButton]Uses:7 14 10 11 12Used by:Timeline
Symbol 54 MovieClip [PauseString]Uses:30 32Used by:Timeline
Symbol 55 GraphicUsed by:58
Symbol 56 FontUsed by:57 69 88 89 90 91 93 94 95 96
Symbol 57 TextUses:56Used by:58
Symbol 58 MovieClipUses:55 57Used by:Timeline
Symbol 59 GraphicUsed by:Timeline
Symbol 60 GraphicUsed by:Timeline
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:Timeline
Symbol 63 TextUses:8Used by:Timeline
Symbol 64 EditableTextUses:8Used by:Timeline
Symbol 65 TextUses:8Used by:Timeline
Symbol 66 TextUses:8Used by:Timeline
Symbol 67 EditableTextUses:8Used by:Timeline
Symbol 68 EditableTextUses:8Used by:Timeline
Symbol 69 EditableTextUses:56Used by:78
Symbol 70 FontUsed by:71 73 75 77
Symbol 71 EditableTextUses:70Used by:78
Symbol 72 GraphicUsed by:78
Symbol 73 EditableTextUses:70Used by:78
Symbol 74 GraphicUsed by:78
Symbol 75 EditableTextUses:70Used by:78
Symbol 76 GraphicUsed by:78
Symbol 77 EditableTextUses:70Used by:78
Symbol 78 ButtonUses:69 71 72 73 74 75 76 77Used by:Timeline
Symbol 79 TextUses:8Used by:80
Symbol 80 ButtonUses:7 79 10 11 12Used by:Timeline
Symbol 81 EditableTextUses:8Used by:83
Symbol 82 GraphicUsed by:83
Symbol 83 ButtonUses:7 81 10 82 12Used by:Timeline
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:Timeline
Symbol 86 GraphicUsed by:87 92
Symbol 87 MovieClipUses:86Used by:Timeline
Symbol 88 EditableTextUses:56Used by:Timeline
Symbol 89 EditableTextUses:56Used by:Timeline
Symbol 90 EditableTextUses:56Used by:Timeline
Symbol 91 EditableTextUses:56Used by:Timeline
Symbol 92 MovieClipUses:86Used by:Timeline
Symbol 93 EditableTextUses:56Used by:Timeline
Symbol 94 EditableTextUses:56Used by:Timeline
Symbol 95 EditableTextUses:56Used by:Timeline
Symbol 96 EditableTextUses:56Used by:Timeline
Symbol 97 GraphicUsed by:Timeline
Symbol 98 FontUsed by:99
Symbol 99 TextUses:98Used by:Timeline
Symbol 100 TextUses:8Used by:Timeline
Symbol 101 EditableTextUses:8Used by:Timeline
Symbol 102 TextUses:8Used by:Timeline
Symbol 103 EditableTextUses:8Used by:Timeline
Symbol 104 TextUses:8Used by:Timeline
Symbol 105 EditableTextUses:8Used by:Timeline
Symbol 106 EditableTextUses:8Used by:Timeline
Symbol 107 TextUses:8Used by:Timeline
Symbol 108 TextUses:8Used by:Timeline

Instance Names

"Ball"Frame 4Symbol 85 MovieClip
"Platform"Frame 4Symbol 87 MovieClip
"Platform"Frame 7Symbol 92 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "Sound2"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Sound3"
ExportAssets (56)Timeline Frame 1Symbol 3 as "Sound5"
ExportAssets (56)Timeline Frame 1Symbol 4 as "Sound1"
ExportAssets (56)Timeline Frame 1Symbol 5 as "Sound4"
ExportAssets (56)Timeline Frame 1Symbol 6 as "Sound6"
ExportAssets (56)Timeline Frame 1Symbol 13 as "YesButton"
ExportAssets (56)Timeline Frame 1Symbol 15 as "NoButton"
ExportAssets (56)Timeline Frame 1Symbol 17 as "Brick2"
ExportAssets (56)Timeline Frame 1Symbol 19 as "Brick3"
ExportAssets (56)Timeline Frame 1Symbol 21 as "Brick4"
ExportAssets (56)Timeline Frame 1Symbol 23 as "Brick5"
ExportAssets (56)Timeline Frame 1Symbol 25 as "Brick6"
ExportAssets (56)Timeline Frame 1Symbol 27 as "Brick7"
ExportAssets (56)Timeline Frame 1Symbol 29 as "Brick1"
ExportAssets (56)Timeline Frame 1Symbol 33 as "PauseString"
ExportAssets (56)Timeline Frame 1Symbol 35 as "SoundOffText"
ExportAssets (56)Timeline Frame 1Symbol 37 as "SoundOnText"
ExportAssets (56)Timeline Frame 1Symbol 39 as "Block7"
ExportAssets (56)Timeline Frame 1Symbol 41 as "Block6"
ExportAssets (56)Timeline Frame 1Symbol 43 as "Block5"
ExportAssets (56)Timeline Frame 1Symbol 45 as "Block4"
ExportAssets (56)Timeline Frame 1Symbol 47 as "Block3"
ExportAssets (56)Timeline Frame 1Symbol 49 as "Block1"
ExportAssets (56)Timeline Frame 1Symbol 51 as "Block2"
ExportAssets (56)Timeline Frame 1Symbol 52 as "YesButton"
ExportAssets (56)Timeline Frame 1Symbol 53 as "NoButton"
ExportAssets (56)Timeline Frame 1Symbol 54 as "PauseString"
ExportAssets (56)Timeline Frame 7Symbol 54 as "PauseString"
ExportAssets (56)Timeline Frame 8Symbol 54 as "PauseString"
ExportAssets (56)Timeline Frame 9Symbol 53 as "NoButton"
ExportAssets (56)Timeline Frame 9Symbol 52 as "YesButton"
ExportAssets (56)Timeline Frame 10Symbol 53 as "NoButton"
ExportAssets (56)Timeline Frame 10Symbol 52 as "YesButton"

Dynamic Text Variables

ScoreSymbol 64 EditableText"0"
SeriesSymbol 67 EditableText"0"
HitSymbol 68 EditableText"0"
TextField13Symbol 69 EditableText"©"
TextField9Symbol 71 EditableText"Absolutist.com"
TextField9Symbol 73 EditableText"Absolutist.com"
TextField9Symbol 75 EditableText"Absolutist.com"
TextField9Symbol 77 EditableText"Absolutist.com"
SoundOutSymbol 81 EditableText"Sound On"
out1Symbol 88 EditableText""
out2Symbol 89 EditableText""
out3Symbol 90 EditableText""
out4Symbol 91 EditableText""
out1Symbol 93 EditableText""
out2Symbol 94 EditableText""
out3Symbol 95 EditableText""
out4Symbol 96 EditableText""
FinalScoreSymbol 101 EditableText"0"
FinalSeriesSymbol 103 EditableText"0"
FinalHitSymbol 105 EditableText"0"
stNameSymbol 106 EditableText""




http://swfchan.com/6/26429/info.shtml
Created: 22/5 -2019 16:19:58 Last modified: 22/5 -2019 16:19:58 Server time: 14/05 -2024 09:34:55