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

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

Minesweeper.swf

This is the info page for
Flash #26850

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


Text
<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"> </FONT></P>

Loading

.

..

...

Loading

Start

Start

Mine // sweeper

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#000000"><B>Difficulty:</B></FONT></P>

v // 1.2

by rastyle.com // studios

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#000000"><B>Enter your name:</B></FONT></P>

anonymous

999

<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="10" COLOR="#000000">Bombs Left:</FONT></P>

<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="10" COLOR="#000000">Elapsed Time:</FONT></P>

Restart

Restart

Splash

Splash

rastyle.com

rastyle.com

<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="9" COLOR="#666666">Mouse <FONT COLOR="#009900">click</FONT> opens a spot, </FONT></P><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="9" COLOR="#009900">press <FONT COLOR="#666666">SPACE to mark a spot, </FONT></FONT></P><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="9" COLOR="#009900">hold <FONT COLOR="#666666">SPACE and click to open </FONT></FONT></P><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="9" COLOR="#666666">neighbor spots</FONT></P><P ALIGN="LEFT"></P>

999

1

2

3

4

5

6

7

8

ActionScript [AS1/AS2]

Frame 2
if (_root._framesloaded < _root._totalframes) { gotoAndPlay (1); }
Frame 4
_root.bombs_amount = 70;
Frame 5
function switchLevel() { _root.bombs_amount = diff_level.getValue(); } diff_level.setValue(_root.bombs_amount); stop();
Instance of Symbol 37 MovieClip [FRadioButtonSymbol] "level_eazy" in Frame 5
//component parameters onClipEvent (initialize) { label = " Easy (40 mines)"; initialState = false; groupName = "diff_level"; data = 40; labelPlacement = "right"; changeHandler = "switchLevel"; }
Instance of Symbol 37 MovieClip [FRadioButtonSymbol] "level_medium" in Frame 5
//component parameters onClipEvent (initialize) { label = " Medium (70 mines)"; initialState = false; groupName = "diff_level"; data = 70; labelPlacement = "right"; changeHandler = "switchLevel"; }
Instance of Symbol 37 MovieClip [FRadioButtonSymbol] "level_tough" in Frame 5
//component parameters onClipEvent (initialize) { label = " Tough (100 mines)"; initialState = false; groupName = "diff_level"; data = 100; labelPlacement = "right"; changeHandler = "switchLevel"; }
Frame 9
_root.msgwnd._visible = false; _root.msgwnd.swapDepths(1000);
Frame 10
function countItemsAround(x, y, item) { itemsAround = 0; if (((_root.field[(_root.fwidth * (y - 1)) + (x - 1)] == item) && (x >= 1)) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * (y - 1)) + x] == item) && (y >= 1)) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y - 1)) + (x + 1)] == item) && (x < (_root.fwidth - 1))) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * y) + (x - 1)] == item) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * y) + (x + 1)] == item) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y + 1)) + (x - 1)] == item) && (y < (_root.fheight - 1))) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * (y + 1)) + x] == item) && (y < (_root.fheight - 1))) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y + 1)) + (x + 1)] == item) && (y < (_root.fheight - 1))) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } return(itemsAround); } function countMarksAround(x, y) { itemsAround = 0; if (((_root.marks[(_root.fwidth * (y - 1)) + (x - 1)] == 1) && (x >= 1)) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * (y - 1)) + x] == 1) && (y >= 1)) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y - 1)) + (x + 1)] == 1) && (x < (_root.fwidth - 1))) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * y) + (x - 1)] == 1) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * y) + (x + 1)] == 1) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y + 1)) + (x - 1)] == 1) && (y < (_root.fheight - 1))) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * (y + 1)) + x] == 1) && (y < (_root.fheight - 1))) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y + 1)) + (x + 1)] == 1) && (y < (_root.fheight - 1))) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } return(itemsAround); } function showBombs() { _root.mc_smile.gotoAndStop(random(2) + 3); x = 0; while (x < 30) { y = 0; while (y < 16) { fieldValue = _root.field[(y * _root.fwidth) + x]; markedValue = _root.marks[(y * _root.fwidth) + x]; if ((fieldValue == 9) && (markedValue == 0)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Bomb"); } if ((fieldValue != 9) && (markedValue == 1)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("NoBomb"); } y++; } x++; } } function showMarks() { _root.bombs_left = 0; x = 0; while (x < 30) { y = 0; while (y < 16) { fieldValue = _root.field[(y * _root.fwidth) + x]; markedValue = _root.marks[(y * _root.fwidth) + x]; if ((fieldValue == 9) && (markedValue == 0)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Marked"); } y++; } x++; } } function deleteCells() { x = 0; while (x < 30) { y = 0; while (y < 16) { tn = eval ((("_root.cell" + x) + "_") + y); tn.removeMovieClip(); y++; } x++; } } function get_record() { _root.msgwnd._visible = true; } function endGame() { showMarks(); loadVariables ((((((("register.php?t=" + getTimer()) + "&nama=") + _root.playerName) + "&scora=") + _root.elapsed_time) + "&level=") + _root.bombs_amount, this); _root.sensor._visible = false; _root.timerRunning = false; _root.mc_smile.gotoAndStop(2); } function checkForGameEnd() { if ((_root.totalFields - _root.fieldsOpen) == _root.bombs_amount) { endGame(); } } function openField(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 1) { return(undefined); } fieldValue = _root.field[(y * _root.fwidth) + x]; if ((fieldValue >= 1) && (fieldValue <= 8)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop(fieldValue); _root.open[(y * _root.fwidth) + x] = 1; _root.fieldsOpen = _root.fieldsOpen + 1; checkForGameEnd(); return(undefined); } if (fieldValue == 9) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("HotBomb"); _root.field[(y * _root.fwidth) + x] = 14; _root.sensor._visible = false; _root.timerRunning = false; showBombs(); return(undefined); } if (fieldValue == 13) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Empty"); _root.open[(y * _root.fwidth) + x] = 1; _root.fieldsOpen = _root.fieldsOpen + 1; checkForGameEnd(); if ((x >= 1) && (y >= 1)) { openField(x - 1, y - 1); } if (y >= 1) { openField(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { openField(x + 1, y - 1); } if (x >= 1) { openField(x - 1, y); } if (x < (_root.fwidth - 1)) { openField(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { openField(x - 1, y + 1); } if (y < (_root.fheight - 1)) { openField(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { openField(x + 1, y + 1); } } } function openMultiple(x, y) { if (_root.open[(y * _root.fwidth) + x] != 1) { return(undefined); } fieldValue = _root.field[(y * _root.fwidth) + x]; if (fieldValue == countMarksAround(x, y)) { if ((x >= 1) && (y >= 1)) { openField(x - 1, y - 1); } if (y >= 1) { openField(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { openField(x + 1, y - 1); } if (x >= 1) { openField(x - 1, y); } if (x < (_root.fwidth - 1)) { openField(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { openField(x - 1, y + 1); } if (y < (_root.fheight - 1)) { openField(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { openField(x + 1, y + 1); } } else { unpress(x, y); } } function pressDown(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 0) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Empty"); } } function unpressUp(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 0) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Unknown"); } } function press(x, y) { if (_root.multi == false) { pressDown(x, y); } else { if ((x >= 1) && (y >= 1)) { pressDown(x - 1, y - 1); } if (y >= 1) { pressDown(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { pressDown(x + 1, y - 1); } if (x >= 1) { pressDown(x - 1, y); } if (x < (_root.fwidth - 1)) { pressDown(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { pressDown(x - 1, y + 1); } if (y < (_root.fheight - 1)) { pressDown(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { pressDown(x + 1, y + 1); } } } function unpress(x, y) { if (_root.multi == false) { unpressUp(x, y); } else { if ((x >= 1) && (y >= 1)) { unpressUp(x - 1, y - 1); } if (y >= 1) { unpressUp(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { unpressUp(x + 1, y - 1); } if (x >= 1) { unpressUp(x - 1, y); } if (x < (_root.fwidth - 1)) { unpressUp(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { unpressUp(x - 1, y + 1); } if (y < (_root.fheight - 1)) { unpressUp(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { unpressUp(x + 1, y + 1); } } } function mark(x, y) { if (_root.marks[(y * _root.fwidth) + x] != 1) { if (_root.open[(y * _root.fwidth) + x] == 0) { _root.marks[(y * _root.fwidth) + x] = 1; tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Marked"); _root.open[(y * _root.fwidth) + x] = 1; _root.bombs_left = _root.bombs_left - 1; } } else { _root.marks[(y * _root.fwidth) + x] = 0; tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Unknown"); _root.open[(y * _root.fwidth) + x] = 0; _root.bombs_left = _root.bombs_left + 1; } } _root.fwidth = 30; _root.fheight = 16; _root.totalFields = _root.fwidth * _root.fheight; _root.field = new Array(_root.totalFields); _root.marks = new Array(_root.totalFields); _root.open = new Array(_root.totalFields); _root.fieldsOpen = 0; _root.multi = false; _root.key_up = true; _root.bombs_left = _root.bombs_amount; _root.timerRunning = false; _root.timerSet = false; _root.elapsed_time = 0; _root.sensor._visible = true; _root.mc_smile.gotoAndStop(1); cell._visible = false; depth = 10; i = 0; while (i < 30) { j = 0; while (j < 16) { duplicateMovieClip (cell, (("cell" + i) + "_") + j, depth); setProperty((("cell" + i) + "_") + j, _x , 18 + (i * 16)); setProperty((("cell" + i) + "_") + j, _y , 18 + (j * 16)); tellTarget ((("cell" + i) + "_") + j) { gotoAndPlay ("Unknown"); }; _root.field[(j * _root.fwidth) + i] = 12; depth = depth + 1; _root.marks[(j * _root.fwidth) + i] = 0; _root.open[(j * _root.fwidth) + i] = 0; j++; } i++; } i = 0; while (i < _root.bombs_amount) { x = random(30); y = random(16); if (_root.field[(y * _root.fwidth) + x] != 9) { _root.field[(y * _root.fwidth) + x] = 9; } else { i--; } i++; } x = 0; while (x < 30) { y = 0; while (y < 16) { if (_root.field[(y * _root.fwidth) + x] != 9) { a = countItemsAround(x, y, 9); if (a != 0) { _root.field[(y * _root.fwidth) + x] = a; } else { _root.field[(y * _root.fwidth) + x] = 13; } } y++; } x++; }
Instance of Symbol 106 MovieClip "sensor" in Frame 10
on (release) { function countItemsAround(x, y, item) { itemsAround = 0; if (((_root.field[(_root.fwidth * (y - 1)) + (x - 1)] == item) && (x >= 1)) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * (y - 1)) + x] == item) && (y >= 1)) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y - 1)) + (x + 1)] == item) && (x < (_root.fwidth - 1))) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * y) + (x - 1)] == item) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * y) + (x + 1)] == item) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y + 1)) + (x - 1)] == item) && (y < (_root.fheight - 1))) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * (y + 1)) + x] == item) && (y < (_root.fheight - 1))) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y + 1)) + (x + 1)] == item) && (y < (_root.fheight - 1))) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } return(itemsAround); } function countMarksAround(x, y) { itemsAround = 0; if (((_root.marks[(_root.fwidth * (y - 1)) + (x - 1)] == 1) && (x >= 1)) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * (y - 1)) + x] == 1) && (y >= 1)) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y - 1)) + (x + 1)] == 1) && (x < (_root.fwidth - 1))) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * y) + (x - 1)] == 1) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * y) + (x + 1)] == 1) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y + 1)) + (x - 1)] == 1) && (y < (_root.fheight - 1))) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * (y + 1)) + x] == 1) && (y < (_root.fheight - 1))) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y + 1)) + (x + 1)] == 1) && (y < (_root.fheight - 1))) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } return(itemsAround); } function showBombs() { _root.mc_smile.gotoAndStop(random(2) + 3); x = 0; while (x < 30) { y = 0; while (y < 16) { fieldValue = _root.field[(y * _root.fwidth) + x]; markedValue = _root.marks[(y * _root.fwidth) + x]; if ((fieldValue == 9) && (markedValue == 0)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Bomb"); } if ((fieldValue != 9) && (markedValue == 1)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("NoBomb"); } y++; } x++; } } function showMarks() { _root.bombs_left = 0; x = 0; while (x < 30) { y = 0; while (y < 16) { fieldValue = _root.field[(y * _root.fwidth) + x]; markedValue = _root.marks[(y * _root.fwidth) + x]; if ((fieldValue == 9) && (markedValue == 0)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Marked"); } y++; } x++; } } function deleteCells() { x = 0; while (x < 30) { y = 0; while (y < 16) { tn = eval ((("_root.cell" + x) + "_") + y); tn.removeMovieClip(); y++; } x++; } } function get_record() { _root.msgwnd._visible = true; } function endGame() { showMarks(); loadVariables ((((((("register.php?t=" + getTimer()) + "&nama=") + _root.playerName) + "&scora=") + _root.elapsed_time) + "&level=") + _root.bombs_amount, this); _root.sensor._visible = false; _root.timerRunning = false; _root.mc_smile.gotoAndStop(2); } function checkForGameEnd() { if ((_root.totalFields - _root.fieldsOpen) == _root.bombs_amount) { endGame(); } } function openField(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 1) { return(undefined); } fieldValue = _root.field[(y * _root.fwidth) + x]; if ((fieldValue >= 1) && (fieldValue <= 8)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop(fieldValue); _root.open[(y * _root.fwidth) + x] = 1; _root.fieldsOpen = _root.fieldsOpen + 1; checkForGameEnd(); return(undefined); } if (fieldValue == 9) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("HotBomb"); _root.field[(y * _root.fwidth) + x] = 14; _root.sensor._visible = false; _root.timerRunning = false; showBombs(); return(undefined); } if (fieldValue == 13) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Empty"); _root.open[(y * _root.fwidth) + x] = 1; _root.fieldsOpen = _root.fieldsOpen + 1; checkForGameEnd(); if ((x >= 1) && (y >= 1)) { openField(x - 1, y - 1); } if (y >= 1) { openField(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { openField(x + 1, y - 1); } if (x >= 1) { openField(x - 1, y); } if (x < (_root.fwidth - 1)) { openField(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { openField(x - 1, y + 1); } if (y < (_root.fheight - 1)) { openField(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { openField(x + 1, y + 1); } } } function openMultiple(x, y) { if (_root.open[(y * _root.fwidth) + x] != 1) { return(undefined); } fieldValue = _root.field[(y * _root.fwidth) + x]; if (fieldValue == countMarksAround(x, y)) { if ((x >= 1) && (y >= 1)) { openField(x - 1, y - 1); } if (y >= 1) { openField(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { openField(x + 1, y - 1); } if (x >= 1) { openField(x - 1, y); } if (x < (_root.fwidth - 1)) { openField(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { openField(x - 1, y + 1); } if (y < (_root.fheight - 1)) { openField(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { openField(x + 1, y + 1); } } else { unpress(x, y); } } function pressDown(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 0) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Empty"); } } function unpressUp(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 0) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Unknown"); } } function press(x, y) { if (_root.multi == false) { pressDown(x, y); } else { if ((x >= 1) && (y >= 1)) { pressDown(x - 1, y - 1); } if (y >= 1) { pressDown(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { pressDown(x + 1, y - 1); } if (x >= 1) { pressDown(x - 1, y); } if (x < (_root.fwidth - 1)) { pressDown(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { pressDown(x - 1, y + 1); } if (y < (_root.fheight - 1)) { pressDown(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { pressDown(x + 1, y + 1); } } } function unpress(x, y) { if (_root.multi == false) { unpressUp(x, y); } else { if ((x >= 1) && (y >= 1)) { unpressUp(x - 1, y - 1); } if (y >= 1) { unpressUp(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { unpressUp(x + 1, y - 1); } if (x >= 1) { unpressUp(x - 1, y); } if (x < (_root.fwidth - 1)) { unpressUp(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { unpressUp(x - 1, y + 1); } if (y < (_root.fheight - 1)) { unpressUp(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { unpressUp(x + 1, y + 1); } } } function mark(x, y) { if (_root.marks[(y * _root.fwidth) + x] != 1) { if (_root.open[(y * _root.fwidth) + x] == 0) { _root.marks[(y * _root.fwidth) + x] = 1; tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Marked"); _root.open[(y * _root.fwidth) + x] = 1; _root.bombs_left = _root.bombs_left - 1; } } else { _root.marks[(y * _root.fwidth) + x] = 0; tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Unknown"); _root.open[(y * _root.fwidth) + x] = 0; _root.bombs_left = _root.bombs_left + 1; } } x = int((_xmouse + 240) / 16); y = int((_ymouse + 128) / 16); unpress(_root.pressedx, _root.pressedy); if (_root.timerRunning == false) { _root.timerRunning = true; } if ((x == _root.pressedx) && (y == _root.pressedy)) { if (Key.isDown(32)) { openMultiple(_root.pressedx, _root.pressedy); } else { openField(_root.pressedx, _root.pressedy); } } } on (press) { function countItemsAround(x, y, item) { itemsAround = 0; if (((_root.field[(_root.fwidth * (y - 1)) + (x - 1)] == item) && (x >= 1)) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * (y - 1)) + x] == item) && (y >= 1)) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y - 1)) + (x + 1)] == item) && (x < (_root.fwidth - 1))) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * y) + (x - 1)] == item) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * y) + (x + 1)] == item) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y + 1)) + (x - 1)] == item) && (y < (_root.fheight - 1))) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * (y + 1)) + x] == item) && (y < (_root.fheight - 1))) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y + 1)) + (x + 1)] == item) && (y < (_root.fheight - 1))) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } return(itemsAround); } function countMarksAround(x, y) { itemsAround = 0; if (((_root.marks[(_root.fwidth * (y - 1)) + (x - 1)] == 1) && (x >= 1)) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * (y - 1)) + x] == 1) && (y >= 1)) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y - 1)) + (x + 1)] == 1) && (x < (_root.fwidth - 1))) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * y) + (x - 1)] == 1) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * y) + (x + 1)] == 1) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y + 1)) + (x - 1)] == 1) && (y < (_root.fheight - 1))) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * (y + 1)) + x] == 1) && (y < (_root.fheight - 1))) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y + 1)) + (x + 1)] == 1) && (y < (_root.fheight - 1))) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } return(itemsAround); } function showBombs() { _root.mc_smile.gotoAndStop(random(2) + 3); x = 0; while (x < 30) { y = 0; while (y < 16) { fieldValue = _root.field[(y * _root.fwidth) + x]; markedValue = _root.marks[(y * _root.fwidth) + x]; if ((fieldValue == 9) && (markedValue == 0)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Bomb"); } if ((fieldValue != 9) && (markedValue == 1)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("NoBomb"); } y++; } x++; } } function showMarks() { _root.bombs_left = 0; x = 0; while (x < 30) { y = 0; while (y < 16) { fieldValue = _root.field[(y * _root.fwidth) + x]; markedValue = _root.marks[(y * _root.fwidth) + x]; if ((fieldValue == 9) && (markedValue == 0)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Marked"); } y++; } x++; } } function deleteCells() { x = 0; while (x < 30) { y = 0; while (y < 16) { tn = eval ((("_root.cell" + x) + "_") + y); tn.removeMovieClip(); y++; } x++; } } function get_record() { _root.msgwnd._visible = true; } function endGame() { showMarks(); loadVariables ((((((("register.php?t=" + getTimer()) + "&nama=") + _root.playerName) + "&scora=") + _root.elapsed_time) + "&level=") + _root.bombs_amount, this); _root.sensor._visible = false; _root.timerRunning = false; _root.mc_smile.gotoAndStop(2); } function checkForGameEnd() { if ((_root.totalFields - _root.fieldsOpen) == _root.bombs_amount) { endGame(); } } function openField(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 1) { return(undefined); } fieldValue = _root.field[(y * _root.fwidth) + x]; if ((fieldValue >= 1) && (fieldValue <= 8)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop(fieldValue); _root.open[(y * _root.fwidth) + x] = 1; _root.fieldsOpen = _root.fieldsOpen + 1; checkForGameEnd(); return(undefined); } if (fieldValue == 9) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("HotBomb"); _root.field[(y * _root.fwidth) + x] = 14; _root.sensor._visible = false; _root.timerRunning = false; showBombs(); return(undefined); } if (fieldValue == 13) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Empty"); _root.open[(y * _root.fwidth) + x] = 1; _root.fieldsOpen = _root.fieldsOpen + 1; checkForGameEnd(); if ((x >= 1) && (y >= 1)) { openField(x - 1, y - 1); } if (y >= 1) { openField(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { openField(x + 1, y - 1); } if (x >= 1) { openField(x - 1, y); } if (x < (_root.fwidth - 1)) { openField(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { openField(x - 1, y + 1); } if (y < (_root.fheight - 1)) { openField(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { openField(x + 1, y + 1); } } } function openMultiple(x, y) { if (_root.open[(y * _root.fwidth) + x] != 1) { return(undefined); } fieldValue = _root.field[(y * _root.fwidth) + x]; if (fieldValue == countMarksAround(x, y)) { if ((x >= 1) && (y >= 1)) { openField(x - 1, y - 1); } if (y >= 1) { openField(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { openField(x + 1, y - 1); } if (x >= 1) { openField(x - 1, y); } if (x < (_root.fwidth - 1)) { openField(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { openField(x - 1, y + 1); } if (y < (_root.fheight - 1)) { openField(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { openField(x + 1, y + 1); } } else { unpress(x, y); } } function pressDown(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 0) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Empty"); } } function unpressUp(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 0) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Unknown"); } } function press(x, y) { if (_root.multi == false) { pressDown(x, y); } else { if ((x >= 1) && (y >= 1)) { pressDown(x - 1, y - 1); } if (y >= 1) { pressDown(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { pressDown(x + 1, y - 1); } if (x >= 1) { pressDown(x - 1, y); } if (x < (_root.fwidth - 1)) { pressDown(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { pressDown(x - 1, y + 1); } if (y < (_root.fheight - 1)) { pressDown(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { pressDown(x + 1, y + 1); } } } function unpress(x, y) { if (_root.multi == false) { unpressUp(x, y); } else { if ((x >= 1) && (y >= 1)) { unpressUp(x - 1, y - 1); } if (y >= 1) { unpressUp(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { unpressUp(x + 1, y - 1); } if (x >= 1) { unpressUp(x - 1, y); } if (x < (_root.fwidth - 1)) { unpressUp(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { unpressUp(x - 1, y + 1); } if (y < (_root.fheight - 1)) { unpressUp(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { unpressUp(x + 1, y + 1); } } } function mark(x, y) { if (_root.marks[(y * _root.fwidth) + x] != 1) { if (_root.open[(y * _root.fwidth) + x] == 0) { _root.marks[(y * _root.fwidth) + x] = 1; tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Marked"); _root.open[(y * _root.fwidth) + x] = 1; _root.bombs_left = _root.bombs_left - 1; } } else { _root.marks[(y * _root.fwidth) + x] = 0; tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Unknown"); _root.open[(y * _root.fwidth) + x] = 0; _root.bombs_left = _root.bombs_left + 1; } } _root.pressedx = int((_xmouse + 240) / 16); _root.pressedy = int((_ymouse + 128) / 16); if (Key.isDown(32)) { _root.multi = true; press(_root.pressedx, _root.pressedy); } else { _root.multi = false; press(_root.pressedx, _root.pressedy); } } onClipEvent (keyDown) { if (Key.getCode() == 32) { _root.shift_pressed = true; if (_root.key_up) { _root.pressedx = int((_xmouse + 240) / 16); _root.pressedy = int((_ymouse + 128) / 16); _root.key_up = false; } } } onClipEvent (keyUp) { if (_root.shift_pressed) { point = new object(); point.x = _xmouse; point.y = _ymouse; this.localToGlobal(point); _root.shift_pressed = false; _root.key_up = true; if (hitTest(point.x, point.y, false)) { x = int((_xmouse + 240) / 16); y = int((_ymouse + 128) / 16); if ((x == _root.pressedx) && (y == _root.pressedy)) { mark(x, y); } } } }
Frame 12
if (_root.timerRunning) { if (_root.timerSet == false) { _root.timerSet = true; _root.currentSecs = 0; _root.startTime = new Date(); } currentTime = new Date(); currentTime = currentTime - _root.startTime; _root.currentSecs = int(currentTime / 1000); if (_root.currentSecs > _root.elapsed_time) { _root.elapsed_time = _root.currentSecs; } delete currentTime; } gotoAndPlay (11);
Symbol 5 MovieClip [FLabelSymbol] Frame 1
#initclip 2 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var val = this.hostComponent.styleTable.embedFonts.value; if (val != undefined) { this.labelField.embedFonts = val; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var tmpColor = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (tmpColor == undefined) { tmpColor = (enable ? 0 : 8947848); } this.setColor(tmpColor); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 14 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 17 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 20 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 22 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 25 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(disabled_mc, "foregroundDisabled");
Symbol 28 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(dot_mc, "radioDot");
Symbol 29 MovieClip [frb_states] Frame 1
stop();
Symbol 29 MovieClip [frb_states] Frame 2
stop();
Symbol 29 MovieClip [frb_states] Frame 3
stop();
Symbol 29 MovieClip [frb_states] Frame 4
stop();
Symbol 29 MovieClip [frb_states] Frame 5
stop();
Symbol 30 MovieClip [FUIComponentSymbol] Frame 1
#initclip 1 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var i in this.styleFormat_prm) { this.setStyleProperty(i, this.styleFormat_prm[i]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var funct in this.methodTable) { this[funct](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var inner = this.styleTable.focusRectInner.value; var outer = this.styleTable.focusRectOuter.value; if (inner == undefined) { inner = 16777215 /* 0xFFFFFF */; } if (outer == undefined) { outer = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, outer); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, inner); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { this.drawFocusRect(); } }; FUIComponentClass.prototype.myOnKillFocus = function () { this.tabFocused = true; this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { if (value == "") { return(undefined); } var tmpValue = parseInt(value); if (!isNaN(tmpValue)) { value = tmpValue; } var global = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!global)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var textProp = propName.subString(4, propName.length); this.textStyle[textProp] = value; this.invalidate("setSize"); } else { for (var j in this.styleTable[propName].coloredMCs) { var myColor = new Color(this.styleTable[propName].coloredMCs[j]); if (this.styleTable[propName].value == undefined) { var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; myColor.setTransform(myTObj); } else { myColor.setRGB(value); } } } this.styleTable[propName].useGlobal = global; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var myColor = new Color(skinMCRef); myColor.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var i in arguments[0]) { this[i] = arguments[0][i]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var arg = 0; while (arg < arguments.length) { var mcRef = arguments[arg]; this.listeners[arguments[arg]] = mcRef; for (var i in this) { if (this.isAStyle(i)) { mcRef.updateStyleProperty(this, i.toString()); } } arg++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var prop in this) { if (this.isAStyle(prop)) { if (component.styleTable[prop].useGlobal == this.isGlobal) { component.styleTable[prop].useGlobal = true; var value = (this.isGlobal ? undefined : (globalStyleFormat[prop])); component.setStyleProperty(prop, value, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var count = 0; for (var i in this.listeners) { var component = this.listeners[i]; if (arguments.length > 0) { var j = 0; while (j < arguments.length) { if (this.isAStyle(arguments[j])) { component.updateStyleProperty(this, arguments[j]); } j++; } } else { for (var j in this) { if (this.isAStyle(j)) { component.updateStyleProperty(this, j.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 37 MovieClip [FRadioButtonSymbol] Frame 1
#initclip 3 function FRadioButtonClass() { this.init(); } function FRadioButtonGroupClass() { this.radioInstances = new Array(); } FRadioButtonClass.prototype = new FUIComponentClass(); FRadioButtonGroupClass.prototype = new FUIComponentClass(); Object.registerClass("FRadioButtonSymbol", FRadioButtonClass); FRadioButtonClass.prototype.init = function () { if (this.initialState == undefined) { this.selected = false; } else { this.selected = this.initialState; } super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.boundingBox_mc._width = 0; this.boundingBox_mc._height = 0; this.attachMovie("frb_hitArea", "frb_hitArea_mc", 1); this.attachMovie("frb_states", "frb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); this.setChangeHandler(this.changeHandler); if (this.label != undefined) { this.setLabel(this.label); } if (this.initialState == undefined) { this.setValue(false); } else { this.setValue(this.initialState); } if (this.data == "") { this.data = undefined; } else { this.setData(this.data); } this.addToRadioGroup(); this.ROLE_SYSTEM_RADIOBUTTON = 45; this.STATE_SYSTEM_SELECTED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FRadioButtonClass.prototype.setHitArea = function (w, h) { var hit = this.frb_hitArea_mc; this.hitArea = hit; if (this.frb_states_mc._width > w) { hit._width = this.frb_states_mc._width; } else { hit._width = w; } hit._visible = false; if (arguments.length > 1) { hit._height = h; } }; FRadioButtonClass.prototype.txtFormat = function (pos) { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = pos)) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 0)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.setEnabled(this.enable); }; FRadioButtonClass.prototype.setSize = function (w, h) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.frb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FRadioButtonClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var halfLabelH = (this.fLabel_mc._height / 2); var halfFrameH = (this.frb_states_mc._height / 2); var vertCenter = (halfFrameH - halfLabelH); var radioWidth = this.frb_states_mc._width; var frame = this.frb_states_mc; var label = this.fLabel_mc; var w = (this.width - frame._width); if (frame._width > this.width) { w = 0; } else { w = this.width - frame._width; } this.fLabel_mc.setSize(w); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.frb_states_mc._x = 0; this.fLabel_mc._x = radioWidth; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.frb_states_mc._x = this.width - radioWidth; this.txtFormat("right"); } this.fLabel_mc._y = vertCenter; this.frb_hitArea_mc._y = vertCenter; this.setLabel(this.getLabel()); }; FRadioButtonClass.prototype.setData = function (dataValue) { this.data = dataValue; }; FRadioButtonClass.prototype.getData = function () { return(this.data); }; FRadioButtonClass.prototype.getState = function () { return(this.selected); }; FRadioButtonClass.prototype.getSize = function () { return(this.width); }; FRadioButtonClass.prototype.getGroupName = function () { return(this.groupName); }; FRadioButtonClass.prototype.setGroupName = function (groupName) { var i = 0; while (i < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[i] == this) { delete this._parent[this.groupName].radioInstances[i]; } i++; } this.groupName = groupName; this.addToRadioGroup(); }; FRadioButtonClass.prototype.addToRadioGroup = function () { if (this._parent[this.groupName] == undefined) { this._parent[this.groupName] = new FRadioButtonGroupClass(); } this._parent[this.groupName].addRadioInstance(this); }; FRadioButtonClass.prototype.setValue = function (selected) { if (selected || (selected == undefined)) { this.setState(true); this.focusRect.removeMovieClip(); this.executeCallBack(); } else if (selected == false) { this.setState(false); } }; FRadioButtonClass.prototype.setTabState = function (selected) { Selection.setFocus(this); this.setState(selected); this.drawFocusRect(); this.executeCallBack(); }; FRadioButtonClass.prototype.setState = function (selected) { if (selected || (selected == undefined)) { this.tabEnabled = true; for (var i in this._parent) { if ((this != this._parent[i]) && (this._parent[i].groupName == this.groupName)) { this._parent[i].setState(false); this._parent[i].tabEnabled = false; } } } if (this.enable) { this.flabel_mc.setEnabled(true); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedEnabled"); this.enabled = false; this.selected = true; this.tabEnabled = true; this.tabFocused = true; } else { this.frb_states_mc.gotoAndStop("unselectedEnabled"); this.enabled = true; this.selected = false; this.tabEnabled = false; var enabTrue = this._parent[this.groupName].getEnabled(); var noneSelect = (this._parent[this.groupName].getValue() == undefined); if (enabTrue && (noneSelect)) { this._parent[this.groupName].radioInstances[0].tabEnabled = true; } } } else { this.flabel_mc.setEnabled(false); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedDisabled"); this.enabled = false; this.selected = true; this.tabEnabled = false; } else { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.enabled = false; this.selected = false; this.tabEnabled = false; } } if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FRadioButtonClass.prototype.getValue = function () { if (this.selected) { if ((this.data == "") || (this.data == undefined)) { return(this.getLabel()); } return(this.data); } }; FRadioButtonClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setState(this.selected); var cgn = (this._parent[this.groupName].getEnabled() == undefined); var cgnez = (this._parent[this.groupName].radioInstances[0].getEnabled() == false); if (cgn && (cgnez)) { var i = 0; while (i < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[i].getEnabled() == true) { this._parent[this.groupName].radioInstances[i].tabEnabled = true; return(undefined); } i++; } } }; FRadioButtonClass.prototype.getEnabled = function () { return(this.enable); }; FRadioButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FRadioButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.getLabel()); }; FRadioButtonClass.prototype.onPress = function () { this.pressFocus(); this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.onRelease = function () { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.setValue(!this.selected); }; FRadioButtonClass.prototype.onReleaseOutside = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOut = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOver = function () { this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this._parent[this.groupName]); }; FRadioButtonGroupClass.prototype.addRadioInstance = function (instance) { this.radioInstances.push(instance); this.radioInstances[0].tabEnabled = true; }; FRadioButtonGroupClass.prototype.setEnabled = function (enableFlag) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setEnabled(enableFlag); i++; } }; FRadioButtonGroupClass.prototype.getEnabled = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].getEnabled() != this.radioInstances[0].getEnabled()) { return(undefined); } i++; } return(this.radioInstances[0].getEnabled()); }; FRadioButtonGroupClass.prototype.setChangeHandler = function (changeHandler, obj) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setChangeHandler(changeHandler, obj); i++; } }; FRadioButtonGroupClass.prototype.getValue = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].selected == true) { if ((this.radioInstances[i].data == "") || (this.radioInstances[i].data == undefined)) { return(this.radioInstances[i].getLabel()); } return(this.radioInstances[i].data); } i++; } }; FRadioButtonGroupClass.prototype.getData = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].selected) { return(this.radioInstances[i].getData()); } i++; } }; FRadioButtonGroupClass.prototype.getInstance = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].selected == true) { return(i); } i++; } }; FRadioButtonGroupClass.prototype.setValue = function (dataValue) { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].data == dataValue) { this.radioInstances[i].setValue(true); return(undefined); } i++; } var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].getLabel() == dataValue) { this.radioInstances[i].setValue(true); } i++; } }; FRadioButtonGroupClass.prototype.setSize = function (w) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setSize(w); i++; } }; FRadioButtonGroupClass.prototype.getSize = function () { var widestRadio = 0; var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].width >= widestRadio) { widestRadio = this.radioInstances[i].width; } i++; } return(widestRadio); }; FRadioButtonGroupClass.prototype.setGroupName = function (groupName) { this.oldGroupName = this.radioInstances[0].groupName; var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].groupName = groupName; this.radioInstances[i].addToRadioGroup(); i++; } delete this._parent[this.oldGroupName]; }; FRadioButtonGroupClass.prototype.getGroupName = function () { return(this.radioInstances[0].groupName); }; FRadioButtonGroupClass.prototype.setLabelPlacement = function (pos) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setLabelPlacement(pos); i++; } }; FRadioButtonGroupClass.prototype.setStyleProperty = function (propName, value, isGlobal) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setStyleProperty(propName, value, isGlobal); i++; } }; FRadioButtonGroupClass.prototype.addListener = function () { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].addListener(); i++; } }; FRadioButtonGroupClass.prototype.applyChanges = function () { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].applyChanges(); i++; } }; FRadioButtonGroupClass.prototype.removeListener = function (component) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].removeListener(component); i++; } }; FRadioButtonClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 3); }; FRadioButtonClass.prototype.myOnKillFocus = function () { Key.removeListener(this.keyListener); this.focused = false; this.focusRect.removeMovieClip(); this._parent[this.groupName].foobar = 0; }; FRadioButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this._parent[this.groupName].getValue() == undefined)) { if (this._parent[this.groupName].radioInstances[0] == this) { this.setTabState(true); } } if ((Key.getCode() == 40) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var i = this.foobar; while (i < this._parent[this.groupName].radioInstances.length) { var inc = (i + 1); if (this._parent[this.groupName].radioInstances[inc].getEnabled()) { this._parent[this.groupName].radioInstances[inc].setTabState(true); return(undefined); } i++; } } if ((Key.getCode() == 38) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var i = this.foobar; while (i >= 0) { var inc = (i - 1); if (this._parent[this.groupName].radioInstances[inc].getEnabled()) { this._parent[this.groupName].radioInstances[inc].setTabState(true); return(undefined); } i--; } } }; FRadioButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_RADIOBUTTON); }; FRadioButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FRadioButtonClass.prototype.get_accState = function (childId) { if (this.master.getState()) { return(this.master.STATE_SYSTEM_SELECTED); } return(0); }; FRadioButtonClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getState()) { return("UnCheck"); } return("Check"); }; FRadioButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 44 MovieClip Frame 30
gotoAndPlay (1);
Symbol 53 Button
on (release) { gotoAndPlay (9); }
Symbol 72 Button
on (release) { gotoAndPlay (10); }
Symbol 77 Button
on (release) { function countItemsAround(x, y, item) { itemsAround = 0; if (((_root.field[(_root.fwidth * (y - 1)) + (x - 1)] == item) && (x >= 1)) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * (y - 1)) + x] == item) && (y >= 1)) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y - 1)) + (x + 1)] == item) && (x < (_root.fwidth - 1))) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * y) + (x - 1)] == item) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * y) + (x + 1)] == item) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y + 1)) + (x - 1)] == item) && (y < (_root.fheight - 1))) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.field[(_root.fwidth * (y + 1)) + x] == item) && (y < (_root.fheight - 1))) { itemsAround = itemsAround + 1; } if (((_root.field[(_root.fwidth * (y + 1)) + (x + 1)] == item) && (y < (_root.fheight - 1))) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } return(itemsAround); } function countMarksAround(x, y) { itemsAround = 0; if (((_root.marks[(_root.fwidth * (y - 1)) + (x - 1)] == 1) && (x >= 1)) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * (y - 1)) + x] == 1) && (y >= 1)) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y - 1)) + (x + 1)] == 1) && (x < (_root.fwidth - 1))) && (y >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * y) + (x - 1)] == 1) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * y) + (x + 1)] == 1) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y + 1)) + (x - 1)] == 1) && (y < (_root.fheight - 1))) && (x >= 1)) { itemsAround = itemsAround + 1; } if ((_root.marks[(_root.fwidth * (y + 1)) + x] == 1) && (y < (_root.fheight - 1))) { itemsAround = itemsAround + 1; } if (((_root.marks[(_root.fwidth * (y + 1)) + (x + 1)] == 1) && (y < (_root.fheight - 1))) && (x < (_root.fwidth - 1))) { itemsAround = itemsAround + 1; } return(itemsAround); } function showBombs() { _root.mc_smile.gotoAndStop(random(2) + 3); x = 0; while (x < 30) { y = 0; while (y < 16) { fieldValue = _root.field[(y * _root.fwidth) + x]; markedValue = _root.marks[(y * _root.fwidth) + x]; if ((fieldValue == 9) && (markedValue == 0)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Bomb"); } if ((fieldValue != 9) && (markedValue == 1)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("NoBomb"); } y++; } x++; } } function showMarks() { _root.bombs_left = 0; x = 0; while (x < 30) { y = 0; while (y < 16) { fieldValue = _root.field[(y * _root.fwidth) + x]; markedValue = _root.marks[(y * _root.fwidth) + x]; if ((fieldValue == 9) && (markedValue == 0)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Marked"); } y++; } x++; } } function deleteCells() { x = 0; while (x < 30) { y = 0; while (y < 16) { tn = eval ((("_root.cell" + x) + "_") + y); tn.removeMovieClip(); y++; } x++; } } function get_record() { _root.msgwnd._visible = true; } function endGame() { showMarks(); loadVariables ((((((("register.php?t=" + getTimer()) + "&nama=") + _root.playerName) + "&scora=") + _root.elapsed_time) + "&level=") + _root.bombs_amount, this); _root.sensor._visible = false; _root.timerRunning = false; _root.mc_smile.gotoAndStop(2); } function checkForGameEnd() { if ((_root.totalFields - _root.fieldsOpen) == _root.bombs_amount) { endGame(); } } function openField(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 1) { return(undefined); } fieldValue = _root.field[(y * _root.fwidth) + x]; if ((fieldValue >= 1) && (fieldValue <= 8)) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop(fieldValue); _root.open[(y * _root.fwidth) + x] = 1; _root.fieldsOpen = _root.fieldsOpen + 1; checkForGameEnd(); return(undefined); } if (fieldValue == 9) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("HotBomb"); _root.field[(y * _root.fwidth) + x] = 14; _root.sensor._visible = false; _root.timerRunning = false; showBombs(); return(undefined); } if (fieldValue == 13) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Empty"); _root.open[(y * _root.fwidth) + x] = 1; _root.fieldsOpen = _root.fieldsOpen + 1; checkForGameEnd(); if ((x >= 1) && (y >= 1)) { openField(x - 1, y - 1); } if (y >= 1) { openField(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { openField(x + 1, y - 1); } if (x >= 1) { openField(x - 1, y); } if (x < (_root.fwidth - 1)) { openField(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { openField(x - 1, y + 1); } if (y < (_root.fheight - 1)) { openField(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { openField(x + 1, y + 1); } } } function openMultiple(x, y) { if (_root.open[(y * _root.fwidth) + x] != 1) { return(undefined); } fieldValue = _root.field[(y * _root.fwidth) + x]; if (fieldValue == countMarksAround(x, y)) { if ((x >= 1) && (y >= 1)) { openField(x - 1, y - 1); } if (y >= 1) { openField(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { openField(x + 1, y - 1); } if (x >= 1) { openField(x - 1, y); } if (x < (_root.fwidth - 1)) { openField(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { openField(x - 1, y + 1); } if (y < (_root.fheight - 1)) { openField(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { openField(x + 1, y + 1); } } else { unpress(x, y); } } function pressDown(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 0) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Empty"); } } function unpressUp(x, y) { open = _root.open[(y * _root.fwidth) + x]; if (open == 0) { tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Unknown"); } } function press(x, y) { if (_root.multi == false) { pressDown(x, y); } else { if ((x >= 1) && (y >= 1)) { pressDown(x - 1, y - 1); } if (y >= 1) { pressDown(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { pressDown(x + 1, y - 1); } if (x >= 1) { pressDown(x - 1, y); } if (x < (_root.fwidth - 1)) { pressDown(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { pressDown(x - 1, y + 1); } if (y < (_root.fheight - 1)) { pressDown(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { pressDown(x + 1, y + 1); } } } function unpress(x, y) { if (_root.multi == false) { unpressUp(x, y); } else { if ((x >= 1) && (y >= 1)) { unpressUp(x - 1, y - 1); } if (y >= 1) { unpressUp(x, y - 1, false); } if ((x < (_root.fwidth - 1)) && (y >= 1)) { unpressUp(x + 1, y - 1); } if (x >= 1) { unpressUp(x - 1, y); } if (x < (_root.fwidth - 1)) { unpressUp(x + 1, y); } if ((y < (_root.fheight - 1)) && (x >= 1)) { unpressUp(x - 1, y + 1); } if (y < (_root.fheight - 1)) { unpressUp(x, y + 1); } if ((y < (_root.fheight - 1)) && (x < (_root.fwidth - 1))) { unpressUp(x + 1, y + 1); } } } function mark(x, y) { if (_root.marks[(y * _root.fwidth) + x] != 1) { if (_root.open[(y * _root.fwidth) + x] == 0) { _root.marks[(y * _root.fwidth) + x] = 1; tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Marked"); _root.open[(y * _root.fwidth) + x] = 1; _root.bombs_left = _root.bombs_left - 1; } } else { _root.marks[(y * _root.fwidth) + x] = 0; tn = eval ((("_root.cell" + x) + "_") + y); tn.gotoAndStop("Unknown"); _root.open[(y * _root.fwidth) + x] = 0; _root.bombs_left = _root.bombs_left + 1; } } _root.sensor._visible = false; _root.timerRunning = false; deleteCells(); gotoAndStop (5); }
Symbol 81 Button
on (release) { getURL ("http://www.rastyle.com/", "_blank"); }
Symbol 86 MovieClip Frame 1
a = random(15); if (a == 1) { gotoAndPlay (10); }
Symbol 86 MovieClip Frame 4
gotoAndPlay (1);
Symbol 86 MovieClip Frame 14
gotoAndPlay (1);
Symbol 90 MovieClip Frame 1
stop();
Symbol 90 MovieClip Frame 2
stop();
Symbol 90 MovieClip Frame 3
stop();
Symbol 90 MovieClip Frame 4
stop();
Symbol 104 MovieClip Frame 1
stop();
Symbol 104 MovieClip Frame 2
stop();
Symbol 104 MovieClip Frame 3
stop();
Symbol 104 MovieClip Frame 4
stop();
Symbol 104 MovieClip Frame 5
stop();
Symbol 104 MovieClip Frame 6
stop();
Symbol 104 MovieClip Frame 7
stop();
Symbol 104 MovieClip Frame 8
stop();
Symbol 104 MovieClip Frame 9
stop();
Symbol 104 MovieClip Frame 10
stop();
Symbol 104 MovieClip Frame 11
stop();
Symbol 104 MovieClip Frame 12
stop();
Symbol 104 MovieClip Frame 13
stop();
Symbol 104 MovieClip Frame 14
stop();

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClip [frb_hitArea]Uses:1
Symbol 3 FontUsed by:4 39 40 41 42 43 66 67 82
Symbol 4 EditableTextUses:3Used by:5
Symbol 5 MovieClip [FLabelSymbol]Uses:4
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:14
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:14
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:14
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:14
Symbol 14 MovieClipUses:7 9 11 13Used by:29
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:17
Symbol 17 MovieClipUses:16Used by:29
Symbol 18 GraphicUsed by:19 21
Symbol 19 MovieClipUses:18Used by:20
Symbol 20 MovieClipUses:19Used by:29
Symbol 21 MovieClipUses:18Used by:22
Symbol 22 MovieClipUses:21Used by:29
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClipUses:24Used by:29
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:28
Symbol 28 MovieClipUses:27Used by:29
Symbol 29 MovieClip [frb_states]Uses:14 17 20 22 25 28
Symbol 30 MovieClip [FUIComponentSymbol]
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:34
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClip [FBoundingBoxSymbol]Uses:32 33Used by:37
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:37
Symbol 37 MovieClip [FRadioButtonSymbol]Uses:34 36Used by:Timeline
Symbol 38 GraphicUsed by:44 104
Symbol 39 EditableTextUses:3Used by:44
Symbol 40 EditableTextUses:3Used by:44
Symbol 41 EditableTextUses:3Used by:44
Symbol 42 EditableTextUses:3Used by:44
Symbol 43 EditableTextUses:3Used by:44
Symbol 44 MovieClipUses:38 39 40 41 42 43Used by:Timeline
Symbol 45 GraphicUsed by:Timeline
Symbol 46 GraphicUsed by:Timeline
Symbol 47 GraphicUsed by:53
Symbol 48 GraphicUsed by:53 72 77 81
Symbol 49 FontUsed by:50 51 61 63 69 70 74 75 79 80
Symbol 50 TextUses:49Used by:53
Symbol 51 TextUses:49Used by:53
Symbol 52 GraphicUsed by:53
Symbol 53 ButtonUses:47 48 50 51 52Used by:Timeline
Symbol 54 BitmapUsed by:55
Symbol 55 GraphicUses:54Used by:56
Symbol 56 MovieClipUses:55Used by:Timeline
Symbol 57 FontUsed by:58 59 60 62 65 83
Symbol 58 TextUses:57Used by:Timeline
Symbol 59 EditableTextUses:57Used by:Timeline
Symbol 60 TextUses:57Used by:Timeline
Symbol 61 TextUses:49Used by:Timeline
Symbol 62 EditableTextUses:57Used by:Timeline
Symbol 63 EditableTextUses:49Used by:Timeline
Symbol 64 GraphicUsed by:Timeline
Symbol 65 EditableTextUses:57Used by:Timeline
Symbol 66 EditableTextUses:3Used by:Timeline
Symbol 67 EditableTextUses:3Used by:Timeline
Symbol 68 GraphicUsed by:72
Symbol 69 TextUses:49Used by:72
Symbol 70 TextUses:49Used by:72
Symbol 71 GraphicUsed by:72
Symbol 72 ButtonUses:68 48 69 70 71Used by:Timeline
Symbol 73 GraphicUsed by:77
Symbol 74 TextUses:49Used by:77
Symbol 75 TextUses:49Used by:77
Symbol 76 GraphicUsed by:77
Symbol 77 ButtonUses:73 48 74 75 76Used by:Timeline
Symbol 78 GraphicUsed by:81
Symbol 79 TextUses:49Used by:81
Symbol 80 TextUses:49Used by:81
Symbol 81 ButtonUses:78 79 48 80Used by:Timeline
Symbol 82 EditableTextUses:3Used by:Timeline
Symbol 83 EditableTextUses:57Used by:Timeline
Symbol 84 GraphicUsed by:86
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:84 85Used by:90
Symbol 87 GraphicUsed by:90
Symbol 88 GraphicUsed by:90
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:86 87 88 89Used by:Timeline
Symbol 91 GraphicUsed by:104
Symbol 92 FontUsed by:93 94 95 96 97 98 99 100
Symbol 93 TextUses:92Used by:104
Symbol 94 TextUses:92Used by:104
Symbol 95 TextUses:92Used by:104
Symbol 96 TextUses:92Used by:104
Symbol 97 TextUses:92Used by:104
Symbol 98 TextUses:92Used by:104
Symbol 99 TextUses:92Used by:104
Symbol 100 TextUses:92Used by:104
Symbol 101 GraphicUsed by:104
Symbol 102 GraphicUsed by:104
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:91 93 94 95 96 97 98 99 100 38 101 102 103Used by:Timeline
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:Timeline

Instance Names

"level_eazy"Frame 5Symbol 37 MovieClip [FRadioButtonSymbol]
"level_medium"Frame 5Symbol 37 MovieClip [FRadioButtonSymbol]
"level_tough"Frame 5Symbol 37 MovieClip [FRadioButtonSymbol]
"bombs_left"Frame 10Symbol 65 EditableText
"elapsed_time"Frame 10Symbol 83 EditableText
"mc_smile"Frame 10Symbol 90 MovieClip
"cell"Frame 10Symbol 104 MovieClip
"sensor"Frame 10Symbol 106 MovieClip
"labelField"Symbol 5 MovieClip [FLabelSymbol] Frame 1Symbol 4 EditableText
"darkshadow_mc"Symbol 14 MovieClip Frame 1Symbol 7 MovieClip
"shadow_mc"Symbol 14 MovieClip Frame 1Symbol 9 MovieClip
"highlight_mc"Symbol 14 MovieClip Frame 1Symbol 11 MovieClip
"highlight3D_mc"Symbol 14 MovieClip Frame 1Symbol 13 MovieClip
"background_mc"Symbol 17 MovieClip Frame 1Symbol 16 MovieClip
"background_mc"Symbol 20 MovieClip Frame 1Symbol 19 MovieClip
"background_mc"Symbol 22 MovieClip Frame 1Symbol 21 MovieClip
"disabled_mc"Symbol 25 MovieClip Frame 1Symbol 24 MovieClip
"dot_mc"Symbol 28 MovieClip Frame 1Symbol 27 MovieClip
"frb_frame_mc"Symbol 29 MovieClip [frb_states] Frame 1Symbol 14 MovieClip
"boundingBox"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 32 MovieClip
"boundingBox2"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 32 MovieClip
"boundingBox_mc"Symbol 37 MovieClip [FRadioButtonSymbol] Frame 1Symbol 34 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 37 MovieClip [FRadioButtonSymbol] Frame 1Symbol 36 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$nO$KwmSuBnff.abdI2aQYJB/1."
ExportAssets (56)Timeline Frame 1Symbol 2 as "frb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 5 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 29 as "frb_states"
ExportAssets (56)Timeline Frame 1Symbol 30 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 34 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 5Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 5Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 5Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 6Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 6Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 6Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 7Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 7Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 7Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 8Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 8Symbol 37 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 8Symbol 37 as "FRadioButtonSymbol"

Labels

"splash"Frame 5
"start"Frame 9
"InitGame"Frame 10
"playing"Frame 11
"Symbol_32"Symbol 5 MovieClip [FLabelSymbol] Frame 1
"Symbol_22"Symbol 7 MovieClip Frame 1
"Symbol_23"Symbol 9 MovieClip Frame 1
"unselectedEnabled"Symbol 29 MovieClip [frb_states] Frame 1
"press"Symbol 29 MovieClip [frb_states] Frame 2
"unselectedDisabled"Symbol 29 MovieClip [frb_states] Frame 3
"selectedDisabled"Symbol 29 MovieClip [frb_states] Frame 4
"selectedEnabled"Symbol 29 MovieClip [frb_states] Frame 5
"Symbol_36"Symbol 30 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 2
"start"Symbol 86 MovieClip Frame 1
"ef1"Symbol 86 MovieClip Frame 10
"Bomb"Symbol 104 MovieClip Frame 9
"NoBomb"Symbol 104 MovieClip Frame 10
"Marked"Symbol 104 MovieClip Frame 11
"Unknown"Symbol 104 MovieClip Frame 12
"Empty"Symbol 104 MovieClip Frame 13
"HotBomb"Symbol 104 MovieClip Frame 14

Dynamic Text Variables

playerNameSymbol 63 EditableText"anonymous"
bombs_leftSymbol 65 EditableText"999"
elapsed_timeSymbol 83 EditableText"999"




http://swfchan.com/6/26850/info.shtml
Created: 22/5 -2019 05:31:50 Last modified: 22/5 -2019 05:31:50 Server time: 03/05 -2024 00:40:57