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

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

taikyoku.swf

This is the info page for
Flash #17764

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

36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10

9  8  7  6  5  4  3  2  1










一〇
一一
一二
一三
一四
一五
一六
一七
一八
一九
二〇
二一
二二
二三
二四
二五
二六
二七
二八
二九
三〇
三一
三二
三三
三四
三五
三六









成りますか?→

成る

成らず

×

 時鳥

 牛

 鳥

 犬

0手
▲先手番

一手戻る(残り0手)

★☆は生駒と見なします。
成駒の最終手は■□にしてください。

--記録開始--

駒を並べています。。。

後手

先手

ActionScript [AS1/AS2]

Instance of Symbol 46 MovieClip [FScrollBarSymbol] in Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = "record"; horizontal = false; }
Instance of Symbol 134 MovieClip [FComboBoxSymbol] in Frame 1
//component parameters onClipEvent (initialize) { editable = true; labels = []; labels[0] = 10; labels[1] = 20; labels[2] = 50; labels[3] = 100; labels[4] = "ALL"; data = []; data[0] = 10; data[1] = 20; data[2] = 50; data[3] = 100; data[4] = 0; rowCount = 8; changeHandler = ""; }
Frame 2
function RestHist() { return(History.length); } function SetLast(i, j) { LastHand._x = board_x + (j * piece_x); LastHand._y = (board_y + (i * piece_y)) + 1; LHi = i; LHj = j; } function EndTurn() { NowTurn++; SetLast(LHi, LHj); History.push(tmpHist); if (History.length > MAXHIST) { History.shift(); } UndoButtonText.text = ("\u4E00\u624B\u623B\u308B(\u6B8B\u308A" + RestHist()) + "\u624B)"; tmpHist = new Array(); if (curPlayer == 0) { curPlayer = 1; tturn = "\u25B3\u5F8C\u624B\u756A"; } else { curPlayer = 0; tturn = "\u25B2\u5148\u624B\u756A"; } TurnText.text = (NowTurn + "\u624B\n") + tturn; } function GoNext() { } function SetPieceName(Piece, name, nari, player) { if ((name == "0") || (player == -1)) { Piece._visible = false; } else { MsetObj.Piece._visible = true; var tmpname = name; switch (name) { case "\u4ED9\u9DE6" : Piece.gotoAndStop(2); break; case "\u53E4\u6642\u9CE5" : Piece.gotoAndStop(3); break; case "\u821F\u725B" : Piece.gotoAndStop(4); break; case "\u82A6\u9CE5" : Piece.gotoAndStop(5); break; case "\u904A\u6BCD" : Piece.gotoAndStop(6); break; case "\u6B69\u632F" : Piece.gotoAndStop(7); break; case "\u5947\u72AC\u53F3" : case "\u5947\u72AC\u5DE6" : Piece.gotoAndStop(8); break; case "\u56DB\u5929\u738B" : Piece.gotoAndStop(9); break; case "\u53F3\u9244\u8ECA" : Piece.gotoAndStop(10); break; case "\u5DE6\u9244\u8ECA" : Piece.gotoAndStop(11); break; case "\u72AC" : Piece.gotoAndStop(12); break; case "\u3068\u91D1" : Piece.gotoAndStop(13); break; case "\u5C71\u9DF2\u53F3" : case "\u5C71\u9DF2\u5DE6" : tmpname = "\u5C71\u9DF2"; default : Piece.gotoAndStop(1); tmp1 = tmpname.slice(0, 1); tmp2 = tmpname.slice(1); Piece.NameText.text = (tmp1 + newline) + tmp2; } } tmpFormat = new TextFormat(); if (nari == 0) { tmpFormat.color = 0; } else { tmpFormat.color = 16711680 /* 0xFF0000 */; } Piece.NameText.SetTextFormat(tmpFormat); if (player == 1) { Piece._rotation = 180; } else { Piece._rotation = 0; } } function MasuMake(ipos, jpos) { Masu.duplicateMovieClip((("MObj_" + ipos) + "_") + jpos, (ipos * 36) + jpos); MsetObj = eval ((("MObj_" + ipos) + "_") + jpos); MsetObj._x = board_x + (jpos * piece_x); MsetObj._y = (board_y + (ipos * piece_y)) + 1; } function UnHisMasuSet(iMasu, jMasu, name, nari, player) { MsetObj = eval ((("MObj_" + iMasu) + "_") + jMasu); MsetObj.name = name; MsetObj.nari = nari; MsetObj.player = player; SetPieceName(MsetObj.Piece, name, nari, player); } function MasuSet(iMasu, jMasu, name, nari, player) { MsetObj = eval ((("MObj_" + iMasu) + "_") + jMasu); tmpHist.push(iMasu, jMasu, MsetObj.name, MsetObj.nari, MsetObj.player); MsetObj.name = name; MsetObj.nari = nari; MsetObj.player = player; SetPieceName(MsetObj.Piece, name, nari, player); } function YtoIPos(ymouse) { return(Math.floor(((ymouse - board_y) + 13) / 27)); } function XtoJPos(xmouse) { return(Math.floor(((xmouse - board_x) + 13) / 27)); } function PText(player) { if (player == 0) { return("\u25B2"); } if (player == 1) { return("\u25B3"); } return(undefined); } function PosText(ipos, jpos) { var rtext = ""; switch (Math.floor((36 - jpos) / 10)) { case 0 : break; case 1 : rtext = rtext + "\uFF11"; break; case 2 : rtext = rtext + "\uFF12"; break; case 3 : rtext = rtext + "\uFF13"; break; case 4 : rtext = rtext + "\uFF14"; break; case 5 : rtext = rtext + "\uFF15"; break; case 6 : rtext = rtext + "\uFF16"; break; case 7 : rtext = rtext + "\uFF17"; break; case 8 : rtext = rtext + "\uFF18"; break; case 9 : rtext = rtext + "\uFF19"; break; } switch ((36 - jpos) % 10) { case 0 : rtext = rtext + "\uFF10"; break; case 1 : rtext = rtext + "\uFF11"; break; case 2 : rtext = rtext + "\uFF12"; break; case 3 : rtext = rtext + "\uFF13"; break; case 4 : rtext = rtext + "\uFF14"; break; case 5 : rtext = rtext + "\uFF15"; break; case 6 : rtext = rtext + "\uFF16"; break; case 7 : rtext = rtext + "\uFF17"; break; case 8 : rtext = rtext + "\uFF18"; break; case 9 : rtext = rtext + "\uFF19"; break; } switch (Math.floor((ipos + 1) / 10)) { case 0 : break; case 1 : rtext = rtext + "\u4E00"; break; case 2 : rtext = rtext + "\u4E8C"; break; case 3 : rtext = rtext + "\u4E09"; break; case 4 : rtext = rtext + "\u56DB"; break; case 5 : rtext = rtext + "\u4E94"; break; case 6 : rtext = rtext + "\u516D"; break; case 7 : rtext = rtext + "\u4E03"; break; case 8 : rtext = rtext + "\u516B"; break; case 9 : rtext = rtext + "\u4E5D"; break; } switch ((ipos + 1) % 10) { case 0 : rtext = rtext + "\u3007"; break; case 1 : rtext = rtext + "\u4E00"; break; case 2 : rtext = rtext + "\u4E8C"; break; case 3 : rtext = rtext + "\u4E09"; break; case 4 : rtext = rtext + "\u56DB"; break; case 5 : rtext = rtext + "\u4E94"; break; case 6 : rtext = rtext + "\u516D"; break; case 7 : rtext = rtext + "\u4E03"; break; case 8 : rtext = rtext + "\u516B"; break; case 9 : rtext = rtext + "\u4E5D"; break; } return(rtext); } function TextPosi(str) { n = 0; f = 0; i = 0; while (i < str.length) { switch (str.charAt(i)) { case "\u3007" : n = n * 10; n = n + 0; f = 1; break; case "\u4E00" : n = n * 10; n = n + 1; f = 1; break; case "\u4E8C" : n = n * 10; n = n + 2; f = 1; break; case "\u4E09" : n = n * 10; n = n + 3; f = 1; break; case "\u56DB" : n = n * 10; n = n + 4; f = 1; break; case "\u4E94" : n = n * 10; n = n + 5; f = 1; break; case "\u516D" : n = n * 10; n = n + 6; f = 1; break; case "\u4E03" : n = n * 10; n = n + 7; f = 1; break; case "\u516B" : n = n * 10; n = n + 8; f = 1; break; case "\u4E5D" : n = n * 10; n = n + 9; f = 1; break; default : if (f == 0) { } else { return(n); } } i++; } eturn - 100; } function TextPosj(str) { n = 0; f = 0; i = 0; while (i < str.length) { switch (str.charAt(i)) { case "\uFF10" : n = n * 10; n = n + 0; f = 1; break; case "\uFF11" : n = n * 10; n = n + 1; f = 1; break; case "\uFF12" : n = n * 10; n = n + 2; f = 1; break; case "\uFF13" : n = n * 10; n = n + 3; f = 1; break; case "\uFF14" : n = n * 10; n = n + 4; f = 1; break; case "\uFF15" : n = n * 10; n = n + 5; f = 1; break; case "\uFF16" : n = n * 10; n = n + 6; f = 1; break; case "\uFF17" : n = n * 10; n = n + 7; f = 1; break; case "\uFF18" : n = n * 10; n = n + 8; f = 1; break; case "\uFF19" : n = n * 10; n = n + 9; f = 1; break; default : if (f == 0) { } else { return(n); } } i++; } return(-100); } function AddText(str) { record.text = record.text + str; record.scroll = record.maxscroll; } function UnDo() { if (History.length > 0) { tHist = History.pop(); i = (tHist.length / 5) - 1; while (i >= 0) { UnHisMasuSet(tHist[i * 5], tHist[(i * 5) + 1], tHist[(i * 5) + 2], tHist[(i * 5) + 3], tHist[(i * 5) + 4]); i--; } tmp1 = record.text.lastIndexOf("\u25B3"); tmp2 = record.text.lastIndexOf("\u25B2"); tmp = Math.max(tmp1, tmp2); tmpmin = Math.min(tmp1, tmp2); record.text = record.text.slice(0, tmp - 1); SetLast(TextPosi(record.text.slice(tmpmin)) - 1, 36 - TextPosj(record.text.slice(tmpmin))); UndoButtonText.text = ("\u4E00\u624B\u623B\u308B(\u6B8B\u308A" + RestHist()) + "\u624B)"; NowTurn--; if (curPlayer == 0) { curPlayer = 1; tturn = "\u25B3\u5F8C\u624B\u756A"; } else { curPlayer = 0; tturn = "\u25B2\u5148\u624B\u756A"; } TurnText.text = (NowTurn + "\u624B\n") + tturn; } } function TxtToBoard(str, i, j) { name = str.slice(1, 3); switch (name) { case "\u56DB\u738B" : name = "\u56DB\u5929\u738B"; break; case "\u53F3\u9244" : name = "\u53F3\u9244\u8ECA"; break; case "\u5DE6\u9244" : name = "\u5DE6\u9244\u8ECA"; break; case "\u53E4\u6642" : name = "\u53E4\u6642\u9CE5"; break; case "\u5947\u53F3" : name = "\u5947\u72AC\u53F3"; break; case "\u5947\u5DE6" : name = "\u5947\u72AC\u5DE6"; break; case "\u5C71\u53F3" : name = "\u5C71\u9DF2\u53F3"; break; case "\u5C71\u5DE6" : name = "\u5C71\u9DF2\u5DE6"; break; case "\u72AC\uFF3F" : name = "\u72AC"; break; case "\u53F3\u5468" : name = "\u53F3\u9D70"; break; case "\u3068!" : name = "\u3068\u91D1"; break; case "!\u3068" : name = "\u3068\u91D1"; break; case "\u4E2A\uFF3F" : name = "\u3068\u91D1"; break; case "\u4E2A\u91D1" : name = "\u3068\u91D1"; break; case "\u3068\uFF3F" : name = "\u3068\u91D1"; break; case "\u920E\u884C" : name = "\u9264\u884C"; break; case "\u51C6\u5DDD" : name = "\u6DEE\u5DDD"; break; case "\u51C6\u9D8F" : name = "\u6DEE\u9D8F"; } switch (str.charAt(0)) { case "\u2605" : nari = 0; player = 0; curPlayer = 1; SetLast(i, j); break; case "\u25A0" : nari = 1; player = 0; curPlayer = 1; SetLast(i, j); break; case "\u25B2" : nari = 0; player = 0; break; case "\u25BC" : nari = 0; player = 0; break; case "\u25C6" : nari = 1; player = 0; break; case "\u2606" : nari = 0; player = 1; curPlayer = 0; SetLast(i, j); break; case "\u25A1" : nari = 1; player = 1; curPlayer = 0; SetLast(i, j); break; case "\u25B3" : tnari = 0; player = 1; break; case "\u25BD" : nari = 0; player = 1; break; case "\u25C7" : nari = 1; player = 1; break; case "\uFF3F" : nari = 0; player = -1; name = "0"; } UnHisMasuSet(i, j, name, nari, player); } function Textin(str) { mi = 0; error = ""; LHi = -10; LHj = -10; ar = str.split("\u2502"); i = 0; while (i < ar.length) { switch (ar[i].charAt(0)) { case "\u2605" : case "\u25A0" : case "\u25B2" : case "\u25BC" : case "\u25C6" : case "\u2606" : case "\u25A1" : case "\u25B3" : case "\u25BD" : case "\u25C7" : case "\uFF3F" : TxtToBoard(ar[i], Math.floor(mi / 36), mi % 36); mi++; } i++; } History = new Array(); Hcount = new Array(); NowTurn = 0; if (curPlayer == 0) { tturn = "\u25B2\u5148\u624B\u756A"; } else { tturn = "\u25B3\u5F8C\u624B\u756A"; } TurnText.text = (NowTurn + "\u624B\n") + tturn; record.text = ""; if (mi == 1296) { return(true); } return(false); } function Textout() { str = "\u250C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u2510\n"; i = 0; while (i < 36) { j = 0; while (j < 36) { str = str + "\u2502"; MsetObj = eval ((("MObj_" + i) + "_") + j); if ((i == LHi) && (j == LHj)) { switch (MsetObj.player) { case 0 : switch (MsetObj.nari) { case 0 : str = str + "\u2605"; break; case 1 : str = str + "\u25A0"; } break; case 1 : switch (MsetObj.nari) { case 0 : str = str + "\u2606"; break; case 1 : str = str + "\u25A1"; } break; case -1 : } } else { switch (MsetObj.player) { case 0 : switch (MsetObj.nari) { case 0 : str = str + "\u25B2"; break; case 1 : str = str + "\u25C6"; } break; case 1 : switch (MsetObj.nari) { case 0 : str = str + "\u25BD"; break; case 1 : str = str + "\u25C7"; } break; case -1 : } } switch (MsetObj.name) { case "\u56DB\u5929\u738B" : tname = "\u56DB\u738B"; break; case "\u53F3\u9244\u8ECA" : tname = "\u53F3\u9244"; break; case "\u5DE6\u9244\u8ECA" : tname = "\u5DE6\u9244"; break; case "\u53E4\u6642\u9CE5" : tname = "\u53E4\u6642"; break; case "\u5947\u72AC\u53F3" : tname = "\u5947\u53F3"; break; case "\u5947\u72AC\u5DE6" : tname = "\u5947\u5DE6"; break; case "\u5C71\u9DF2\u53F3" : tname = "\u5C71\u53F3"; break; case "\u5C71\u9DF2\u5DE6" : tname = "\u5C71\u5DE6"; break; case "\u72AC" : tname = "\u72AC\uFF3F"; break; case "\u53F3\u9D70" : tname = "\u53F3\u5468"; break; case "\u3068\u91D1" : tname = "\u4E2A\uFF3F"; break; case "0" : tname = "\uFF3F\uFF3F\uFF3F"; break; default : tname = MsetObj.name; } str = str + tname; if (j == 35) { str = str + "\u2502\n"; if (i != 35) { str = str + "\u251C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u253C\u2500\u2500\u2500\u2524\n"; } } j++; } i++; } str = str + "\u2514\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2518\n"; return(str); } PieceData = new array(); PieceData["0"] = {nari:"0", move:[0, 0, 0, 0, 0, 0, 0, 0, 0]}; PieceData["\u7389\u5C06"] = {nari:"0", move:[2, 2, 2, 2, 2, 2, 2, 2, 0]}; PieceData["\u738B\u5C06"] = {nari:"0", move:[2, 2, 2, 2, 2, 2, 2, 2, 0]}; PieceData["\u592A\u5B50"] = {nari:"\u738B\u5C06", move:[1, 1, 1, 1, 1, 1, 1, 1, 0]}; PieceData["\u91D1\u5C06"] = {nari:"\u98DB\u8ECA", move:[1, 1, 1, 1, 1, 0, 0, 1, 0]}; PieceData["\u53F3\u5C06"] = {nari:"\u53F3\u8ECD", move:[1, 1, 1, 1, 1, 1, 1, 1, 0]}; PieceData["\u5DE6\u5C06"] = {nari:"\u5DE6\u8ECD", move:[1, 1, 1, 1, 1, 1, 1, 1, 0]}; PieceData["\u5F8C\u65D7"] = {nari:"\u4E2D\u65D7", move:[99, 2, 2, 99, 99, 2, 2, 99, 0]}; PieceData["\u5954\u738B"] = {nari:"\u5927\u5C06", move:[99, 99, 99, 99, 99, 99, 99, 99, 0]}; PieceData["\u5954\u734F"] = {nari:"\u5954\u738B", move:[99, 99, 99, 5, 5, 99, 99, 99, 0]}; PieceData["\u9CE9\u69C3"] = {nari:"0", move:[2, 121, 121, 2, 2, 121, 121, 2, 0]}; PieceData["\u9CE9\u76E4"] = {nari:"0", move:[2, 99, 99, 2, 2, 99, 99, 2, 0]}; PieceData["\u5730\u9F8D"] = {nari:"\u96E8\u9F8D", move:[2, 1, 1, 0, 0, 99, 99, 1, 0]}; PieceData["\u5954\u9B3C"] = {nari:"\u5954\u738B", move:[5, 99, 99, 99, 99, 99, 99, 5, 0]}; PieceData["\u8D70\u99AC"] = {nari:"\u5954\u9B3C", move:[99, 99, 99, 0, 0, 62, 62, 1, 0]}; PieceData["\u7363\u66F9"] = {nari:"\u7363\u540F", move:[2, 2, 2, 2, 2, 2, 2, 0, 0]}; PieceData["\u5929\u72D7"] = {nari:"0", move:[0, 124, 124, 0, 0, 124, 124, 0, 0]}; PieceData["\u5C71\u9DF2\u53F3"] = {nari:"\u98DB\u9DF2", move:[99, 99, 102, 99, 99, 2, 102, 99, 0]}; PieceData["\u5C71\u9DF2\u5DE6"] = {nari:"\u98DB\u9DF2", move:[99, 102, 99, 99, 99, 102, 2, 99, 0]}; PieceData["\u706B\u9B3C"] = {nari:"\u5954\u706B", move:[2, 99, 99, 99, 99, 99, 99, 2, 0]}; PieceData["\u9BE8\u9BE2"] = {nari:"\u5927\u9BE8", move:[99, 0, 0, 0, 0, 99, 99, 99, 0]}; PieceData["\u8D70\u514E"] = {nari:"\u96A0\u72D0", move:[99, 99, 99, 0, 0, 1, 1, 1, 0]}; PieceData["\u767D\u864E"] = {nari:"\u795E\u864E", move:[2, 99, 0, 99, 99, 0, 0, 2, 0]}; PieceData["\u7384\u6B66"] = {nari:"\u795E\u4E80", move:[1, 1, 99, 1, 1, 99, 1, 1, 0]}; PieceData["\u9999\u8ECA"] = {nari:"\u767D\u99D2", move:[99, 0, 0, 0, 0, 0, 0, 0, 0]}; PieceData["\u8FD1\u738B"] = {nari:"\u524D\u65D7", move:[1, 1, 1, 1, 1, 1, 1, 0, 0]}; PieceData["\u9154\u8C61"] = {nari:"\u592A\u5B50", move:[1, 1, 1, 1, 1, 1, 1, 0, 0]}; PieceData["\u9280\u5C06"] = {nari:"\u7AEA\u884C", move:[1, 1, 1, 0, 0, 1, 1, 0, 0]}; PieceData["\u91D1\u525B"] = {nari:"\u56DB\u5929", move:[3, 0, 0, 3, 3, 0, 0, 3, 0]}; PieceData["\u529B\u58EB"] = {nari:"\u56DB\u5929", move:[0, 3, 3, 0, 0, 3, 3, 0, 0]}; PieceData["\u591C\u5204"] = {nari:"\u56DB\u5929", move:[0, 1, 1, 3, 3, 0, 0, 1, 0]}; PieceData["\u7F85\u5239"] = {nari:"\u56DB\u5929", move:[0, 3, 3, 1, 1, 0, 0, 1, 0]}; PieceData["\u8D70\u718A"] = {nari:"\u5954\u718A", move:[99, 0, 0, 2, 2, 0, 0, 99, 0]}; PieceData["\u8D70\u864E"] = {nari:"\u5954\u864E", move:[99, 0, 0, 2, 2, 0, 0, 99, 0]}; PieceData["\u5927\u9CE9"] = {nari:"\u9CE9\u69C3", move:[3, 99, 99, 3, 3, 99, 99, 3, 0]}; PieceData["\u6A2A\u86C7"] = {nari:"\u5927\u9C57", move:[3, 0, 0, 99, 99, 0, 0, 1, 0]}; PieceData["\u8D70\u86C7"] = {nari:"\u5954\u86C7", move:[99, 0, 0, 1, 1, 0, 0, 99, 0]}; PieceData["\u8D70\u72D7"] = {nari:"\u5954\u8C79", move:[99, 0, 0, 1, 1, 0, 0, 99, 0]}; PieceData["\u5C71\u9E7F"] = {nari:"\u5927\u9E7F", move:[1, 3, 3, 2, 2, 0, 0, 4, 0]}; PieceData["\u68EE\u9B3C"] = {nari:"\u96F7\u8D70", move:[3, 99, 99, 3, 3, 0, 0, 3, 0]}; PieceData["\u96E8\u9F8D"] = {nari:"\u5927\u9F8D", move:[1, 1, 1, 99, 99, 99, 99, 99, 0]}; PieceData["\u79BD\u540F"] = {nari:"\u79BD\u9CE5", move:[2, 3, 3, 2, 2, 3, 3, 0, 0]}; PieceData["\u98DB\u71D5"] = {nari:"\u98DB\u8ECA", move:[0, 99, 99, 0, 0, 0, 0, 1, 0]}; PieceData["\u5C71\u9CE9"] = {nari:"\u5927\u9CE9", move:[0, 5, 5, 1, 1, 0, 0, 1, 0]}; PieceData["\u767D\u8C61"] = {nari:"\u8C61\u738B", move:[2, 2, 2, 2, 2, 2, 2, 2, 0]}; PieceData["\u9999\u8C61"] = {nari:"\u8C61\u738B", move:[2, 2, 2, 2, 2, 2, 2, 2, 0]}; PieceData["\u53CD\u8ECA"] = {nari:"\u9BE8\u9BE2", move:[99, 0, 0, 0, 0, 0, 0, 99, 0]}; PieceData["\u9CF3\u5E2B"] = {nari:"0", move:[99, 103, 103, 3, 3, 99, 99, 99, 0]}; PieceData["\u9E9F\u5E2B"] = {nari:"0", move:[103, 99, 99, 3, 3, 99, 99, 103, 0]}; PieceData["\u9285\u5C06"] = {nari:"\u6A2A\u884C", move:[1, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u706B\u9F8D"] = {nari:"\u9E9F\u5E2B", move:[99, 4, 4, 99, 99, 2, 2, 99, 0]}; PieceData["\u6C34\u9F8D"] = {nari:"\u9CF3\u5E2B", move:[99, 2, 2, 99, 99, 4, 4, 99, 0]}; PieceData["\u5B54\u96C0"] = {nari:"\u5929\u72D7", move:[0, 124, 124, 0, 0, 2, 2, 0, 0]}; PieceData["\u53E4\u9D44"] = {nari:"\u5929\u72D7", move:[0, 2, 2, 1, 1, 2, 2, 0, 0]}; PieceData["\u884C\u9CE5"] = {nari:"\u5954\u9B3C", move:[2, 1, 1, 1, 1, 1, 1, 0, 0]}; PieceData["\u5954\u72D7"] = {nari:"\u5954\u72AC", move:[99, 99, 99, 2, 2, 1, 1, 99, 0]}; PieceData["\u98A8\u9F8D"] = {nari:"\u5954\u9F8D", move:[0, 99, 99, 99, 99, 1, 99, 0, 0]}; PieceData["\u7363\u540F"] = {nari:"\u7363\u9CE5", move:[3, 3, 3, 2, 2, 3, 3, 0, 0]}; PieceData["\u53F3\u9F8D"] = {nari:"\u9752\u9F8D", move:[0, 99, 0, 99, 2, 99, 0, 0, 0]}; PieceData["\u5DE6\u9F8D"] = {nari:"\u6731\u96C0", move:[0, 0, 99, 2, 99, 0, 99, 0, 0]}; PieceData["\u53F3\u864E"] = {nari:"\u767D\u864E", move:[0, 99, 1, 99, 0, 99, 1, 0, 0]}; PieceData["\u5DE6\u864E"] = {nari:"\u7384\u6B66", move:[0, 1, 99, 0, 99, 1, 99, 0, 0]}; PieceData["\u98DB\u5C06"] = {nari:"\u98DB\u9C10", move:[112, 0, 0, 112, 112, 0, 0, 112, 0]}; PieceData["\u89D2\u5C06"] = {nari:"\u9716\u9B3C", move:[0, 112, 112, 0, 0, 112, 112, 0, 0]}; PieceData["\u8D70\u72FC"] = {nari:"\u5954\u72FC", move:[1, 99, 99, 99, 99, 0, 0, 0, 0]}; PieceData["\u8D70\u9E7F"] = {nari:"\u5954\u9E7F", move:[0, 99, 99, 99, 99, 0, 0, 2, 0]}; PieceData["\u6A2A\u9F8D"] = {nari:"\u8D70\u9F8D", move:[99, 0, 0, 99, 99, 0, 0, 0, 0]}; PieceData["\u91D1\u8ECA"] = {nari:"\u904A\u6BCD", move:[99, 1, 1, 2, 2, 1, 1, 99, 0]}; PieceData["\u5927\u5C06"] = {nari:"0", move:[112, 112, 112, 112, 112, 112, 112, 112, 0]}; PieceData["\u526F\u5C06"] = {nari:"\u5927\u5C06", move:[62, 112, 112, 62, 62, 112, 112, 62, 0]}; PieceData["\u6797\u9B3C"] = {nari:"\u53F3\u9D70", move:[99, 99, 99, 2, 2, 2, 2, 99, 0]}; PieceData["\u731B\u9F8D"] = {nari:"\u5927\u9F8D", move:[2, 112, 112, 2, 2, 112, 112, 2, 0]}; PieceData["\u5927\u9E7F"] = {nari:"\u5954\u9E7F", move:[99, 62, 62, 99, 99, 2, 2, 99, 0]}; PieceData["\u79BD\u66F9"] = {nari:"\u79BD\u540F", move:[3, 3, 3, 3, 3, 3, 3, 0, 0]}; PieceData["\u7345\u5B50"] = {nari:"\u596E\u8FC5", move:[0, 0, 0, 0, 0, 0, 0, 0, 1]}; PieceData["\u91D1\u9E7F"] = {nari:"\u767D\u99D2", move:[0, 99, 99, 0, 0, 2, 2, 0, 0]}; PieceData["\u9280\u514E"] = {nari:"\u9BE8\u9BE2", move:[0, 2, 2, 0, 0, 99, 99, 0, 0]}; PieceData["\u6A2A\u732A"] = {nari:"\u5954\u732A", move:[1, 1, 1, 99, 99, 1, 1, 1, 0]}; PieceData["\u4E2D\u65D7"] = {nari:"\u524D\u65D7", move:[99, 3, 3, 99, 99, 3, 3, 99, 0]}; PieceData["\u725B\u5C06"] = {nari:"\u5954\u725B", move:[3, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u99AC\u5C06"] = {nari:"\u5954\u99AC", move:[3, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u72D7\u5C06"] = {nari:"\u5954\u72D7", move:[4, 0, 0, 0, 0, 1, 1, 0, 0]}; PieceData["\u9D8F\u5C06"] = {nari:"\u5954\u9D8F", move:[4, 0, 0, 0, 0, 1, 1, 0, 0]}; PieceData["\u8C5A\u5C06"] = {nari:"\u5954\u8C5A", move:[0, 4, 4, 0, 0, 0, 0, 2, 0]}; PieceData["\u6842\u99AC"] = {nari:"\u6A2A\u5175", move:[0, 0, 0, 0, 0, 0, 0, 0, 2]}; PieceData["\u7AEA\u718A"] = {nari:"\u5954\u718A", move:[99, 0, 0, 2, 2, 0, 0, 1, 0]}; PieceData["\u9280\u8ECA"] = {nari:"\u9D3B\u7FFC", move:[99, 2, 2, 0, 0, 1, 1, 99, 0]}; PieceData["\u7121\u660E"] = {nari:"\u6CD5\u6027", move:[1, 0, 1, 1, 1, 1, 1, 1, 0]}; PieceData["\u63D0\u5A46"] = {nari:"\u6559\u738B", move:[1, 1, 0, 1, 1, 1, 1, 1, 0]}; PieceData["\u91D1\u7FC5"] = {nari:"\u5954\u7FC5", move:[99, 113, 113, 3, 3, 3, 3, 99, 0]}; PieceData["\u5927\u9F8D"] = {nari:"\u5143\u9F8D", move:[3, 99, 99, 0, 0, 99, 99, 3, 0]}; PieceData["\u731B\u725B"] = {nari:"\u98DB\u725B", move:[1, 99, 99, 0, 0, 0, 0, 1, 0]}; PieceData["\u7F8A\u5175"] = {nari:"\u864E\u5175", move:[0, 99, 99, 0, 0, 0, 0, 1, 0]}; PieceData["\u8D70\u8ECA"] = {nari:"\u70AE\u8ECA", move:[99, 0, 0, 99, 99, 0, 0, 99, 0]}; PieceData["\u9285\u8ECA"] = {nari:"\u9285\u8C61", move:[99, 3, 3, 0, 0, 0, 0, 99, 0]}; PieceData["\u96F2\u9F8D"] = {nari:"\u5927\u9F8D", move:[1, 99, 99, 1, 1, 99, 99, 99, 0]}; PieceData["\u5C0F\u65D7"] = {nari:"\u5F8C\u65D7", move:[99, 2, 2, 99, 99, 1, 1, 99, 0]}; PieceData["\u5175\u58EB"] = {nari:"\u9A0E\u58EB", move:[99, 0, 0, 99, 99, 0, 0, 99, 0]}; PieceData["\u7AEA\u864E"] = {nari:"\u5954\u864E", move:[99, 0, 0, 0, 0, 0, 0, 2, 0]}; PieceData["\u5C71\u9DF9"] = {nari:"\u89D2\u9DF9", move:[102, 99, 99, 99, 99, 2, 2, 99, 0]}; PieceData["\u98DB\u732B"] = {nari:"\u98DB\u8ECA", move:[63, 63, 63, 63, 63, 1, 1, 1, 0]}; PieceData["\u6A2A\u72FC"] = {nari:"\u5954\u72FC", move:[0, 1, 0, 99, 99, 0, 1, 0, 0]}; PieceData["\u98DB\u8ECA"] = {nari:"\u9F8D\u738B", move:[99, 0, 0, 99, 99, 0, 0, 99, 0]}; PieceData["\u89D2\u884C"] = {nari:"\u9F8D\u99AC", move:[0, 99, 99, 0, 0, 99, 99, 0, 0]}; PieceData["\u96F2\u9DF2"] = {nari:"\u52C1\u9DF2", move:[99, 3, 3, 1, 1, 0, 0, 99, 0]}; PieceData["\u77F3\u8ECA"] = {nari:"\u6B69\u632F", move:[99, 1, 1, 2, 2, 0, 0, 99, 0]}; PieceData["\u5927\u4E80"] = {nari:"\u970A\u4E80", move:[103, 99, 99, 3, 3, 99, 99, 103, 0]}; PieceData["\u5C0F\u4E80"] = {nari:"\u5B9D\u4E80", move:[102, 99, 99, 2, 2, 99, 99, 102, 0]}; PieceData["\u9264\u884C"] = {nari:"0", move:[125, 0, 0, 125, 125, 0, 0, 125, 0]}; PieceData["\u6469\u7FAF"] = {nari:"\u9264\u884C", move:[0, 124, 124, 0, 0, 124, 124, 0, 0]}; PieceData["\u9CF3\u51F0"] = {nari:"\u91D1\u7FC5", move:[1, 62, 62, 1, 1, 62, 62, 1, 0]}; PieceData["\u9E92\u9E9F"] = {nari:"\u91D1\u7FC5", move:[1, 1, 1, 62, 62, 1, 1, 1, 0]}; PieceData["\u706B\u5C06"] = {nari:"\u5927\u5C06", move:[3, 1, 1, 0, 0, 0, 0, 3, 0]}; PieceData["\u6C34\u5C06"] = {nari:"\u526F\u5C06", move:[1, 3, 3, 0, 0, 0, 0, 1, 0]}; PieceData["\u76F2\u72AC"] = {nari:"\u731B\u9E7F", move:[0, 1, 1, 1, 1, 0, 0, 1, 0]}; PieceData["\u70CF\u884C"] = {nari:"\u98DB\u9DF9", move:[1, 0, 0, 0, 0, 1, 1, 0, 0]}; PieceData["\u9CEB\u98DB"] = {nari:"\u71D5\u7FBD", move:[1, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u6BD2\u86C7"] = {nari:"\u9264\u884C", move:[2, 1, 1, 2, 2, 0, 0, 1, 0]}; PieceData["\u98DB\u9F8D"] = {nari:"\u9F8D\u738B", move:[0, 62, 62, 0, 0, 62, 62, 0, 0]}; PieceData["\u731B\u9DF2"] = {nari:"\u98DB\u9DF2", move:[1, 2, 2, 1, 1, 2, 2, 0, 0]}; PieceData["\u731B\u8C79"] = {nari:"\u89D2\u884C", move:[1, 1, 1, 0, 0, 1, 1, 1, 0]}; PieceData["\u6C34\u725B"] = {nari:"\u5927\u734F", move:[2, 99, 99, 99, 99, 99, 99, 2, 0]}; PieceData["\u8E0A\u9E7F"] = {nari:"\u65B9\u884C", move:[1, 1, 1, 2, 2, 0, 0, 1, 0]}; PieceData["\u6A2A\u884C"] = {nari:"\u5954\u732A", move:[1, 0, 0, 99, 99, 0, 0, 1, 0]}; PieceData["\u5947\u72AC\u53F3"] = {nari:"\u53F3\u72AC", move:[99, 0, 0, 0, 0, 0, 0, 1, 0]}; PieceData["\u5947\u72AC\u5DE6"] = {nari:"\u5DE6\u72AC", move:[99, 0, 0, 0, 0, 0, 0, 1, 0]}; PieceData["\u767D\u99D2"] = {nari:"\u5927\u99D2", move:[99, 99, 99, 0, 0, 0, 0, 99, 0]}; PieceData["\u6728\u8ECA"] = {nari:"\u98A8\u9F08", move:[99, 1, 0, 0, 0, 0, 1, 99, 0]}; PieceData["\u9D6C\u5E2B"] = {nari:"0", move:[99, 103, 103, 5, 5, 5, 5, 99, 0]}; PieceData["\u4E2D\u5E2B"] = {nari:"0", move:[102, 102, 102, 3, 3, 3, 3, 102, 0]}; PieceData["\u96A0\u72D0"] = {nari:"\u5C71\u9DBB", move:[99, 99, 99, 0, 0, 99, 99, 99, 0]}; PieceData["\u731B\u72FC"] = {nari:"\u718A\u773C", move:[1, 1, 1, 1, 1, 0, 0, 1, 0]}; PieceData["\u731B\u9E7F"] = {nari:"\u884C\u732A", move:[1, 1, 1, 0, 0, 1, 1, 0, 0]}; PieceData["\u6771\u5937"] = {nari:"\u7345\u5B50", move:[2, 1, 1, 1, 1, 0, 0, 2, 0]}; PieceData["\u5357\u86EE"] = {nari:"\u91D1\u7FC5", move:[1, 1, 1, 2, 2, 0, 0, 1, 0]}; PieceData["\u897F\u620E"] = {nari:"\u72DB\u72AC", move:[2, 1, 1, 1, 1, 0, 0, 2, 0]}; PieceData["\u5317\u72C4"] = {nari:"\u9CE9\u69C3", move:[1, 1, 1, 2, 2, 0, 0, 1, 0]}; PieceData["\u6DEE\u9D8F"] = {nari:"\u4ED9\u9DE6", move:[0, 1, 1, 1, 1, 0, 0, 1, 0]}; PieceData["\u53E4\u733F"] = {nari:"\u5C71\u6BCD", move:[0, 1, 1, 0, 0, 1, 1, 1, 0]}; PieceData["\u9D8F\u98DB"] = {nari:"\u5EF6\u9DF9", move:[0, 1, 1, 1, 1, 0, 0, 0, 0]}; PieceData["\u98A8\u99AC"] = {nari:"\u5929\u99AC", move:[99, 1, 1, 0, 0, 0, 0, 2, 0]}; PieceData["\u60AA\u72FC"] = {nari:"\u6BD2\u72FC", move:[1, 1, 1, 1, 1, 0, 0, 0, 0]}; PieceData["\u55D4\u732A"] = {nari:"\u5954\u732A", move:[0, 1, 1, 1, 1, 1, 1, 0, 0]}; PieceData["\u731B\u718A"] = {nari:"\u5927\u718A", move:[1, 2, 2, 1, 1, 0, 0, 0, 0]}; PieceData["\u99AC\u9E9F"] = {nari:"\u5954\u738B", move:[0, 2, 2, 0, 0, 2, 2, 0, 0]}; PieceData["\u9A62\u99AC"] = {nari:"\u9CE9\u76E4", move:[2, 0, 0, 2, 2, 0, 0, 2, 0]}; PieceData["\u6A2A\u725B"] = {nari:"\u98DB\u725B", move:[0, 0, 1, 99, 99, 1, 0, 0, 0]}; PieceData["\u7AEA\u72FC"] = {nari:"\u8D70\u72FC", move:[99, 0, 0, 1, 1, 0, 0, 3, 0]}; PieceData["\u74E6\u8ECA"] = {nari:"\u8D70\u74E6", move:[99, 0, 1, 0, 0, 1, 0, 99, 0]}; PieceData["\u5954\u9DF2"] = {nari:"0", move:[122, 123, 123, 122, 122, 122, 122, 122, 0]}; PieceData["\u7345\u9DF9"] = {nari:"0", move:[0, 99, 99, 0, 0, 99, 99, 0, 1]}; PieceData["\u81E5\u9F8D"] = {nari:"\u5927\u9F8D", move:[1, 0, 0, 1, 1, 0, 0, 1, 0]}; PieceData["\u87E0\u86C7"] = {nari:"\u87E0\u9F8D", move:[1, 0, 0, 0, 0, 1, 1, 1, 0]}; PieceData["\u65B9\u884C"] = {nari:"\u5F37\u8ECA", move:[99, 0, 0, 99, 99, 0, 0, 99, 0]}; PieceData["\u8001\u9F20"] = {nari:"\u53E4\u6642\u9CE5", move:[1, 0, 0, 0, 0, 1, 1, 0, 0]}; PieceData["\u76F2\u718A"] = {nari:"\u98DB\u9E7F", move:[0, 1, 1, 1, 1, 1, 1, 0, 0]}; PieceData["\u6A2A\u98DB"] = {nari:"\u6A2A\u9F8D", move:[0, 1, 1, 99, 99, 1, 1, 0, 0]}; PieceData["\u725B\u8ECA"] = {nari:"\u821F\u725B", move:[99, 0, 0, 0, 0, 0, 0, 0, 0]}; PieceData["\u76F2\u864E"] = {nari:"\u98DB\u9E7F", move:[0, 1, 1, 1, 1, 1, 1, 1, 0]}; PieceData["\u76F2\u733F"] = {nari:"\u98DB\u9E7F", move:[0, 1, 1, 1, 1, 1, 1, 0, 0]}; PieceData["\u71D5\u7FBD"] = {nari:"\u71D5\u884C", move:[1, 0, 0, 99, 99, 0, 0, 1, 0]}; PieceData["\u732B\u5204"] = {nari:"\u9F8D\u99AC", move:[0, 1, 1, 0, 0, 1, 1, 0, 0]}; PieceData["\u767B\u733F"] = {nari:"\u731B\u9E7F", move:[1, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u9D1F\u884C"] = {nari:"\u96F2\u9DF2", move:[1, 0, 0, 0, 0, 1, 1, 0, 0]}; PieceData["\u9A0E\u5175"] = {nari:"\u9A0E\u58EB", move:[99, 99, 99, 2, 2, 0, 0, 99, 0]}; PieceData["\u5909\u72F8"] = {nari:"\u9CE9\u76E4", move:[2, 0, 0, 2, 2, 0, 0, 2, 0]}; PieceData["\u9752\u9F8D"] = {nari:"\u795E\u9F8D", move:[99, 0, 99, 2, 2, 0, 0, 99, 0]}; PieceData["\u6731\u96C0"] = {nari:"\u795E\u96C0", move:[1, 99, 1, 1, 1, 1, 99, 1, 0]}; PieceData["\u571F\u8ECA"] = {nari:"\u82A6\u9CE5", move:[99, 0, 0, 1, 1, 0, 0, 99, 0]}; PieceData["\u5927\u5E2B"] = {nari:"0", move:[103, 103, 103, 5, 5, 5, 5, 99, 0]}; PieceData["\u5927\u65D7"] = {nari:"0", move:[99, 99, 99, 99, 99, 3, 3, 99, 0]}; PieceData["\u9244\u5C06"] = {nari:"\u767D\u8C61", move:[1, 1, 1, 0, 0, 0, 0, 0, 0]}; PieceData["\u718A\u5175"] = {nari:"\u5F37\u718A", move:[99, 99, 99, 2, 2, 0, 0, 1, 0]}; PieceData["\u74E6\u5C06"] = {nari:"\u767D\u8C61", move:[0, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u8C79\u5175"] = {nari:"\u8D70\u8C79", move:[99, 99, 99, 2, 2, 0, 0, 1, 0]}; PieceData["\u77F3\u5C06"] = {nari:"\u767D\u8C61", move:[0, 1, 1, 0, 0, 0, 0, 0, 0]}; PieceData["\u732A\u5175"] = {nari:"\u8D70\u732A", move:[99, 99, 99, 2, 2, 0, 0, 1, 0]}; PieceData["\u571F\u5C06"] = {nari:"\u767D\u8C61", move:[1, 0, 0, 0, 0, 0, 0, 1, 0]}; PieceData["\u725B\u5175"] = {nari:"\u8D70\u725B", move:[99, 99, 99, 3, 3, 0, 0, 1, 0]}; PieceData["\u6728\u5C06"] = {nari:"\u767D\u8C61", move:[0, 2, 2, 0, 0, 0, 0, 0, 0]}; PieceData["\u99AC\u5175"] = {nari:"\u8D70\u99AC", move:[99, 99, 99, 3, 3, 0, 0, 1, 0]}; PieceData["\u524D\u65D7"] = {nari:"\u5927\u65D7", move:[99, 3, 3, 99, 99, 3, 3, 99, 99]}; PieceData["\u5C71\u5C06"] = {nari:"\u6CF0\u5C71", move:[1, 3, 3, 0, 0, 0, 0, 1, 0]}; PieceData["\u5DDD\u5C06"] = {nari:"\u6DEE\u5DDD", move:[3, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u98A8\u5C06"] = {nari:"\u66B4\u98A8", move:[3, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u7AEA\u5175"] = {nari:"\u8ECA\u5175", move:[99, 0, 0, 2, 2, 0, 0, 1, 0]}; PieceData["\u6A2A\u5175"] = {nari:"\u6C34\u725B", move:[2, 0, 0, 99, 99, 0, 0, 1, 0]}; PieceData["\u8ECA\u5175"] = {nari:"\u56DB\u5929\u738B", move:[99, 99, 99, 2, 2, 99, 99, 99, 0]}; PieceData["\u72DB\u72AC"] = {nari:"\u5927\u8C61", move:[103, 103, 103, 103, 103, 103, 103, 103, 0]}; PieceData["\u543C\u72AC"] = {nari:"\u72DB\u72AC", move:[103, 103, 103, 103, 103, 3, 3, 103, 0]}; PieceData["\u5F13\u5175"] = {nari:"\u5F13\u5C06", move:[5, 3, 3, 3, 3, 0, 0, 1, 0]}; PieceData["\u731B\u864E"] = {nari:"\u5927\u864E", move:[99, 0, 0, 0, 0, 0, 0, 0, 0]}; PieceData["\u7AEA\u8C79"] = {nari:"\u5927\u8C79", move:[99, 1, 1, 1, 1, 0, 0, 1, 0]}; PieceData["\u9397\u5175"] = {nari:"\u9397\u5C06", move:[99, 0, 0, 1, 1, 0, 0, 1, 0]}; PieceData["\u98DB\u9DF2"] = {nari:"\u5927\u9DF2", move:[99, 102, 102, 99, 99, 99, 99, 99, 0]}; PieceData["\u89D2\u9DF9"] = {nari:"\u5927\u9DF9", move:[102, 99, 99, 99, 99, 99, 99, 99, 0]}; PieceData["\u5200\u5175"] = {nari:"\u5200\u5C06", move:[0, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u9F8D\u738B"] = {nari:"\u98DB\u9DF2", move:[99, 1, 1, 99, 99, 1, 1, 99, 0]}; PieceData["\u9F8D\u99AC"] = {nari:"\u89D2\u9DF9", move:[1, 99, 99, 1, 1, 99, 99, 1, 0]}; PieceData["\u70AE\u5175"] = {nari:"\u70AE\u5C06", move:[7, 5, 5, 3, 3, 0, 0, 1, 0]}; PieceData["\u7AEA\u99AC"] = {nari:"\u9F8D\u99AC", move:[99, 1, 1, 0, 0, 0, 0, 1, 0]}; PieceData["\u7AEA\u72D7"] = {nari:"\u8C79\u738B", move:[99, 0, 0, 0, 0, 1, 1, 1, 0]}; PieceData["\u5F29\u5175"] = {nari:"\u5F29\u5C06", move:[99, 5, 5, 2, 2, 0, 0, 1, 0]}; PieceData["\u98DB\u725B"] = {nari:"\u706B\u725B", move:[99, 99, 99, 0, 0, 99, 99, 99, 0]}; PieceData["\u7AEA\u884C"] = {nari:"\u98DB\u725B", move:[99, 0, 0, 1, 1, 0, 0, 99, 0]}; PieceData["\u6A2A\u733F"] = {nari:"\u6A2A\u5175", move:[0, 1, 1, 99, 99, 0, 0, 1, 0]}; PieceData["\u53F3\u8ECA"] = {nari:"\u53F3\u9244\u8ECA", move:[99, 99, 0, 0, 1, 0, 99, 0, 0]}; PieceData["\u5DE6\u8ECA"] = {nari:"\u5DE6\u9244\u8ECA", move:[99, 0, 99, 1, 0, 99, 0, 0, 0]}; PieceData["\u72AC"] = {nari:"\u96DC\u5C06", move:[1, 1, 1, 0, 0, 0, 0, 0, 0]}; PieceData["\u4EF2\u4EBA"] = {nari:"\u9154\u8C61", move:[1, 0, 0, 0, 0, 0, 0, 1, 0]}; PieceData["\u6B69\u5175"] = {nari:"\u3068\u91D1", move:[1, 0, 0, 0, 0, 0, 0, 0, 0]}; PieceData["\u3068\u91D1"] = {nari:"0", move:[1, 1, 1, 1, 1, 0, 0, 1, 0]}; PieceData["\u5954\u7FC5"] = {nari:"0", move:[99, 113, 113, 99, 99, 3, 3, 99, 0]}; PieceData["\u5927\u734F"] = {nari:"0", move:[99, 99, 99, 103, 103, 99, 99, 99, 0]}; PieceData["\u5143\u9F8D"] = {nari:"0", move:[113, 99, 99, 0, 0, 99, 99, 113, 0]}; PieceData["\u56DB\u5929\u738B"] = {nari:"0", move:[111, 111, 111, 111, 111, 111, 111, 111, 0]}; PieceData["\u5927\u9DF9"] = {nari:"0", move:[111, 99, 99, 99, 99, 99, 99, 99, 0]}; PieceData["\u5927\u8C61"] = {nari:"0", move:[113, 3, 3, 113, 113, 113, 113, 113, 0]}; PieceData["\u706B\u725B"] = {nari:"0", move:[99, 99, 99, 1, 1, 99, 99, 99, 0]}; PieceData["\u5F37\u718A"] = {nari:"0", move:[99, 99, 99, 99, 99, 99, 99, 2, 0]}; PieceData["\u53F3\u9D70"] = {nari:"0", move:[0, 99, 99, 5, 5, 99, 99, 0, 0]}; PieceData["\u8D70\u8C79"] = {nari:"0", move:[99, 99, 99, 99, 99, 0, 0, 0, 0]}; PieceData["\u96F7\u8D70"] = {nari:"0", move:[99, 99, 99, 4, 4, 0, 0, 4, 0]}; PieceData["\u9716\u9B3C"] = {nari:"0", move:[3, 111, 111, 2, 2, 2, 2, 99, 0]}; PieceData["\u5954\u732A"] = {nari:"0", move:[99, 99, 99, 99, 99, 0, 0, 1, 0]}; PieceData["\u5954\u72AC"] = {nari:"0", move:[99, 99, 99, 2, 2, 2, 2, 99, 0]}; PieceData["\u8D70\u725B"] = {nari:"0", move:[99, 99, 99, 99, 99, 0, 0, 2, 0]}; PieceData["\u5927\u99D2"] = {nari:"0", move:[99, 99, 99, 2, 2, 0, 0, 99, 0]}; PieceData["\u9A0E\u58EB"] = {nari:"0", move:[99, 99, 99, 99, 99, 0, 0, 99, 0]}; PieceData["\u5954\u706B"] = {nari:"0", move:[5, 99, 99, 99, 99, 99, 99, 5, 0]}; PieceData["\u70AE\u8ECA"] = {nari:"0", move:[99, 99, 99, 1, 1, 0, 0, 99, 0]}; PieceData["\u5954\u9E7F"] = {nari:"0", move:[99, 99, 99, 99, 99, 99, 99, 99, 0]}; PieceData["\u5954\u9F8D"] = {nari:"0", move:[0, 99, 99, 99, 99, 99, 99, 99, 0]}; PieceData["\u98DB\u9C10"] = {nari:"0", move:[112, 3, 3, 112, 112, 2, 2, 112, 0]}; PieceData["\u5F37\u8ECA"] = {nari:"0", move:[99, 99, 99, 99, 99, 0, 0, 99, 0]}; PieceData["\u795E\u864E"] = {nari:"0", move:[99, 99, 0, 99, 99, 0, 0, 2, 0]}; PieceData["\u795E\u9F8D"] = {nari:"0", move:[99, 0, 99, 2, 99, 0, 0, 99, 0]}; PieceData["\u795E\u4E80"] = {nari:"0", move:[1, 1, 99, 1, 1, 99, 99, 1, 0]}; PieceData["\u795E\u96C0"] = {nari:"0", move:[1, 99, 1, 1, 1, 99, 99, 1, 0]}; PieceData["\u5954\u86C7"] = {nari:"0", move:[99, 0, 0, 0, 0, 99, 99, 99, 0]}; PieceData["\u5954\u72FC"] = {nari:"0", move:[99, 99, 99, 99, 99, 0, 0, 0, 0]}; PieceData["\u5927\u864E"] = {nari:"0", move:[1, 0, 0, 99, 99, 0, 0, 99, 0]}; PieceData["\u53F3\u72AC"] = {nari:"0", move:[99, 0, 0, 0, 0, 99, 0, 1, 0]}; PieceData["\u5DE6\u72AC"] = {nari:"0", move:[99, 0, 0, 0, 0, 0, 99, 1, 0]}; PieceData["\u5954\u718A"] = {nari:"0", move:[99, 99, 99, 0, 0, 99, 99, 99, 0]}; PieceData["\u5954\u864E"] = {nari:"0", move:[0, 99, 99, 99, 99, 99, 99, 99, 0]}; PieceData["\u8D70\u732A"] = {nari:"0", move:[99, 0, 0, 1, 1, 0, 0, 99, 0]}; PieceData["\u5954\u8C79"] = {nari:"0", move:[99, 99, 99, 0, 0, 99, 99, 99, 0]}; PieceData["\u5929\u99AC"] = {nari:"0", move:[99, 0, 0, 0, 0, 0, 0, 0, 3]}; PieceData["\u9397\u5C06"] = {nari:"0", move:[99, 0, 0, 3, 3, 0, 0, 3, 0]}; PieceData["\u5927\u8C79"] = {nari:"0", move:[99, 3, 3, 2, 2, 0, 0, 1, 0]}; PieceData["\u98DB\u9E7F"] = {nari:"0", move:[99, 1, 1, 1, 1, 1, 1, 99, 0]}; PieceData["\u53F3\u8ECD"] = {nari:"0", move:[1, 1, 99, 1, 99, 1, 99, 1, 0]}; PieceData["\u5DE6\u8ECD"] = {nari:"0", move:[1, 99, 1, 99, 1, 99, 1, 1, 0]}; PieceData["\u7363\u9CE5"] = {nari:"0", move:[99, 99, 99, 3, 3, 99, 99, 2, 0]}; PieceData["\u79BD\u9CE5"] = {nari:"0", move:[99, 99, 99, 3, 3, 99, 99, 2, 0]}; PieceData["\u71D5\u884C"] = {nari:"0", move:[99, 0, 0, 99, 99, 0, 0, 99, 0]}; PieceData["\u6CD5\u6027"] = {nari:"0", move:[99, 99, 99, 99, 99, 99, 99, 99, 1]}; PieceData["\u6559\u738B"] = {nari:"0", move:[113, 113, 113, 113, 113, 113, 113, 113, 0]}; PieceData["\u5927\u9C57"] = {nari:"0", move:[99, 5, 5, 99, 99, 2, 2, 99, 0]}; PieceData["\u596E\u8FC5"] = {nari:"0", move:[3, 3, 3, 3, 3, 3, 3, 3, 1]}; PieceData["\u8C79\u738B"] = {nari:"0", move:[5, 5, 5, 5, 5, 5, 5, 5, 0]}; PieceData["\u9D3B\u7FFC"] = {nari:"0", move:[99, 1, 1, 3, 3, 1, 1, 99, 0]}; PieceData["\u5DE6\u9244\u8ECA"] = {nari:"0", move:[0, 0, 99, 1, 0, 99, 99, 0, 0]}; PieceData["\u53F3\u9244\u8ECA"] = {nari:"0", move:[0, 99, 0, 0, 1, 99, 99, 0, 0]}; PieceData["\u821F\u725B"] = {nari:"0", move:[99, 1, 1, 0, 0, 1, 1, 99, 0]}; PieceData["\u98A8\u9F08"] = {nari:"0", move:[99, 2, 2, 0, 0, 0, 0, 99, 0]}; PieceData["\u8D70\u74E6"] = {nari:"0", move:[99, 0, 0, 2, 2, 0, 0, 99, 0]}; PieceData["\u82A6\u9CE5"] = {nari:"0", move:[99, 0, 0, 2, 2, 2, 2, 99, 0]}; PieceData["\u904A\u6BCD"] = {nari:"0", move:[99, 3, 3, 5, 5, 2, 2, 99, 0]}; PieceData["\u9285\u8C61"] = {nari:"0", move:[99, 1, 1, 1, 1, 1, 1, 99, 0]}; PieceData["\u6B69\u632F"] = {nari:"0", move:[99, 2, 2, 2, 2, 0, 0, 99, 0]}; PieceData["\u864E\u5175"] = {nari:"0", move:[2, 99, 99, 0, 0, 0, 0, 1, 0]}; PieceData["\u52C1\u9DF2"] = {nari:"0", move:[99, 99, 99, 99, 99, 99, 99, 99, 0]}; PieceData["\u8D70\u9F8D"] = {nari:"0", move:[99, 99, 99, 99, 99, 99, 99, 5, 0]}; PieceData["\u56DB\u5929"] = {nari:"0", move:[4, 4, 4, 4, 4, 4, 4, 4, 0]}; PieceData["\u8C61\u738B"] = {nari:"0", move:[2, 99, 99, 2, 2, 99, 99, 2, 0]}; PieceData["\u6CF0\u5C71"] = {nari:"0", move:[5, 99, 99, 5, 5, 99, 99, 0, 0]}; PieceData["\u6DEE\u5DDD"] = {nari:"0", move:[1, 99, 99, 99, 99, 99, 99, 1, 0]}; PieceData["\u66B4\u98A8"] = {nari:"0", move:[99, 99, 99, 1, 1, 99, 99, 99, 0]}; PieceData["\u5954\u9D8F"] = {nari:"0", move:[99, 99, 99, 2, 2, 2, 2, 99, 0]}; PieceData["\u5954\u725B"] = {nari:"0", move:[99, 99, 99, 2, 2, 1, 1, 99, 0]}; PieceData["\u5954\u99AC"] = {nari:"0", move:[99, 99, 99, 2, 2, 1, 1, 99, 0]}; PieceData["\u5927\u9BE8"] = {nari:"0", move:[99, 99, 99, 0, 0, 99, 99, 99, 0]}; PieceData["\u5954\u8C5A"] = {nari:"0", move:[99, 99, 99, 2, 2, 1, 1, 99, 0]}; PieceData["\u5F29\u5C06"] = {nari:"0", move:[99, 99, 99, 5, 5, 0, 0, 99, 0]}; PieceData["\u70AE\u5C06"] = {nari:"0", move:[99, 99, 99, 3, 3, 0, 0, 2, 0]}; PieceData["\u5F13\u5C06"] = {nari:"0", move:[99, 5, 5, 3, 3, 0, 0, 2, 0]}; PieceData["\u5C71\u9DBB"] = {nari:"0", move:[99, 99, 99, 99, 99, 99, 99, 99, 0]}; PieceData["\u884C\u732A"] = {nari:"0", move:[1, 1, 1, 1, 1, 1, 1, 0, 0]}; PieceData["\u5200\u5C06"] = {nari:"0", move:[3, 3, 3, 0, 0, 0, 0, 1, 0]}; PieceData["\u53E4\u6642\u9CE5"] = {nari:"0", move:[99, 99, 99, 0, 0, 0, 0, 99, 0]}; PieceData["\u87E0\u9F8D"] = {nari:"0", move:[99, 0, 0, 0, 0, 99, 99, 99, 0]}; PieceData["\u718A\u773C"] = {nari:"0", move:[1, 1, 1, 1, 1, 1, 1, 1, 0]}; PieceData["\u5C71\u6BCD"] = {nari:"0", move:[0, 99, 99, 0, 0, 99, 99, 99, 0]}; PieceData["\u98DB\u9DF9"] = {nari:"0", move:[1, 99, 99, 0, 0, 99, 99, 0, 0]}; PieceData["\u6BD2\u72FC"] = {nari:"0", move:[1, 1, 1, 1, 1, 1, 1, 1, 0]}; PieceData["\u970A\u4E80"] = {nari:"0", move:[103, 99, 99, 103, 103, 99, 99, 103, 0]}; PieceData["\u5B9D\u4E80"] = {nari:"0", move:[102, 99, 99, 102, 102, 99, 99, 102, 0]}; PieceData["\u5927\u718A"] = {nari:"0", move:[99, 99, 99, 1, 1, 0, 0, 1, 0]}; PieceData["\u96DC\u5C06"] = {nari:"0", move:[99, 99, 99, 0, 0, 0, 0, 99, 0]}; PieceData["\u4ED9\u9DE6"] = {nari:"0", move:[0, 99, 99, 99, 99, 0, 0, 99, 0]}; PieceData["\u5EF6\u9DF9"] = {nari:"0", move:[99, 1, 1, 1, 1, 0, 0, 0, 0]}; PieceData["\u5927\u9DF2"] = {nari:"0", move:[99, 111, 111, 99, 99, 99, 99, 99, 0]}; FirstBoard = new array(); FirstBoard[0] = [{name:"\u9999\u8ECA", player:1}, {name:"\u767D\u864E", player:1}, {name:"\u8D70\u514E", player:1}, {name:"\u9BE8\u9BE2", player:1}, {name:"\u706B\u9B3C", player:1}, {name:"\u5C71\u9DF2\u53F3", player:1}, {name:"\u5929\u72D7", player:1}, {name:"\u7363\u66F9", player:1}, {name:"\u8D70\u99AC", player:1}, {name:"\u5954\u9B3C", player:1}, {name:"\u5730\u9F8D", player:1}, {name:"\u9CE9\u69C3", player:1}, {name:"\u5954\u734F", player:1}, {name:"\u5954\u738B", player:1}, {name:"\u5F8C\u65D7", player:1}, {name:"\u53F3\u5C06", player:1}, {name:"\u91D1\u5C06", player:1}, {name:"\u592A\u5B50", player:1}, {name:"\u7389\u5C06", player:1}, {name:"\u91D1\u5C06", player:1}, {name:"\u5DE6\u5C06", player:1}, {name:"\u5F8C\u65D7", player:1}, {name:"\u5954\u738B", player:1}, {name:"\u5954\u734F", player:1}, {name:"\u9CE9\u76E4", player:1}, {name:"\u5730\u9F8D", player:1}, {name:"\u5954\u9B3C", player:1}, {name:"\u8D70\u99AC", player:1}, {name:"\u7363\u66F9", player:1}, {name:"\u5929\u72D7", player:1}, {name:"\u5C71\u9DF2\u5DE6", player:1}, {name:"\u706B\u9B3C", player:1}, {name:"\u9BE8\u9BE2", player:1}, {name:"\u8D70\u514E", player:1}, {name:"\u7384\u6B66", player:1}, {name:"\u9999\u8ECA", player:1}]; FirstBoard[1] = [{name:"\u53CD\u8ECA", player:1}, {name:"\u9999\u8C61", player:1}, {name:"\u5C71\u9CE9", player:1}, {name:"\u98DB\u71D5", player:1}, {name:"\u79BD\u540F", player:1}, {name:"\u96E8\u9F8D", player:1}, {name:"\u68EE\u9B3C", player:1}, {name:"\u5C71\u9E7F", player:1}, {name:"\u8D70\u72D7", player:1}, {name:"\u8D70\u86C7", player:1}, {name:"\u6A2A\u86C7", player:1}, {name:"\u5927\u9CE9", player:1}, {name:"\u8D70\u864E", player:1}, {name:"\u8D70\u718A", player:1}, {name:"\u591C\u5204", player:1}, {name:"\u91D1\u525B", player:1}, {name:"\u9280\u5C06", player:1}, {name:"\u9154\u8C61", player:1}, {name:"\u8FD1\u738B", player:1}, {name:"\u9280\u5C06", player:1}, {name:"\u529B\u58EB", player:1}, {name:"\u7F85\u5239", player:1}, {name:"\u8D70\u718A", player:1}, {name:"\u8D70\u864E", player:1}, {name:"\u5927\u9CE9", player:1}, {name:"\u6A2A\u86C7", player:1}, {name:"\u8D70\u86C7", player:1}, {name:"\u8D70\u72D7", player:1}, {name:"\u5C71\u9E7F", player:1}, {name:"\u68EE\u9B3C", player:1}, {name:"\u96E8\u9F8D", player:1}, {name:"\u79BD\u540F", player:1}, {name:"\u98DB\u71D5", player:1}, {name:"\u5C71\u9CE9", player:1}, {name:"\u767D\u8C61", player:1}, {name:"\u53CD\u8ECA", player:1}]; FirstBoard[2] = [{name:"\u91D1\u8ECA", player:1}, {name:"\u6A2A\u9F8D", player:1}, {name:"\u8D70\u9E7F", player:1}, {name:"\u8D70\u72FC", player:1}, {name:"\u89D2\u5C06", player:1}, {name:"\u98DB\u5C06", player:1}, {name:"\u53F3\u864E", player:1}, {name:"\u53F3\u9F8D", player:1}, {name:"\u7363\u540F", player:1}, {name:"\u98A8\u9F8D", player:1}, {name:"\u5954\u72D7", player:1}, {name:"\u884C\u9CE5", player:1}, {name:"\u53E4\u9D44", player:1}, {name:"\u5B54\u96C0", player:1}, {name:"\u6C34\u9F8D", player:1}, {name:"\u706B\u9F8D", player:1}, {name:"\u9285\u5C06", player:1}, {name:"\u9CF3\u5E2B", player:1}, {name:"\u9E9F\u5E2B", player:1}, {name:"\u9285\u5C06", player:1}, {name:"\u706B\u9F8D", player:1}, {name:"\u6C34\u9F8D", player:1}, {name:"\u5B54\u96C0", player:1}, {name:"\u53E4\u9D44", player:1}, {name:"\u884C\u9CE5", player:1}, {name:"\u5954\u72D7", player:1}, {name:"\u98A8\u9F8D", player:1}, {name:"\u7363\u540F", player:1}, {name:"\u5DE6\u9F8D", player:1}, {name:"\u5DE6\u864E", player:1}, {name:"\u98DB\u5C06", player:1}, {name:"\u89D2\u5C06", player:1}, {name:"\u8D70\u72FC", player:1}, {name:"\u8D70\u9E7F", player:1}, {name:"\u6A2A\u9F8D", player:1}, {name:"\u91D1\u8ECA", player:1}]; FirstBoard[3] = [{name:"\u9280\u8ECA", player:1}, {name:"\u7AEA\u718A", player:1}, {name:"\u6842\u99AC", player:1}, {name:"\u8C5A\u5C06", player:1}, {name:"\u9D8F\u5C06", player:1}, {name:"\u72D7\u5C06", player:1}, {name:"\u99AC\u5C06", player:1}, {name:"\u725B\u5C06", player:1}, {name:"\u4E2D\u65D7", player:1}, {name:"\u6A2A\u732A", player:1}, {name:"\u9280\u514E", player:1}, {name:"\u91D1\u9E7F", player:1}, {name:"\u7345\u5B50", player:1}, {name:"\u79BD\u66F9", player:1}, {name:"\u5927\u9E7F", player:1}, {name:"\u731B\u9F8D", player:1}, {name:"\u6797\u9B3C", player:1}, {name:"\u526F\u5C06", player:1}, {name:"\u5927\u5C06", player:1}, {name:"\u6797\u9B3C", player:1}, {name:"\u731B\u9F8D", player:1}, {name:"\u5927\u9E7F", player:1}, {name:"\u79BD\u66F9", player:1}, {name:"\u7345\u5B50", player:1}, {name:"\u91D1\u9E7F", player:1}, {name:"\u9280\u514E", player:1}, {name:"\u6A2A\u732A", player:1}, {name:"\u4E2D\u65D7", player:1}, {name:"\u725B\u5C06", player:1}, {name:"\u99AC\u5C06", player:1}, {name:"\u72D7\u5C06", player:1}, {name:"\u9D8F\u5C06", player:1}, {name:"\u8C5A\u5C06", player:1}, {name:"\u6842\u99AC", player:1}, {name:"\u7AEA\u718A", player:1}, {name:"\u9280\u8ECA", player:1}]; FirstBoard[4] = [{name:"\u77F3\u8ECA", player:1}, {name:"\u96F2\u9DF2", player:1}, {name:"\u89D2\u884C", player:1}, {name:"\u98DB\u8ECA", player:1}, {name:"\u6A2A\u72FC", player:1}, {name:"\u98DB\u732B", player:1}, {name:"\u5C71\u9DF9", player:1}, {name:"\u7AEA\u864E", player:1}, {name:"\u5175\u58EB", player:1}, {name:"\u5C0F\u65D7", player:1}, {name:"\u96F2\u9F8D", player:1}, {name:"\u9285\u8ECA", player:1}, {name:"\u8D70\u8ECA", player:1}, {name:"\u7F8A\u5175", player:1}, {name:"\u731B\u725B", player:1}, {name:"\u5927\u9F8D", player:1}, {name:"\u91D1\u7FC5", player:1}, {name:"\u7121\u660E", player:1}, {name:"\u63D0\u5A46", player:1}, {name:"\u91D1\u7FC5", player:1}, {name:"\u5927\u9F8D", player:1}, {name:"\u731B\u725B", player:1}, {name:"\u7F8A\u5175", player:1}, {name:"\u8D70\u8ECA", player:1}, {name:"\u9285\u8ECA", player:1}, {name:"\u96F2\u9F8D", player:1}, {name:"\u5C0F\u65D7", player:1}, {name:"\u5175\u58EB", player:1}, {name:"\u7AEA\u864E", player:1}, {name:"\u5C71\u9DF9", player:1}, {name:"\u98DB\u732B", player:1}, {name:"\u6A2A\u72FC", player:1}, {name:"\u98DB\u8ECA", player:1}, {name:"\u89D2\u884C", player:1}, {name:"\u96F2\u9DF2", player:1}, {name:"\u77F3\u8ECA", player:1}]; FirstBoard[5] = [{name:"\u6728\u8ECA", player:1}, {name:"\u767D\u99D2", player:1}, {name:"\u5947\u72AC\u53F3", player:1}, {name:"\u6A2A\u884C", player:1}, {name:"\u8E0A\u9E7F", player:1}, {name:"\u6C34\u725B", player:1}, {name:"\u731B\u8C79", player:1}, {name:"\u731B\u9DF2", player:1}, {name:"\u98DB\u9F8D", player:1}, {name:"\u6BD2\u86C7", player:1}, {name:"\u9CEB\u98DB", player:1}, {name:"\u70CF\u884C", player:1}, {name:"\u76F2\u72AC", player:1}, {name:"\u6C34\u5C06", player:1}, {name:"\u706B\u5C06", player:1}, {name:"\u9CF3\u51F0", player:1}, {name:"\u9264\u884C", player:1}, {name:"\u5C0F\u4E80", player:1}, {name:"\u5927\u4E80", player:1}, {name:"\u6469\u7FAF", player:1}, {name:"\u9E92\u9E9F", player:1}, {name:"\u706B\u5C06", player:1}, {name:"\u6C34\u5C06", player:1}, {name:"\u76F2\u72AC", player:1}, {name:"\u70CF\u884C", player:1}, {name:"\u9CEB\u98DB", player:1}, {name:"\u6BD2\u86C7", player:1}, {name:"\u98DB\u9F8D", player:1}, {name:"\u731B\u9DF2", player:1}, {name:"\u731B\u8C79", player:1}, {name:"\u6C34\u725B", player:1}, {name:"\u8E0A\u9E7F", player:1}, {name:"\u6A2A\u884C", player:1}, {name:"\u5947\u72AC\u5DE6", player:1}, {name:"\u767D\u99D2", player:1}, {name:"\u6728\u8ECA", player:1}]; FirstBoard[6] = [{name:"\u74E6\u8ECA", player:1}, {name:"\u7AEA\u72FC", player:1}, {name:"\u6A2A\u725B", player:1}, {name:"\u9A62\u99AC", player:1}, {name:"\u99AC\u9E9F", player:1}, {name:"\u731B\u718A", player:1}, {name:"\u55D4\u732A", player:1}, {name:"\u60AA\u72FC", player:1}, {name:"\u98A8\u99AC", player:1}, {name:"\u9D8F\u98DB", player:1}, {name:"\u53E4\u733F", player:1}, {name:"\u6DEE\u9D8F", player:1}, {name:"\u5317\u72C4", player:1}, {name:"\u5357\u86EE", player:1}, {name:"\u731B\u9E7F", player:1}, {name:"\u731B\u72FC", player:1}, {name:"\u96A0\u72D0", player:1}, {name:"\u4E2D\u5E2B", player:1}, {name:"\u9D6C\u5E2B", player:1}, {name:"\u96A0\u72D0", player:1}, {name:"\u731B\u72FC", player:1}, {name:"\u731B\u9E7F", player:1}, {name:"\u6771\u5937", player:1}, {name:"\u897F\u620E", player:1}, {name:"\u6DEE\u9D8F", player:1}, {name:"\u53E4\u733F", player:1}, {name:"\u9D8F\u98DB", player:1}, {name:"\u98A8\u99AC", player:1}, {name:"\u60AA\u72FC", player:1}, {name:"\u55D4\u732A", player:1}, {name:"\u731B\u718A", player:1}, {name:"\u99AC\u9E9F", player:1}, {name:"\u9A62\u99AC", player:1}, {name:"\u6A2A\u725B", player:1}, {name:"\u7AEA\u72FC", player:1}, {name:"\u74E6\u8ECA", player:1}]; FirstBoard[7] = [{name:"\u571F\u8ECA", player:1}, {name:"\u6731\u96C0", player:1}, {name:"\u5909\u72F8", player:1}, {name:"\u9A0E\u5175", player:1}, {name:"\u9D1F\u884C", player:1}, {name:"\u767B\u733F", player:1}, {name:"\u732B\u5204", player:1}, {name:"\u71D5\u7FBD", player:1}, {name:"\u76F2\u733F", player:1}, {name:"\u76F2\u864E", player:1}, {name:"\u725B\u8ECA", player:1}, {name:"\u6A2A\u98DB", player:1}, {name:"\u76F2\u718A", player:1}, {name:"\u8001\u9F20", player:1}, {name:"\u65B9\u884C", player:1}, {name:"\u87E0\u86C7", player:1}, {name:"\u81E5\u9F8D", player:1}, {name:"\u5954\u9DF2", player:1}, {name:"\u7345\u9DF9", player:1}, {name:"\u81E5\u9F8D", player:1}, {name:"\u87E0\u86C7", player:1}, {name:"\u65B9\u884C", player:1}, {name:"\u8001\u9F20", player:1}, {name:"\u76F2\u718A", player:1}, {name:"\u6A2A\u98DB", player:1}, {name:"\u725B\u8ECA", player:1}, {name:"\u76F2\u864E", player:1}, {name:"\u76F2\u733F", player:1}, {name:"\u71D5\u7FBD", player:1}, {name:"\u732B\u5204", player:1}, {name:"\u767B\u733F", player:1}, {name:"\u9D1F\u884C", player:1}, {name:"\u9A0E\u5175", player:1}, {name:"\u5909\u72F8", player:1}, {name:"\u9752\u9F8D", player:1}, {name:"\u571F\u8ECA", player:1}]; FirstBoard[8] = [{name:"\u8ECA\u5175", player:1}, {name:"\u6A2A\u5175", player:1}, {name:"\u7AEA\u5175", player:1}, {name:"\u98A8\u5C06", player:1}, {name:"\u5DDD\u5C06", player:1}, {name:"\u5C71\u5C06", player:1}, {name:"\u524D\u65D7", player:1}, {name:"\u99AC\u5175", player:1}, {name:"\u6728\u5C06", player:1}, {name:"\u725B\u5175", player:1}, {name:"\u571F\u5C06", player:1}, {name:"\u732A\u5175", player:1}, {name:"\u77F3\u5C06", player:1}, {name:"\u8C79\u5175", player:1}, {name:"\u74E6\u5C06", player:1}, {name:"\u718A\u5175", player:1}, {name:"\u9244\u5C06", player:1}, {name:"\u5927\u65D7", player:1}, {name:"\u5927\u5E2B", player:1}, {name:"\u9244\u5C06", player:1}, {name:"\u718A\u5175", player:1}, {name:"\u74E6\u5C06", player:1}, {name:"\u8C79\u5175", player:1}, {name:"\u77F3\u5C06", player:1}, {name:"\u732A\u5175", player:1}, {name:"\u571F\u5C06", player:1}, {name:"\u725B\u5175", player:1}, {name:"\u6728\u5C06", player:1}, {name:"\u99AC\u5175", player:1}, {name:"\u524D\u65D7", player:1}, {name:"\u5C71\u5C06", player:1}, {name:"\u5DDD\u5C06", player:1}, {name:"\u98A8\u5C06", player:1}, {name:"\u7AEA\u5175", player:1}, {name:"\u6A2A\u5175", player:1}, {name:"\u8ECA\u5175", player:1}]; FirstBoard[9] = [{name:"\u53F3\u8ECA", player:1}, {name:"\u6A2A\u733F", player:1}, {name:"\u7AEA\u884C", player:1}, {name:"\u98DB\u725B", player:1}, {name:"\u5F29\u5175", player:1}, {name:"\u7AEA\u72D7", player:1}, {name:"\u7AEA\u99AC", player:1}, {name:"\u70AE\u5175", player:1}, {name:"\u9F8D\u99AC", player:1}, {name:"\u9F8D\u738B", player:1}, {name:"\u5200\u5175", player:1}, {name:"\u89D2\u9DF9", player:1}, {name:"\u98DB\u9DF2", player:1}, {name:"\u9397\u5175", player:1}, {name:"\u7AEA\u8C79", player:1}, {name:"\u731B\u864E", player:1}, {name:"\u5F13\u5175", player:1}, {name:"\u543C\u72AC", player:1}, {name:"\u72DB\u72AC", player:1}, {name:"\u5F13\u5175", player:1}, {name:"\u731B\u864E", player:1}, {name:"\u7AEA\u8C79", player:1}, {name:"\u9397\u5175", player:1}, {name:"\u98DB\u9DF2", player:1}, {name:"\u89D2\u9DF9", player:1}, {name:"\u5200\u5175", player:1}, {name:"\u9F8D\u738B", player:1}, {name:"\u9F8D\u99AC", player:1}, {name:"\u70AE\u5175", player:1}, {name:"\u7AEA\u99AC", player:1}, {name:"\u7AEA\u72D7", player:1}, {name:"\u5F29\u5175", player:1}, {name:"\u98DB\u725B", player:1}, {name:"\u7AEA\u884C", player:1}, {name:"\u6A2A\u733F", player:1}, {name:"\u5DE6\u8ECA", player:1}]; FirstBoard[10] = [{name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}, {name:"\u6B69\u5175", player:1}]; i = 11; while (i <= 24) { FirstBoard[i] = new Array(); j = 0; while (j < 36) { FirstBoard[i][j] = {name:"0", player:-1}; j++; } i++; } FirstBoard[11][5] = {name:"\u72AC", player:1}; BoardToPiece(11, 5); FirstBoard[11][10] = {name:"\u4EF2\u4EBA", player:1}; BoardToPiece(11, 10); FirstBoard[11][14] = {name:"\u72AC", player:1}; BoardToPiece(11, 14); FirstBoard[11][21] = {name:"\u72AC", player:1}; BoardToPiece(11, 21); FirstBoard[11][25] = {name:"\u4EF2\u4EBA", player:1}; BoardToPiece(11, 25); FirstBoard[11][30] = {name:"\u72AC", player:1}; BoardToPiece(11, 30); FirstBoard[24][5] = {name:"\u72AC", player:0}; BoardToPiece(24, 5); FirstBoard[24][10] = {name:"\u4EF2\u4EBA", player:0}; BoardToPiece(24, 10); FirstBoard[24][14] = {name:"\u72AC", player:0}; BoardToPiece(24, 14); FirstBoard[24][21] = {name:"\u72AC", player:0}; BoardToPiece(24, 21); FirstBoard[24][25] = {name:"\u4EF2\u4EBA", player:0}; BoardToPiece(24, 25); FirstBoard[24][30] = {name:"\u72AC", player:0}; BoardToPiece(24, 30); FirstBoard[25] = [{name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}, {name:"\u6B69\u5175", player:0}]; FirstBoard[26] = [{name:"\u5DE6\u8ECA", player:0}, {name:"\u6A2A\u733F", player:0}, {name:"\u7AEA\u884C", player:0}, {name:"\u98DB\u725B", player:0}, {name:"\u5F29\u5175", player:0}, {name:"\u7AEA\u72D7", player:0}, {name:"\u7AEA\u99AC", player:0}, {name:"\u70AE\u5175", player:0}, {name:"\u9F8D\u99AC", player:0}, {name:"\u9F8D\u738B", player:0}, {name:"\u5200\u5175", player:0}, {name:"\u89D2\u9DF9", player:0}, {name:"\u98DB\u9DF2", player:0}, {name:"\u9397\u5175", player:0}, {name:"\u7AEA\u8C79", player:0}, {name:"\u731B\u864E", player:0}, {name:"\u5F13\u5175", player:0}, {name:"\u72DB\u72AC", player:0}, {name:"\u543C\u72AC", player:0}, {name:"\u5F13\u5175", player:0}, {name:"\u731B\u864E", player:0}, {name:"\u7AEA\u8C79", player:0}, {name:"\u9397\u5175", player:0}, {name:"\u98DB\u9DF2", player:0}, {name:"\u89D2\u9DF9", player:0}, {name:"\u5200\u5175", player:0}, {name:"\u9F8D\u738B", player:0}, {name:"\u9F8D\u99AC", player:0}, {name:"\u70AE\u5175", player:0}, {name:"\u7AEA\u99AC", player:0}, {name:"\u7AEA\u72D7", player:0}, {name:"\u5F29\u5175", player:0}, {name:"\u98DB\u725B", player:0}, {name:"\u7AEA\u884C", player:0}, {name:"\u6A2A\u733F", player:0}, {name:"\u53F3\u8ECA", player:0}]; FirstBoard[27] = [{name:"\u8ECA\u5175", player:0}, {name:"\u6A2A\u5175", player:0}, {name:"\u7AEA\u5175", player:0}, {name:"\u98A8\u5C06", player:0}, {name:"\u5DDD\u5C06", player:0}, {name:"\u5C71\u5C06", player:0}, {name:"\u524D\u65D7", player:0}, {name:"\u99AC\u5175", player:0}, {name:"\u6728\u5C06", player:0}, {name:"\u725B\u5175", player:0}, {name:"\u571F\u5C06", player:0}, {name:"\u732A\u5175", player:0}, {name:"\u77F3\u5C06", player:0}, {name:"\u8C79\u5175", player:0}, {name:"\u74E6\u5C06", player:0}, {name:"\u718A\u5175", player:0}, {name:"\u9244\u5C06", player:0}, {name:"\u5927\u5E2B", player:0}, {name:"\u5927\u65D7", player:0}, {name:"\u9244\u5C06", player:0}, {name:"\u718A\u5175", player:0}, {name:"\u74E6\u5C06", player:0}, {name:"\u8C79\u5175", player:0}, {name:"\u77F3\u5C06", player:0}, {name:"\u732A\u5175", player:0}, {name:"\u571F\u5C06", player:0}, {name:"\u725B\u5175", player:0}, {name:"\u6728\u5C06", player:0}, {name:"\u99AC\u5175", player:0}, {name:"\u524D\u65D7", player:0}, {name:"\u5C71\u5C06", player:0}, {name:"\u5DDD\u5C06", player:0}, {name:"\u98A8\u5C06", player:0}, {name:"\u7AEA\u5175", player:0}, {name:"\u6A2A\u5175", player:0}, {name:"\u8ECA\u5175", player:0}]; FirstBoard[28] = [{name:"\u571F\u8ECA", player:0}, {name:"\u9752\u9F8D", player:0}, {name:"\u5909\u72F8", player:0}, {name:"\u9A0E\u5175", player:0}, {name:"\u9D1F\u884C", player:0}, {name:"\u767B\u733F", player:0}, {name:"\u732B\u5204", player:0}, {name:"\u71D5\u7FBD", player:0}, {name:"\u76F2\u733F", player:0}, {name:"\u76F2\u864E", player:0}, {name:"\u725B\u8ECA", player:0}, {name:"\u6A2A\u98DB", player:0}, {name:"\u76F2\u718A", player:0}, {name:"\u8001\u9F20", player:0}, {name:"\u65B9\u884C", player:0}, {name:"\u87E0\u86C7", player:0}, {name:"\u81E5\u9F8D", player:0}, {name:"\u7345\u9DF9", player:0}, {name:"\u5954\u9DF2", player:0}, {name:"\u81E5\u9F8D", player:0}, {name:"\u87E0\u86C7", player:0}, {name:"\u65B9\u884C", player:0}, {name:"\u8001\u9F20", player:0}, {name:"\u76F2\u718A", player:0}, {name:"\u6A2A\u98DB", player:0}, {name:"\u725B\u8ECA", player:0}, {name:"\u76F2\u864E", player:0}, {name:"\u76F2\u733F", player:0}, {name:"\u71D5\u7FBD", player:0}, {name:"\u732B\u5204", player:0}, {name:"\u767B\u733F", player:0}, {name:"\u9D1F\u884C", player:0}, {name:"\u9A0E\u5175", player:0}, {name:"\u5909\u72F8", player:0}, {name:"\u6731\u96C0", player:0}, {name:"\u571F\u8ECA", player:0}]; FirstBoard[29] = [{name:"\u74E6\u8ECA", player:0}, {name:"\u7AEA\u72FC", player:0}, {name:"\u6A2A\u725B", player:0}, {name:"\u9A62\u99AC", player:0}, {name:"\u99AC\u9E9F", player:0}, {name:"\u731B\u718A", player:0}, {name:"\u55D4\u732A", player:0}, {name:"\u60AA\u72FC", player:0}, {name:"\u98A8\u99AC", player:0}, {name:"\u9D8F\u98DB", player:0}, {name:"\u53E4\u733F", player:0}, {name:"\u6DEE\u9D8F", player:0}, {name:"\u897F\u620E", player:0}, {name:"\u6771\u5937", player:0}, {name:"\u731B\u9E7F", player:0}, {name:"\u731B\u72FC", player:0}, {name:"\u96A0\u72D0", player:0}, {name:"\u9D6C\u5E2B", player:0}, {name:"\u4E2D\u5E2B", player:0}, {name:"\u96A0\u72D0", player:0}, {name:"\u731B\u72FC", player:0}, {name:"\u731B\u9E7F", player:0}, {name:"\u5357\u86EE", player:0}, {name:"\u5317\u72C4", player:0}, {name:"\u6DEE\u9D8F", player:0}, {name:"\u53E4\u733F", player:0}, {name:"\u9D8F\u98DB", player:0}, {name:"\u98A8\u99AC", player:0}, {name:"\u60AA\u72FC", player:0}, {name:"\u55D4\u732A", player:0}, {name:"\u731B\u718A", player:0}, {name:"\u99AC\u9E9F", player:0}, {name:"\u9A62\u99AC", player:0}, {name:"\u6A2A\u725B", player:0}, {name:"\u7AEA\u72FC", player:0}, {name:"\u74E6\u8ECA", player:0}]; FirstBoard[30] = [{name:"\u6728\u8ECA", player:0}, {name:"\u767D\u99D2", player:0}, {name:"\u5947\u72AC\u5DE6", player:0}, {name:"\u6A2A\u884C", player:0}, {name:"\u8E0A\u9E7F", player:0}, {name:"\u6C34\u725B", player:0}, {name:"\u731B\u8C79", player:0}, {name:"\u731B\u9DF2", player:0}, {name:"\u98DB\u9F8D", player:0}, {name:"\u6BD2\u86C7", player:0}, {name:"\u9CEB\u98DB", player:0}, {name:"\u70CF\u884C", player:0}, {name:"\u76F2\u72AC", player:0}, {name:"\u6C34\u5C06", player:0}, {name:"\u706B\u5C06", player:0}, {name:"\u9E92\u9E9F", player:0}, {name:"\u6469\u7FAF", player:0}, {name:"\u5927\u4E80", player:0}, {name:"\u5C0F\u4E80", player:0}, {name:"\u9264\u884C", player:0}, {name:"\u9CF3\u51F0", player:0}, {name:"\u706B\u5C06", player:0}, {name:"\u6C34\u5C06", player:0}, {name:"\u76F2\u72AC", player:0}, {name:"\u70CF\u884C", player:0}, {name:"\u9CEB\u98DB", player:0}, {name:"\u6BD2\u86C7", player:0}, {name:"\u98DB\u9F8D", player:0}, {name:"\u731B\u9DF2", player:0}, {name:"\u731B\u8C79", player:0}, {name:"\u6C34\u725B", player:0}, {name:"\u8E0A\u9E7F", player:0}, {name:"\u6A2A\u884C", player:0}, {name:"\u5947\u72AC\u53F3", player:0}, {name:"\u767D\u99D2", player:0}, {name:"\u6728\u8ECA", player:0}]; FirstBoard[31] = [{name:"\u77F3\u8ECA", player:0}, {name:"\u96F2\u9DF2", player:0}, {name:"\u89D2\u884C", player:0}, {name:"\u98DB\u8ECA", player:0}, {name:"\u6A2A\u72FC", player:0}, {name:"\u98DB\u732B", player:0}, {name:"\u5C71\u9DF9", player:0}, {name:"\u7AEA\u864E", player:0}, {name:"\u5175\u58EB", player:0}, {name:"\u5C0F\u65D7", player:0}, {name:"\u96F2\u9F8D", player:0}, {name:"\u9285\u8ECA", player:0}, {name:"\u8D70\u8ECA", player:0}, {name:"\u7F8A\u5175", player:0}, {name:"\u731B\u725B", player:0}, {name:"\u5927\u9F8D", player:0}, {name:"\u91D1\u7FC5", player:0}, {name:"\u63D0\u5A46", player:0}, {name:"\u7121\u660E", player:0}, {name:"\u91D1\u7FC5", player:0}, {name:"\u5927\u9F8D", player:0}, {name:"\u731B\u725B", player:0}, {name:"\u7F8A\u5175", player:0}, {name:"\u8D70\u8ECA", player:0}, {name:"\u9285\u8ECA", player:0}, {name:"\u96F2\u9F8D", player:0}, {name:"\u5C0F\u65D7", player:0}, {name:"\u5175\u58EB", player:0}, {name:"\u7AEA\u864E", player:0}, {name:"\u5C71\u9DF9", player:0}, {name:"\u98DB\u732B", player:0}, {name:"\u6A2A\u72FC", player:0}, {name:"\u98DB\u8ECA", player:0}, {name:"\u89D2\u884C", player:0}, {name:"\u96F2\u9DF2", player:0}, {name:"\u77F3\u8ECA", player:0}]; FirstBoard[32] = [{name:"\u9280\u8ECA", player:0}, {name:"\u7AEA\u718A", player:0}, {name:"\u6842\u99AC", player:0}, {name:"\u8C5A\u5C06", player:0}, {name:"\u9D8F\u5C06", player:0}, {name:"\u72D7\u5C06", player:0}, {name:"\u99AC\u5C06", player:0}, {name:"\u725B\u5C06", player:0}, {name:"\u4E2D\u65D7", player:0}, {name:"\u6A2A\u732A", player:0}, {name:"\u9280\u514E", player:0}, {name:"\u91D1\u9E7F", player:0}, {name:"\u7345\u5B50", player:0}, {name:"\u79BD\u66F9", player:0}, {name:"\u5927\u9E7F", player:0}, {name:"\u731B\u9F8D", player:0}, {name:"\u6797\u9B3C", player:0}, {name:"\u5927\u5C06", player:0}, {name:"\u526F\u5C06", player:0}, {name:"\u6797\u9B3C", player:0}, {name:"\u731B\u9F8D", player:0}, {name:"\u5927\u9E7F", player:0}, {name:"\u79BD\u66F9", player:0}, {name:"\u7345\u5B50", player:0}, {name:"\u91D1\u9E7F", player:0}, {name:"\u9280\u514E", player:0}, {name:"\u6A2A\u732A", player:0}, {name:"\u4E2D\u65D7", player:0}, {name:"\u725B\u5C06", player:0}, {name:"\u99AC\u5C06", player:0}, {name:"\u72D7\u5C06", player:0}, {name:"\u9D8F\u5C06", player:0}, {name:"\u8C5A\u5C06", player:0}, {name:"\u6842\u99AC", player:0}, {name:"\u7AEA\u718A", player:0}, {name:"\u9280\u8ECA", player:0}]; FirstBoard[33] = [{name:"\u91D1\u8ECA", player:0}, {name:"\u6A2A\u9F8D", player:0}, {name:"\u8D70\u9E7F", player:0}, {name:"\u8D70\u72FC", player:0}, {name:"\u89D2\u5C06", player:0}, {name:"\u98DB\u5C06", player:0}, {name:"\u5DE6\u864E", player:0}, {name:"\u5DE6\u9F8D", player:0}, {name:"\u7363\u540F", player:0}, {name:"\u98A8\u9F8D", player:0}, {name:"\u5954\u72D7", player:0}, {name:"\u884C\u9CE5", player:0}, {name:"\u53E4\u9D44", player:0}, {name:"\u5B54\u96C0", player:0}, {name:"\u6C34\u9F8D", player:0}, {name:"\u706B\u9F8D", player:0}, {name:"\u9285\u5C06", player:0}, {name:"\u9E9F\u5E2B", player:0}, {name:"\u9CF3\u5E2B", player:0}, {name:"\u9285\u5C06", player:0}, {name:"\u706B\u9F8D", player:0}, {name:"\u6C34\u9F8D", player:0}, {name:"\u5B54\u96C0", player:0}, {name:"\u53E4\u9D44", player:0}, {name:"\u884C\u9CE5", player:0}, {name:"\u5954\u72D7", player:0}, {name:"\u98A8\u9F8D", player:0}, {name:"\u7363\u540F", player:0}, {name:"\u53F3\u9F8D", player:0}, {name:"\u53F3\u864E", player:0}, {name:"\u98DB\u5C06", player:0}, {name:"\u89D2\u5C06", player:0}, {name:"\u8D70\u72FC", player:0}, {name:"\u8D70\u9E7F", player:0}, {name:"\u6A2A\u9F8D", player:0}, {name:"\u91D1\u8ECA", player:0}]; FirstBoard[34] = [{name:"\u53CD\u8ECA", player:0}, {name:"\u767D\u8C61", player:0}, {name:"\u5C71\u9CE9", player:0}, {name:"\u98DB\u71D5", player:0}, {name:"\u79BD\u540F", player:0}, {name:"\u96E8\u9F8D", player:0}, {name:"\u68EE\u9B3C", player:0}, {name:"\u5C71\u9E7F", player:0}, {name:"\u8D70\u72D7", player:0}, {name:"\u8D70\u86C7", player:0}, {name:"\u6A2A\u86C7", player:0}, {name:"\u5927\u9CE9", player:0}, {name:"\u8D70\u864E", player:0}, {name:"\u8D70\u718A", player:0}, {name:"\u7F85\u5239", player:0}, {name:"\u529B\u58EB", player:0}, {name:"\u9280\u5C06", player:0}, {name:"\u8FD1\u738B", player:0}, {name:"\u9154\u8C61", player:0}, {name:"\u9280\u5C06", player:0}, {name:"\u91D1\u525B", player:0}, {name:"\u591C\u5204", player:0}, {name:"\u8D70\u718A", player:0}, {name:"\u8D70\u864E", player:0}, {name:"\u5927\u9CE9", player:0}, {name:"\u6A2A\u86C7", player:0}, {name:"\u8D70\u86C7", player:0}, {name:"\u8D70\u72D7", player:0}, {name:"\u5C71\u9E7F", player:0}, {name:"\u68EE\u9B3C", player:0}, {name:"\u96E8\u9F8D", player:0}, {name:"\u79BD\u540F", player:0}, {name:"\u98DB\u71D5", player:0}, {name:"\u5C71\u9CE9", player:0}, {name:"\u9999\u8C61", player:0}, {name:"\u53CD\u8ECA", player:0}]; FirstBoard[35] = [{name:"\u9999\u8ECA", player:0}, {name:"\u7384\u6B66", player:0}, {name:"\u8D70\u514E", player:0}, {name:"\u9BE8\u9BE2", player:0}, {name:"\u706B\u9B3C", player:0}, {name:"\u5C71\u9DF2\u5DE6", player:0}, {name:"\u5929\u72D7", player:0}, {name:"\u7363\u66F9", player:0}, {name:"\u8D70\u99AC", player:0}, {name:"\u5954\u9B3C", player:0}, {name:"\u5730\u9F8D", player:0}, {name:"\u9CE9\u76E4", player:0}, {name:"\u5954\u734F", player:0}, {name:"\u5954\u738B", player:0}, {name:"\u5F8C\u65D7", player:0}, {name:"\u5DE6\u5C06", player:0}, {name:"\u91D1\u5C06", player:0}, {name:"\u7389\u5C06", player:0}, {name:"\u592A\u5B50", player:0}, {name:"\u91D1\u5C06", player:0}, {name:"\u53F3\u5C06", player:0}, {name:"\u5F8C\u65D7", player:0}, {name:"\u5954\u738B", player:0}, {name:"\u5954\u734F", player:0}, {name:"\u9CE9\u69C3", player:0}, {name:"\u5730\u9F8D", player:0}, {name:"\u5954\u9B3C", player:0}, {name:"\u8D70\u99AC", player:0}, {name:"\u7363\u66F9", player:0}, {name:"\u5929\u72D7", player:0}, {name:"\u5C71\u9DF2\u53F3", player:0}, {name:"\u706B\u9B3C", player:0}, {name:"\u9BE8\u9BE2", player:0}, {name:"\u8D70\u514E", player:0}, {name:"\u767D\u864E", player:0}, {name:"\u9999\u8ECA", player:0}]; board_x = 18; board_y = 40; piece_x = 27; piece_y = 27; var iStart; var jStart; var iGoal; var jGoal; var SecondMoveFlag; NowTurn = 0; curPlayer = 0; MAXHIST = 20; History = new Array(); Hcount = new Array(); tmpHist = new Array(); gotoAndPlay (9);
Frame 5
function SetBoard(boardtxt) { var tmpBoard = boardtxt.split("_"); i = 0; while (i < 36) { j = 0; while (j < 36) { tname = tmpBoard[((i * 36) + j) * 3]; tnari = tmpBoard[((i * 36) + j) * 3] + 1; tplayer = tmpBoard[(((i * 36) + j) * 3) + 2]; UnHisMasuSet(i, j, name, nari, player); j++; } i++; } } function MakeBoardText() { boardtxt = ""; i = 0; while (i < 36) { j = 0; while (j < 36) { MsetObj = eval ((("MObj_" + i) + "_") + j); boardtxt = boardtxt + (((((MsetObj.name + "_") + MsetObj.nari) + "_") + MsetObj.player) + "_"); j++; } i++; } return(boardtxt); } function SetRec(kifutxt, recdata) { record.text = kifutxt; History = new Array(); tmp = recdata.split("Z"); i = 0; while (i < (tmp.length - 1)) { History.push(tmp[i].split("_")); i++; } } function MakeRecData() { recdata = ""; i = 0; while (i < History.length) { recdata = recdata + (History[i].join("_") + "Z"); i++; } return(recdata); } function SetStatus(boardtxt, kifutxt, recdata) { SetBoard(boardtxt); SetRec(kifutxt, recdata); }
Frame 10
i = 0; while (i < 36) { j = 0; while (j < 36) { MasuMake(i, j); j++; } i++; } i = 0; while (i < 36) { j = 0; while (j < 36) { UnHisMasuSet(i, j, FirstBoard[i][j].name, 0, FirstBoard[i][j].player); j++; } i++; } TxtWin.duplicateMovieClip("TextWindow", 9990); TextWindow._visible = false; TextWindow._x = 530; TextWindow._y = 500; LstHnd.duplicateMovieClip("LastHand", 9970); LastHand._x = -100; LastHand._y = -100; LHi = -10; LHj = -10;
Frame 11
function SetGuide(ipos, jpos) { MsetObj = eval ((("MObj_" + ipos) + "_") + jpos); tmpsname = MsetObj.name; if (!((((0 <= ipos) && (ipos < 36)) && (0 <= jpos)) && (jpos < 36))) { return(undefined); } if (tmpsname != "0") { Guide.BoardMain.SetGuide(tmpsname); Guide.PieceName.SetText(tmpsname); if (MsetObj.nari == 0) { Guide.BoardNari.SetGuide(PieceData[tmpsname].nari); Guide.NariName.SetText(PieceData[tmpsname].nari); } else { Guide.BoardNari.SetGuide("0"); Guide.NariName.SetText("0"); } } if (MsetObj.player == 1) { Guide.BoardMain._rotation = 180; Guide.BoardNari._rotation = 180; } else if (MsetObj.player == 0) { Guide.BoardMain._rotation = 0; Guide.BoardNari._rotation = 0; } } function Distence(ishift, jshift) { if ((ishift == -1) && (jshift == 0)) { return(1); } if ((ishift == -1) && (jshift == -1)) { return(2); } if ((ishift == -1) && (jshift == 1)) { return(3); } if ((ishift == 0) && (jshift == -1)) { return(4); } if ((ishift == 0) && (jshift == 1)) { return(5); } if ((ishift == 1) && (jshift == -1)) { return(6); } if ((ishift == 1) && (jshift == 1)) { return(7); } if ((ishift == 1) && (jshift == 0)) { return(8); } return(-1); } function UnDistence(t) { if ((10 < t) && (t <= 20)) { return({ishift:-1, jshift:0}); } if ((20 < t) && (t <= 30)) { return({ishift:-1, jshift:-1}); } if ((30 < t) && (t <= 40)) { return({ishift:-1, jshift:1}); } if ((40 < t) && (t <= 50)) { return({ishift:0, jshift:-1}); } if ((50 < t) && (t <= 60)) { return({ishift:0, jshift:1}); } if ((60 < t) && (t <= 70)) { return({ishift:1, jshift:-1}); } if ((70 < t) && (t <= 80)) { return({ishift:1, jshift:1}); } if ((80 < t) && (t <= 90)) { return({ishift:1, jshift:0}); } return(-1); } function Level(name) { switch (name) { case "\u738B\u5C06" : case "\u7389\u5C06" : case "\u592A\u5B50" : return(5); case "\u5927\u5C06" : return(4); case "\u526F\u5C06" : return(3); case "\u89D2\u5C06" : case "\u98DB\u5C06" : case "\u731B\u9F8D" : case "\u98DB\u9C10" : return(2); case "0" : return(0); } return(1); } function SetLight(reality) { i = 0; while (i < MovableArray.length) { MsetObj = eval ((("MObj_" + MovableArray[i * 3]) + "_") + MovableArray[(i * 3) + 1]); if ((MovableArray[(i * 3) + 2] == 0) || (MovableArray[(i * 3) + 2] == 100)) { if (reality == 1) { MsetObj.Base.gotoAndStop(2); } else { MsetObj.Base.gotoAndStop(4); } } else if (reality == 1) { MsetObj.Base.gotoAndStop(3); } else { MsetObj.Base.gotoAndStop(5); } i++; } } function RemoveLight() { i = 0; while (i < MovableArray.length) { MsetObj = eval ((("MObj_" + MovableArray[i * 3]) + "_") + MovableArray[(i * 3) + 1]); MsetObj.Base.gotoAndStop(1); i++; } while (MovableArray.length != 0) { MovableArray.pop(); } } function GetPlayer(ipos, jpos) { if ((((0 <= ipos) && (ipos < 36)) && (0 <= jpos)) && (jpos < 36)) { MsetObj = eval ((("MObj_" + ipos) + "_") + jpos); return(MsetObj.player); } return(-1); } function AddMovable(ipos, jpos, secondflag, cplayer) { if ((((0 <= ipos) && (ipos < 36)) && (0 <= jpos)) && (jpos < 36)) { if (GetPlayer(ipos, jpos) != cplayer) { MovableArray.push(ipos, jpos, secondflag); } } } function SetMovableFlag(icenter, jcenter, isft, jsft, cplayer, movetype) { walk = 0; jump = 0; special = 0; ishift = isft; jshift = jsft; if (cplayer == 1) { ishift = ishift * -1; jshift = jshift * -1; } switch (movetype) { case 0 : break; case 1 : case 2 : case 3 : case 4 : case 5 : case 6 : case 7 : walk = movetype; break; case 62 : jump = 2; break; case 63 : jump = 3; break; case 99 : walk = 36; break; case 102 : walk = 36; jump = 2; break; case 103 : walk = 36; jump = 3; break; case 111 : special = 1; break; case 112 : special = 2; walk = 36; break; case 113 : special = 3; break; case 121 : special = 4; walk = 36; break; case 122 : special = 5; walk = 36; break; case 123 : special = 6; walk = 36; break; case 124 : special = 7; break; case 125 : special = 8; break; } k = 1; while (k <= walk) { AddMovable(icenter + (ishift * k), jcenter + (jshift * k), 0, cplayer); if (GetPlayer(icenter + (ishift * k), jcenter + (jshift * k)) != -1) { break; } k++; } if (jump == 2) { AddMovable(icenter + (ishift * 2), jcenter + (jshift * 2), 0, cplayer); } if (jump == 3) { AddMovable(icenter + (ishift * 3), jcenter + (jshift * 3), 0, cplayer); } if (special == 1) { k = 1; while (k <= 36) { AddMovable(icenter + (ishift * k), jcenter + (jshift * k), 0, cplayer); k++; } } if (special == 2) { MsetObj = eval ((("MObj_" + icenter) + "_") + jcenter); clevel = Level(MsetObj.name); k = 1; while (k <= 36) { if (!((((0 <= (icenter + (ishift * k))) && ((icenter + (ishift * k)) < 36)) && (0 <= (jcenter + (jshift * k)))) && ((jcenter + (jshift * k)) < 36))) { prelimit = k; break; } MsetObj = eval ((("MObj_" + (icenter + (ishift * k))) + "_") + (jcenter + (jshift * k))); if (clevel <= Level(MsetObj.name)) { prelimit = k; break; } k++; } k = prelimit - 1; while (k >= 0) { if (k == 0) { limit = 0; break; } MsetObj = eval ((("MObj_" + (icenter + (ishift * k))) + "_") + (jcenter + (jshift * k))); if (MsetObj.player == -1) { limit = k; break; } k--; } k = 1; while (k <= limit) { MsetObj = eval ((("MObj_" + (icenter + (ishift * k))) + "_") + (jcenter + (jshift * k))); if (MsetObj.player == -1) { AddMovable(icenter + (ishift * k), jcenter + (jshift * k), 100, cplayer); } k++; } } if (special == 3) { jumped = 0; k = 1; while (k <= 36) { AddMovable(icenter + (ishift * k), jcenter + (jshift * k), 0, cplayer); if (GetPlayer(icenter + (ishift * k), jcenter + (jshift * k)) != -1) { if (jumped >= 3) { break; } jumped++; } k++; } } if (special == 4) { k = 3; while (k <= 5) { AddMovable(icenter + (ishift * k), jcenter + (jshift * k), 0, cplayer); if (GetPlayer(icenter + (ishift * k), jcenter + (jshift * k)) != -1) { break; } k++; } } if (special == 5) { dist = Distence(ishift, jshift) * 10; AddMovable(icenter + ishift, jcenter + jshift, dist + 2, cplayer); AddMovable(icenter + (ishift * 2), jcenter + (jshift * 2), dist + 1, cplayer); AddMovable(icenter + (ishift * 3), jcenter + (jshift * 3), 0, cplayer); } if (special == 6) { dist = Distence(ishift, jshift) * 10; AddMovable(icenter + ishift, jcenter + jshift, dist + 7, cplayer); AddMovable(icenter + (ishift * 2), jcenter + (jshift * 2), dist + 6, cplayer); AddMovable(icenter + (ishift * 3), jcenter + (jshift * 3), dist + 5, cplayer); AddMovable(icenter + (ishift * 4), jcenter + (jshift * 4), 0, cplayer); } if ((special == 7) || (special == 8)) { k = 1; while (k < 36) { AddMovable(icenter + (ishift * k), jcenter + (jshift * k), 0, cplayer); if (GetPlayer(icenter + (ishift * k), jcenter + (jshift * k)) != -1) { return; } if (!((((0 <= (icenter + (ishift * k))) && ((icenter + (ishift * k)) < 36)) && (0 <= (jcenter + (jshift * k)))) && ((jcenter + (jshift * k)) < 36))) { return; } m = 1; while (m < 36) { AddMovable((icenter + (ishift * k)) + (jshift * m), (jcenter + (jshift * k)) - (ishift * m), 0, cplayer); if (GetPlayer((icenter + (ishift * k)) + (jshift * m), (jcenter + (jshift * k)) - (ishift * m)) != -1) { break; } m++; } n = 1; while (n < 36) { AddMovable((icenter + (ishift * k)) - (jshift * n), (jcenter + (jshift * k)) + (ishift * n), 0, cplayer); if (GetPlayer((icenter + (ishift * k)) - (jshift * n), (jcenter + (jshift * k)) + (ishift * n)) != -1) { break; } n++; } k++; } } } function SetMovableSP(icenter, jcenter, cplayer, movetype) { if (movetype == 1) { i = -2; while (i <= 2) { j = -2; while (j <= 2) { if ((((-1 <= i) && (i <= 1)) && (-1 <= j)) && (j <= 1)) { secondflag = 1; } else { secondflag = 0; } AddMovable(icenter + i, jcenter + j, secondflag, cplayer); j++; } i++; } } else if (movetype == 2) { if (cplayer == 0) { AddMovable(icenter - 2, jcenter - 1, 0, cplayer); AddMovable(icenter - 2, jcenter + 1, 0, cplayer); } else { AddMovable(icenter + 2, jcenter - 1, 0, cplayer); AddMovable(icenter + 2, jcenter + 1, 0, cplayer); } } else if (movetype == 3) { AddMovable(icenter - 2, jcenter - 1, 0, cplayer); AddMovable(icenter - 2, jcenter + 1, 0, cplayer); AddMovable(icenter + 2, jcenter - 1, 0, cplayer); AddMovable(icenter + 2, jcenter + 1, 0, cplayer); } } function SecondLight(ipos, jpos, secondflag, player) { if (secondflag == 0) { return(undefined); } RemoveLight(); if (secondflag == 1) { AddMovable(ipos, jpos, 0, -1); i = -1; while (i <= 1) { j = -1; while (j <= 1) { AddMovable(ipos + i, jpos + j, 0, player); j++; } i++; } } if ((10 < secondflag) && (secondflag <= 90)) { AddMovable(ipos, jpos, 0, -1); isft = UnDistence(secondflag).ishift; jsft = UnDistence(secondflag).jshift; dist = secondflag % 10; distnum = Math.floor(secondflag / 10) * 10; switch (dist) { case 7 : AddMovable(ipos + isft, jpos + jsft, distnum + 6, player); AddMovable(ipos - isft, jpos - jsft, 0, player); break; case 6 : AddMovable(ipos + isft, jpos + jsft, distnum + 5, player); break; case 5 : AddMovable(ipos + isft, jpos + jsft, 0, player); break; case 2 : AddMovable(ipos + isft, jpos + jsft, distnum + 1, player); AddMovable(ipos - isft, jpos - jsft, 0, player); break; case 1 : AddMovable(ipos + isft, jpos + jsft, 0, player); } } SetLight(1); iStart = ipos; jStart = jpos; } function Choice(ipos, jpos) { if ((((ipos < 0) || (36 <= ipos)) || (jpos < 0)) || (36 <= jpos)) { return(undefined); } RemoveLight(); if ((((0 <= ipos) && (ipos < 36)) && (0 <= jpos)) && (jpos < 36)) { MsetObj = eval ((("MObj_" + ipos) + "_") + jpos); chname = MsetObj.name; chplayer = MsetObj.player; SetMovableFlag(ipos, jpos, -1, 0, chplayer, PieceData[chname].move[0]); SetMovableFlag(ipos, jpos, -1, -1, chplayer, PieceData[chname].move[1]); SetMovableFlag(ipos, jpos, -1, 1, chplayer, PieceData[chname].move[2]); SetMovableFlag(ipos, jpos, 0, -1, chplayer, PieceData[chname].move[3]); SetMovableFlag(ipos, jpos, 0, 1, chplayer, PieceData[chname].move[4]); SetMovableFlag(ipos, jpos, 1, -1, chplayer, PieceData[chname].move[5]); SetMovableFlag(ipos, jpos, 1, 1, chplayer, PieceData[chname].move[6]); SetMovableFlag(ipos, jpos, 1, 0, chplayer, PieceData[chname].move[7]); SetMovableSP(ipos, jpos, chplayer, PieceData[chname].move[8]); } if (chplayer == curPlayer) { PIdentity = 1; } else { PIdentity = 0; } SetLight(PIdentity); iStart = ipos; jStart = jpos; if (MovableArray.length > 0) { gotoAndPlay (13); } else { gotoAndPlay (11); } } MovableArray = new Array();
Instance of Symbol 280 MovieClip in Frame 11
onClipEvent (mouseDown) { if (_root.TextWindow._visible == false) { ipos = _root.YtoIPos(_root._ymouse); jpos = _root.XtoJPos(_root._xmouse); _root.SetGuide(ipos, jpos); _root.Choice(ipos, jpos); } }
Frame 12
gotoAndPlay(_currentframe - 1);
Frame 13
function Moved(ipos, jpos) { if ((((ipos < 0) || (36 <= ipos)) || (jpos < 0)) || (36 <= jpos)) { return(undefined); } iGoal = 0; jGoal = 0; Nariable = false; SecondMoveFlag = 0; isMove = false; if (PIdentity == 1) { i = MovableArray.length - 3; while (i >= 0) { if ((MovableArray[i] == ipos) && (MovableArray[i + 1] == jpos)) { GoNext(); iGoal = MovableArray[i]; jGoal = MovableArray[i + 1]; SecondMoveFlag = MovableArray[i + 2]; MStartObj = eval ((("MObj_" + iStart) + "_") + jStart); tmpname = MStartObj.name; tmpplayer = MStartObj.player; if (((MStartObj.player == 0) && ((iGoal < 11) || (iStart < 11))) || ((MStartObj.player == 1) && ((iGoal >= 25) || (iStart >= 25)))) { if ((PieceData[MStartObj.name].nari != "0") && (MStartObj.nari == 0)) { Nariable = true; } } MasuSet(iGoal, jGoal, MStartObj.name, MStartObj.nari, MStartObj.player); MasuSet(iStart, jStart, "0", 0, -1); if (SecondMoveFlag == 100) { SecondMoveFlag = 0; if (iGoal < iStart) { ishift = -1; dist = -(iGoal - iStart); } else if (iGoal == iStart) { ishift = 0; } else { ishift = 1; dist = iGoal - iStart; } if (jGoal < jStart) { jshift = -1; dist = -(jGoal - jStart); } else if (jGoal == jStart) { jshift = 0; } else { jshift = 1; dist = jGoal - jStart; } k = 1; while (k < dist) { MasuSet(iStart + (ishift * k), jStart + (jshift * k), "0", 0, -1); k++; } } isMove = true; break; } i = i - 3; } } RemoveLight(); if (isMove == false) { SetGuide(ipos, jpos); Choice(ipos, jpos); return(undefined); } MStext = ("(" + PosText(iStart, jStart)) + ")"; addtemp = (newline + PText(tmpplayer)) + PosText(iGoal, jGoal); if (SecondMoveFlag == 0) { addtemp = addtemp + tmpname; if (Nariable == false) { AddText(addtemp + MStext); } } LHi = iGoal; LHj = jGoal; MGoalObj = eval ((("MObj_" + iGoal) + "_") + jGoal); SecondLight(iGoal, jGoal, SecondMoveFlag, MGoalObj.player); if (SecondMoveFlag != 0) { gotoAndPlay (17); } else if (Nariable == true) { NariWinDum.duplicateMovieClip("NariWin", 10000); NariWin._x = 500; NariWin._y = 500; gotoAndPlay (15); } else { EndTurn(); gotoAndPlay (11); } }
Instance of Symbol 280 MovieClip in Frame 13
onClipEvent (mouseDown) { ipos = _root.YtoIPos(_root._ymouse); jpos = _root.XtoJPos(_root._xmouse); _root.Moved(ipos, jpos); }
Frame 14
gotoAndPlay(_currentframe - 1);
Frame 15
function Nari() { MsetObj = eval ((("MObj_" + iGoal) + "_") + jGoal); MasuSet(iGoal, jGoal, PieceData[MsetObj.name].nari, 1, MsetObj.player); NariWin.RemoveMovieClip(); AddText((addtemp + "\u6210") + MStext); EndTurn(); gotoAndPlay (11); } function Narazu() { NariWin.RemoveMovieClip(); AddText((addtemp + "\u4E0D\u6210") + MStext); EndTurn(); gotoAndPlay (11); }
Instance of Symbol 280 MovieClip in Frame 15
onClipEvent (mouseDown) { }
Frame 16
gotoAndPlay(_currentframe - 1);
Frame 17
function SecondMove(ipos, jpos) { if ((((ipos < 0) || (36 <= ipos)) || (jpos < 0)) || (36 <= jpos)) { return(undefined); } iGoal = 0; jGoal = 0; SecondMoveFlag = 0; isMove = false; i = 0; while (i < MovableArray.length) { if ((MovableArray[i] == ipos) && (MovableArray[i + 1] == jpos)) { isMove = true; iGoal = MovableArray[i]; jGoal = MovableArray[i + 1]; SecondMoveFlag = MovableArray[i + 2]; MStartObj = eval ((("MObj_" + iStart) + "_") + jStart); if (((MStartObj.player == 0) && ((iGoal < 11) || (iStart < 11))) || ((MStartObj.player == 1) && ((iGoal >= 25) || (iStart >= 25)))) { if ((PieceData[MStartObj.name].nari != "0") && (MStartObj.nari == 0)) { Nariable = true; } } MasuSet(iGoal, jGoal, MStartObj.name, MStartObj.nari, MStartObj.player); if ((iGoal != iStart) || (jGoal != jStart)) { MasuSet(iStart, jStart, "0", 0, -1); } RemoveLight(); break; } i = i + 3; } if (isMove == false) { return(undefined); } if ((iStart != iGoal) || (jStart != jGoal)) { addtemp = addtemp + ("\n\u3000" + PosText(iGoal, jGoal)); } if (SecondMoveFlag == 0) { addtemp = addtemp + tmpname; if (Nariable == false) { AddText(addtemp + MStext); } } MGoalObj = eval ((("MObj_" + iGoal) + "_") + jGoal); SecondLight(iGoal, jGoal, SecondMoveFlag, MGoalObj.player); if (SecondMoveFlag != 0) { gotoAndPlay (17); } else if (Nariable == true) { NariWinDum.duplicateMovieClip("NariWin", 10000); NariWin._x = 500; NariWin._y = 500; gotoAndPlay (15); } else { EndTurn(); gotoAndPlay (11); } }
Instance of Symbol 280 MovieClip in Frame 17
onClipEvent (mouseDown) { ipos = _root.YtoIPos(_root._ymouse); jpos = _root.XtoJPos(_root._xmouse); _root.SecondMove(ipos, jpos); }
Frame 18
gotoAndPlay(_currentframe - 1);
Symbol 11 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 17 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 23 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame4, "shadow"); component.registerSkinElement(frame2, "darkshadow"); component.registerSkinElement(frame3, "highlight"); component.registerSkinElement(frame1, "highlight3D");
Symbol 29 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 30 MovieClip [fpb_states] Frame 1
stop();
Symbol 30 MovieClip [fpb_states] Frame 2
stop();
Symbol 30 MovieClip [fpb_states] Frame 3
stop();
Symbol 30 MovieClip [fpb_states] Frame 4
stop();
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 [FPushButtonSymbol] Frame 1
#initclip 6 function FPushButtonClass() { this.init(); } FPushButtonClass.prototype = new FUIComponentClass(); Object.registerClass("FPushButtonSymbol", FPushButtonClass); FPushButtonClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fpb_states", "fpbState_mc", 1); this.attachMovie("FLabelSymbol", "fLabel_mc", 2); this.attachMovie("fpb_hitArea", "fpb_hitArea_mc", 3); super.init(); this.btnState = false; this.setClickHandler(this.clickHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_PUSHBUTTON = 43; this.STATE_SYSTEM_PRESSED = 8; 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; }; FPushButtonClass.prototype.setHitArea = function (w, h) { var hit = this.fpb_hitArea_mc; this.hitArea = hit; hit._visible = false; hit._width = w; hit._height = ((arguments.length > 1) ? (h) : (hit._height)); }; FPushButtonClass.prototype.setSize = function (w, h) { w = ((w < 6) ? 6 : (w)); if (arguments.length > 1) { if (h < 6) { h = 6; } } super.setSize(w, h); this.setLabel(this.getLabel()); this.arrangeLabel(); this.setHitArea(w, h); this.boundingBox_mc._width = w; this.boundingBox_mc._height = h; this.drawFrame(); if (this.focused) { super.myOnSetFocus(); } this.initContentPos("fLabel_mc"); }; FPushButtonClass.prototype.arrangeLabel = function () { var label = this.fLabel_mc; var h = this.height; var w = (this.width - 2); var b = 1; this.fLabel_mc.setSize(w - (b * 4)); label._x = b * 3; label._y = (h / 2) - (label._height / 2); }; FPushButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FPushButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); this.arrangeLabel(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FPushButtonClass.prototype.getEnabled = function () { return(this.enabled); }; FPushButtonClass.prototype.setEnabled = function (enable) { if (enable || (enable == undefined)) { this.gotoFrame(1); this.drawFrame(); this.flabel_mc.setEnabled(true); this.enabled = true; super.setEnabled(true); } else { this.gotoFrame(4); this.drawFrame(); this.flabel_mc.setEnabled(false); this.enabled = false; super.setEnabled(false); } }; FPushButtonClass.prototype.txtFormat = function () { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = "center")) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 1)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 1)) : undefined); if (this.fLabel_mc._height > this.height) { super.setSize(this.width, this.fLabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FPushButtonClass.prototype.drawFrame = function () { var b = 1; var x1 = 0; var y1 = 0; var x2 = this.width; var y2 = this.height; var mc_array = ["up_mc", "over_mc", "down_mc", "disabled_mc"]; var frame = mc_array[this.fpbState_mc._currentframe - 1]; var mc = "frame"; var i = 0; while (i < 6) { x1 = x1 + ((i % 2) * b); y1 = y1 + ((i % 2) * b); x2 = x2 - (((i + 1) % 2) * b); y2 = y2 - (((i + 1) % 2) * b); var w = (Math.abs(x1 - x2) + (2 * b)); var h = (Math.abs(y1 - y2) + (2 * b)); this.fpbState_mc[frame][mc + i]._width = w; this.fpbState_mc[frame][mc + i]._height = h; this.fpbState_mc[frame][mc + i]._x = x1 - b; this.fpbState_mc[frame][mc + i]._y = y1 - b; i++; } }; FPushButtonClass.prototype.setClickHandler = function (chng, obj) { this.handlerObj = ((arguments.length < 2) ? (this._parent) : (obj)); this.clickHandler = chng; }; FPushButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.clickHandler](this); }; FPushButtonClass.prototype.initContentPos = function (mc) { this.incrVal = 1; this.initx = this[mc]._x - (this.getBtnState() * this.incrVal); this.inity = this[mc]._y - (this.getBtnState() * this.incrVal); this.togx = this.initx + this.incrVal; this.togy = this.inity + this.incrVal; }; FPushButtonClass.prototype.setBtnState = function (state) { this.btnState = state; if (state) { this.fLabel_mc._x = this.togx; this.fLabel_mc._y = this.togy; } else { this.fLabel_mc._x = this.initx; this.fLabel_mc._y = this.inity; } }; FPushButtonClass.prototype.getBtnState = function () { return(this.btnState); }; FPushButtonClass.prototype.myOnSetFocus = function () { this.focused = true; super.myOnSetFocus(); }; FPushButtonClass.prototype.onPress = function () { this.pressFocus(); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); this.setBtnState(true); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FPushButtonClass.prototype.onRelease = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); this.executeCallBack(); this.setBtnState(false); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FPushButtonClass.prototype.onRollOver = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); }; FPushButtonClass.prototype.onRollOut = function () { this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onReleaseOutside = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOut = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOver = function () { this.setBtnState(true); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); }; FPushButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this.pressOnce == undefined)) { this.onPress(); this.pressOnce = 1; } }; FPushButtonClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.onRelease(); this.pressOnce = undefined; } }; FPushButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_PUSHBUTTON); }; FPushButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FPushButtonClass.prototype.get_accState = function (childId) { if (this.pressOnce) { return(this.master.STATE_SYSTEM_PRESSED); } return(this.master.STATE_SYSTEM_DEFAULT); }; FPushButtonClass.prototype.get_accDefaultAction = function (childId) { return("Press"); }; FPushButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.onPress(); this.master.onRelease(); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 39 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller; component.registerSkinElement(highlight_mc, "selection"); stop();
Symbol 39 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled"); stop();
Symbol 39 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused"); stop();
Symbol 42 MovieClip [FLabelSymbol] Frame 1
#initclip 1 _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 43 MovieClip [FListItemSymbol] Frame 1
#initclip 9 function FListItemClass() { this.init(); } FListItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FListItemSymbol", FListItemClass); #endinitclip
Symbol 45 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 46 MovieClip [FScrollBarSymbol] Frame 1
#initclip 5 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 100); this.setScrollPosition(0); this.tabEnabled = false; if (this._targetInstanceName.length > 0) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); }; FScrollBarClass.prototype = new FUIComponentClass(); FScrollBarClass.prototype.setHorizontal = function (flag) { if (this.horizontal && (!flag)) { this._xscale = 100; this._rotation = 0; } else if (flag && (!this.horizontal)) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; }; FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) { if (!this.enable) { return(undefined); } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos, 0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if ((this.maxPos - this.minPos) <= 0) { this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var tmp = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); this.scrollThumb_mc.useHandCursor = false; this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max(this.thumbHeight, 6); this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height; this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; tmp = Math.min(tmp, this.maxPos); this.setScrollPosition(Math.max(tmp, this.minPos)); } }; FScrollBarClass.prototype.getScrollPosition = function () { return(this.scrollPosition); }; FScrollBarClass.prototype.setScrollPosition = function (pos) { this.scrollPosition = pos; if (this.scrollThumb_mc != undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop; this.executeCallBack(); }; FScrollBarClass.prototype.setLargeScroll = function (lScroll) { this.largeScroll = lScroll; }; FScrollBarClass.prototype.setSmallScroll = function (sScroll) { this.smallScroll = sScroll; }; FScrollBarClass.prototype.setEnabled = function (enabledFlag) { var wasEnabled = this.enable; if (enabledFlag && (!wasEnabled)) { this.enable = enabledFlag; if (this.textField != undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if ((!enabledFlag) && (wasEnabled)) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter == undefined) { this.setScrollProperties(this.pageSize, 0, 0); } else { this.clickFilter = true; } this.enable = enabledFlag; } }; FScrollBarClass.prototype.setSize = function (hgt) { if (this._height == 1) { return(undefined); } this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height; if (this.upArrow_mc == undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); this.attachMovie("DownArrow", "downArrow_mc", 2); this.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 0); this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField != undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } }; FScrollBarClass.prototype.scrollIt = function (inc, mode) { var delt = this.smallScroll; if (inc != "one") { delt = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var newPos = (this.getScrollPosition() + (mode * delt)); if (newPos > this.maxPos) { newPos = this.maxPos; } else if (newPos < this.minPos) { newPos = this.minPos; } this.setScrollPosition(newPos); }; FScrollBarClass.prototype.startDragThumb = function () { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; }; FScrollBarClass.prototype.dragThumb = function () { this.scrollMove = this._ymouse - this.lastY; this.scrollMove = this.scrollMove + this._y; if (this.scrollMove < this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove > this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var c = this.controller; c.scrollPosition = Math.round(((c.maxPos - c.minPos) * (this._y - c.scrollTop)) / c.trackHeight) + c.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); }; FScrollBarClass.prototype.stopDragThumb = function () { this.controller.isScrolling = false; this.onMouseMove = null; }; FScrollBarClass.prototype.startTrackScroller = function () { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); }; FScrollBarClass.prototype.scrollInterval = function (inc, mode) { clearInterval(this.scrolling); if (inc == "page") { this.trackScroller(); } else { this.scrollIt(inc, mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); }; FScrollBarClass.prototype.trackScroller = function () { if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) { this.scrollIt("page", 1); } else if (this.scrollThumb_mc._y > this._ymouse) { this.scrollIt("page", -1); } }; FScrollBarClass.prototype.stopScrolling = function () { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); }; FScrollBarClass.prototype.startUpScroller = function () { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", -1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1); }; FScrollBarClass.prototype.startDownScroller = function () { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", 1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); }; FScrollBarClass.prototype.setScrollTarget = function (tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[(this.horizontal ? "hScroller" : "vScroller")]; if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) { this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) { return(undefined); } this.textField = tF; this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this; this.onTextChanged(); this.onChanged = function () { this.onTextChanged(); }; this.onScroller = function () { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } }; this.textField.addListener(this); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); }; FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return(newVal); }; FScrollBarClass.prototype.onTextChanged = function () { if ((!this.enable) || (this.textField == undefined)) { return(undefined); } clearInterval(this.synchScroll); if (this.horizontal) { var pos = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(pos, this.textField.maxhscroll)); } else { var pos = this.textField.scroll; var pageSize = (this.textField.bottomScroll - this.textField.scroll); this.setScrollProperties(pageSize, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(pos, this.textField.maxscroll)); } }; FScrollBarClass.prototype.executeCallBack = function () { if (this.textField == undefined) { super.executeCallBack(); } else if (this.horizontal) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } }; Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip
Symbol 47 MovieClip [DataProviderSymbol] Frame 1
#initclip 2 _global.DataProviderClass = function () { this.init(); }; DataProviderClass.prototype.init = function () { this.items = new Array(); this.uniqueID = 0; this.views = new Array(); }; DataProviderClass.prototype.addView = function (viewRef) { this.views.push(viewRef); var eventObj = {event:"updateAll"}; viewRef.modelChanged(eventObj); }; DataProviderClass.prototype.addItemAt = function (index, value) { if (index < this.getLength()) { this.items.splice(index, 0, "tmp"); } this.items[index] = new Object(); if (typeof(value) == "object") { this.items[index] = value; } else { this.items[index].label = value; } this.items[index].__ID__ = this.uniqueID++; var eventObj = {event:"addRows", firstRow:index, lastRow:index}; this.updateViews(eventObj); }; DataProviderClass.prototype.addItem = function (value) { this.addItemAt(this.getLength(), value); }; DataProviderClass.prototype.removeItemAt = function (index) { var tmpItm = this.items[index]; this.items.splice(index, 1); var eventObj = {event:"deleteRows", firstRow:index, lastRow:index}; this.updateViews(eventObj); return(tmpItm); }; DataProviderClass.prototype.removeAll = function () { this.items = new Array(); this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1}); }; DataProviderClass.prototype.replaceItemAt = function (index, itemObj) { if ((index < 0) || (index >= this.getLength())) { return(undefined); } var tmpID = this.getItemID(index); if (typeof(itemObj) == "object") { this.items[index] = itemObj; } else { this.items[index].label = itemObj; } this.items[index].__ID__ = tmpID; this.updateViews({event:"updateRows", firstRow:index, lastRow:index}); }; DataProviderClass.prototype.getLength = function () { return(this.items.length); }; DataProviderClass.prototype.getItemAt = function (index) { return(this.items[index]); }; DataProviderClass.prototype.getItemID = function (index) { return(this.items[index].__ID__); }; DataProviderClass.prototype.sortItemsBy = function (fieldName, order) { this.items.sortOn(fieldName); if (order == "DESC") { this.items.reverse(); } this.updateViews({event:"sort"}); }; DataProviderClass.prototype.updateViews = function (eventObj) { var i = 0; while (i < this.views.length) { this.views[i].modelChanged(eventObj); i++; } }; #endinitclip
Symbol 48 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 8 function FSelectableItemClass() { this.init(); } FSelectableItemClass.prototype = new FUIComponentClass(); FSelectableItemClass.prototype.init = function () { if (this._name != "itemAsset") { this.highlighted = false; this.layoutContent(100); } }; FSelectableItemClass.prototype.drawItem = function (itmObj, selected) { this.displayContent(itmObj, selected); if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) { this.setHighlighted(selected); } this.oldFocus = this.controller.focused; }; FSelectableItemClass.prototype.setSize = function (width, height) { var LOWEST_DEPTH = -16384; this.width = width; this.layoutContent(width); this.attachMovie("FHighlightSymbol", "highlight_mc", LOWEST_DEPTH); this.highlight_mc._x = 0.5; this.highlight_mc._width = width - 0.5; this.highlight_mc._height = height; this.highlight_mc.controller = this; this.highlight_mc._alpha = 0; this.highlight_mc.trackAsMenu = true; this.highlight_mc.onPress = function () { if (this.controller.enable) { this.controller.controller.clickHandler(this.controller.itemNum); } }; this.highlight_mc.onDragOver = function () { if (this.controller.controller.focused) { this.onPress(); } }; this.highlight_mc.useHandCursor = false; this.highlight_mc.trackAsMenu = true; }; FSelectableItemClass.prototype.setEnabled = function (enabledFlag) { this.enable = enabledFlag; this.fLabel_mc.setEnabled(enabledFlag); this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled")); }; FSelectableItemClass.prototype.layoutContent = function (width) { this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller}); this.fLabel_mc._x = 2; this.fLabel_mc._y = 0; this.fLabel_mc.setSize(width - 2); this.fLabel_mc.labelField.selectable = false; }; FSelectableItemClass.prototype.displayContent = function (itmObj, selected) { var tmpLabel = ""; if (itmObj.label != undefined) { tmpLabel = itmObj.label; } else if (typeof(itmObj) == "object") { for (var i in itmObj) { if (i != "__ID__") { tmpLabel = (itmObj[i] + ", ") + tmpLabel; } } tmpLabel = tmpLabel.substring(0, tmpLabel.length - 2); } else { tmpLabel = itmObj; } if (this.fLabel_mc.labelField.text != tmpLabel) { this.fLabel_mc.setLabel(tmpLabel); } var clr = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (clr == undefined) { clr = (selected ? 16777215 : 0); } this.fLabel_mc.setColor(clr); }; FSelectableItemClass.prototype.getItemIndex = function () { return(this.controller.getScrollPosition() + this.itemNum); }; FSelectableItemClass.prototype.getItemModel = function () { return(this.controller.getItemAt(this.getItemIndex())); }; FSelectableItemClass.prototype.getHostDataProvider = function () { return(this.controller.dataProvider); }; FSelectableItemClass.prototype.setHighlighted = function (flag) { fade = this.controller.styleTable.fadeRate.value; if (((fade == undefined) || (fade == 0)) || (!flag)) { this.highlight_mc._alpha = (flag ? 100 : 0); delete this.onEnterFrame; } else { this.fadeN = fade; this.fadeX = 1; this.highLight_mc._alpha = 20; this.onEnterFrame = function () { this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40; if (this.fadeX > this.fadeN) { delete this.onEnterFrame; } }; } this.highlighted = flag; }; #endinitclip
Symbol 49 MovieClip [FSelectableListSymbol] Frame 1
#initclip 4 function FSelectableListClass() { this.init(); } FSelectableListClass.prototype = new FUIComponentClass(); FSelectableListClass.prototype.init = function () { super.init(); this.enable = true; this.selected = new Array(); this.topDisplayed = (this.numDisplayed = 0); this.lastSelected = 0; this.tabChildren = false; if (this._name != undefined) { this.dataProvider = new DataProviderClass(); this.dataProvider.addView(this); } }; FSelectableListClass.prototype.addItemAt = function (index, label, data) { if ((index < 0) || (!this.enable)) { return(undefined); } this.dataProvider.addItemAt(index, {label:label, data:data}); }; FSelectableListClass.prototype.addItem = function (label, data) { if (!this.enable) { return(undefined); } this.dataProvider.addItem({label:label, data:data}); }; FSelectableListClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndex(); var item = this.getItemAt(index); this.dataProvider.removeItemAt(index); return(item); }; FSelectableListClass.prototype.removeAll = function () { this.dataProvider.removeAll(); }; FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) { this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); }; FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) { this.lastSelID = this.dataProvider.getItemID(this.lastSelected); this.dataProvider.sortItemsBy(fieldName, order); }; FSelectableListClass.prototype.getLength = function () { return(this.dataProvider.getLength()); }; FSelectableListClass.prototype.getSelectedIndex = function () { for (var uniqueID in this.selected) { var tmpInd = this.selected[uniqueID].sIndex; if (tmpInd != undefined) { return(tmpInd); } } }; FSelectableListClass.prototype.getSelectedItem = function () { return(this.getItemAt(this.getSelectedIndex())); }; FSelectableListClass.prototype.getItemAt = function (index) { return(this.dataProvider.getItemAt(index)); }; FSelectableListClass.prototype.getEnabled = function () { return(this.enable); }; FSelectableListClass.prototype.getValue = function () { var item = this.getSelectedItem(); return(((item.data == undefined) ? (item.label) : (item.data))); }; FSelectableListClass.prototype.setSelectedIndex = function (index, flag) { if (((index >= 0) && (index < this.getLength())) && (this.enable)) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.invalidate("updateControl"); if (flag != false) { this.executeCallBack(); } } }; FSelectableListClass.prototype.setDataProvider = function (obj) { this.setScrollPosition(0); this.clearSelected(); if (obj instanceof Array) { this.dataProvider = new DataProviderClass(); var i = 0; while (i < obj.length) { var value = ((typeof(obj[i]) == "string") ? ({label:obj[i]}) : (obj[i])); this.dataProvider.addItem(value); i++; } } else { this.dataProvider = obj; } this.dataProvider.addView(this); }; FSelectableListClass.prototype.setItemSymbol = function (linkID) { this.tmpPos = this.getScrollPosition(); this.itemSymbol = linkID; this.invalidate("setSize"); this.setScrollPosition(this.tmpPos); }; FSelectableListClass.prototype.setEnabled = function (enabledFlag) { this.cleanUI(); super.setEnabled(enabledFlag); this.enable = enabledFlag; this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); var limit = Math.min(this.numDisplayed, this.getLength()); var i = 0; while (i < limit) { this.container_mc[("fListItem" + i) + "_mc"].setEnabled(this.enable); i++; } if (this.enable) { this.invalidate("updateControl"); } }; FSelectableListClass.prototype.updateControl = function () { var i = 0; while (i < this.numDisplayed) { this.container_mc[("fListItem" + i) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + i), this.isSelected(this.topDisplayed + i)); i++; } }; FSelectableListClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100); this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width; this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height; var i = 0; while (i < this.numDisplayed) { this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + i) + "_mc", 10 + i, {controller:this, itemNum:i}); var item_mc = this.container_mc[("fListItem" + i) + "_mc"]; var offset = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset)); item_mc.setSize(this.width - offset, this.itmHgt); item_mc._y = (this.itmHgt - 2) * i; i++; } this.updateControl(); }; FSelectableListClass.prototype.modelChanged = function (eventObj) { var firstRow = eventObj.firstRow; var lastRow = eventObj.lastRow; var event = eventObj.event; if (event == "addRows") { for (var i in this.selected) { if ((this.selected[i].sIndex != undefined) && (this.selected[i].sIndex >= firstRow)) { this.selected[i].sIndex = this.selected[i].sIndex + ((lastRow - firstRow) + 1); this.setSelectedIndex(this.selected[i].sIndex, false); } } } else if (event == "deleteRows") { if (firstRow == lastRow) { var index = firstRow; if (this.selectHolder == index) { this.selectionDeleted = true; } if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) { this.topDisplayed--; if (this.selectionDeleted && ((index - 1) >= 0)) { this.setSelectedIndex(index - 1, false); } } else if (this.selectionDeleted) { var len = this.getLength(); if (((index == (len - 1)) && (len > 1)) || (index > (len / 2))) { this.setSelectedIndex(index - 1, false); } else { this.setSelectedIndex(index, false); } } for (var i in this.selected) { if (this.selected[i].sIndex > firstRow) { this.selected[i].sIndex--; } } } else { this.clearSelected(); this.topDisplayed = 0; } } else if (event == "sort") { var len = this.getLength(); var i = 0; while (i < len) { if (this.isSelected(i)) { var id = this.dataProvider.getItemID(i); if (id == this.lastSelID) { this.lastSelected = i; } this.selected[String(id)].sIndex = i; } i++; } } this.invalidate("updateControl"); }; FSelectableListClass.prototype.measureItmHgt = function () { this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this}); this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false); this.itmHgt = this.tmpItem_mc._height; this.tmpItem_mc.removeMovieClip(); }; FSelectableListClass.prototype.selectItem = function (index, selectedFlag) { if (selectedFlag && (!this.isSelected(index))) { this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index}; } else if (!selectedFlag) { delete this.selected[String(this.dataProvider.getItemID(index))]; } }; FSelectableListClass.prototype.isSelected = function (index) { return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined); }; FSelectableListClass.prototype.clearSelected = function () { for (var uniqueID in this.selected) { var index = this.selected[uniqueID].sIndex; if (((index != undefined) && (this.topDisplayed <= index)) && (index < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (index - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(index), false); } } delete this.selected; this.selected = new Array(); }; FSelectableListClass.prototype.selectionHandler = function (itemNum) { var tmpInd = (this.topDisplayed + itemNum); if (this.getItemAt(tmpInd == undefined)) { this.changeFlag = false; return(undefined); } this.changeFlag = true; this.clearSelected(); this.selectItem(tmpInd, true); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(tmpInd), this.isSelected(tmpInd)); }; FSelectableListClass.prototype.moveSelBy = function (incr) { var itmNum = this.getSelectedIndex(); var newItm = (itmNum + incr); newItm = Math.max(0, newItm); newItm = Math.min(this.getLength() - 1, newItm); if (newItm == itmNum) { return(undefined); } if ((itmNum < this.topDisplayed) || (itmNum >= (this.topDisplayed + this.numDisplayed))) { this.setScrollPosition(itmNum); } if ((newItm >= (this.topDisplayed + this.numDisplayed)) || (newItm < this.topDisplayed)) { this.setScrollPosition(this.topDisplayed + incr); } this.selectionHandler(newItm - this.topDisplayed); }; FSelectableListClass.prototype.clickHandler = function (itmNum) { this.focusRect.removeMovieClip(); if (!this.focused) { this.pressFocus(); } this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FSelectableListClass.prototype.releaseHandler = function () { if (this.changeFlag) { this.executeCallBack(); } this.changeFlag = false; this.onMouseUp = undefined; }; FSelectableListClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); var i = 0; while (i < this.numDisplayed) { this.container_mc[("fListItem" + i) + "_mc"].highlight_mc.gotoAndStop("enabled"); i++; } }; FSelectableListClass.prototype.myOnKillFocus = function () { super.myOnKillFocus(); var i = 0; while (i < this.numDisplayed) { this.container_mc[("fListItem" + i) + "_mc"].highlight_mc.gotoAndStop("unfocused"); i++; } }; #endinitclip
Instance of Symbol 47 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 49 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Instance of Symbol 48 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 49 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 50 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 7 function FScrollSelectListClass() { this.init(); } FScrollSelectListClass.prototype = new FSelectableListClass(); FScrollSelectListClass.prototype.getScrollPosition = function () { return(this.topDisplayed); }; FScrollSelectListClass.prototype.setScrollPosition = function (pos) { if (this.enable) { pos = Math.min(pos, this.getLength() - this.numDisplayed); pos = Math.max(pos, 0); this.scrollBar_mc.setScrollPosition(pos); } }; FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) { this.permaScrollBar = !flag; this.setSize(this.width, this.height); }; FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) { super.setEnabled(enabledFlag); this.scrollBar_mc.setEnabled(this.enable); }; FScrollSelectListClass.prototype.setSize = function (w, h) { var pos = this.getScrollPosition(); super.setSize(w, h); if (this.scrollBar_mc != undefined) { this.removed = true; } this.scrollBar_mc = undefined; this.initScrollBar(); this.setScrollPosition(pos); }; FScrollSelectListClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); this.invalidate("initScrollBar"); }; FScrollSelectListClass.prototype.initScrollBar = function () { if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) { if (this.removed) { this.scrollBar_mc.removeMovieClip(); this.scrollBar_mc = undefined; this.scrollOffset = undefined; this.invalidate("setSize"); } } else { if (this.scrollBar_mc == undefined) { this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable}); this.scrollBar_mc = this.container_mc.scrollBar_mc; this.scrollBar_mc.setChangeHandler("scrollHandler", this); this.scrollBar_mc.setSize(this.height); this.scrollBar_mc._x = this.width - this.scrollBar_mc._width; this.scrollBar_mc._y = 0; this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1); this.scrollOffset = this.scrollBar_mc._width; this.invalidate("setSize"); } this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed); } }; FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) { var pos = scrollBar.getScrollPosition(); this.topDisplayed = pos; if (this.lastPosition != pos) { this.updateControl(); } this.lastPosition = pos; }; FScrollSelectListClass.prototype.clickHandler = function (itmNum) { super.clickHandler(itmNum); if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.releaseHandler = function () { clearInterval(this.dragScrolling); this.dragScrolling = undefined; super.releaseHandler(); }; FScrollSelectListClass.prototype.dragScroll = function () { clearInterval(this.dragScrolling); if (this.container_mc._ymouse < 0) { this.setScrollPosition(this.getScrollPosition() - 1); this.selectionHandler(0); this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) { this.setScrollPosition(this.getScrollPosition() + 1); this.selectionHandler(this.numDisplayed - 1); this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.myOnKeyDown = function () { if (this.focused) { this.keyCodes = new Array(40, 38, 34, 33, 36, 35); this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength()); var i = 0; while (i < this.keyCodes.length) { if (Key.isDown(this.keyCodes[i])) { this.moveSelBy(this.keyIncrs[i]); return(undefined); } i++; } this.findInputText(); } }; FScrollSelectListClass.prototype.findInputText = function () { var tmpCode = Key.getAscii(); if ((tmpCode >= 33) && (tmpCode <= 126)) { this.findString(String.fromCharCode(tmpCode)); } }; FScrollSelectListClass.prototype.findString = function (str) { if (this.getLength() == 0) { return(undefined); } var itemNum = this.getSelectedIndex(); var jump = 0; var i = (itemNum + 1); while (i != itemNum) { var itmStr = this.getItemAt(i).label.substring(0, str.length); if ((str == itmStr) || (str.toUpperCase() == itmStr.toUpperCase())) { var jump = (i - itemNum); break; } if (i >= (this.getLength() - 1)) { i = -1; } i++; } if (jump != 0) { this.moveSelBy(jump); } }; #endinitclip
Instance of Symbol 46 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 50 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = ""; horizontal = false; } onClipEvent (load) { this._width = (this._height = 1); }
Instance of Symbol 49 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 50 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 53 MovieClip [FListBoxSymbol] Frame 1
#initclip 12 function FListBoxClass() { this.itemSymbol = "FListItemSymbol"; this.init(); this.permaScrollBar = true; var i = 0; while (i < this.labels.length) { this.addItem(this.labels[i], this.data[i]); i++; } this.boundingBox_mc.gotoAndStop(1); this.width = this._width; this.height = this._height; this._yscale = (this._xscale = 100); this.setSize(this.width, this.height); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } } FListBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FListBoxSymbol", FListBoxClass); FListBoxClass.prototype.getSelectedIndices = function () { var tmpArray = new Array(); for (var i in this.selected) { tmpArray.push(this.selected[i].sIndex); } return(((tmpArray.length > 0) ? (tmpArray) : undefined)); }; FListBoxClass.prototype.getSelectedItems = function () { var indices = this.getSelectedIndices(); var tmpArray = new Array(); var i = 0; while (i < indices.length) { tmpArray.push(this.getItemAt(indices[i])); i++; } return(((tmpArray.length > 0) ? (tmpArray) : undefined)); }; FListBoxClass.prototype.getSelectMultiple = function () { return(this.selectMultiple); }; FListBoxClass.prototype.getRowCount = function () { return(this.numDisplayed); }; FListBoxClass.prototype.setSelectedIndices = function (indexArray) { this.clearSelected(); var i = 0; while (i < indexArray.length) { this.selectItem(indexArray[i], true); i++; } this.updateControl(); }; FListBoxClass.prototype.setSelectMultiple = function (flag) { this.selectMultiple = flag; }; FListBoxClass.prototype.setRowCount = function (count) { var hgt = ((count * (this.itmHgt - 2)) + 2); this.setSize(this.width, hgt); }; FListBoxClass.prototype.setWidth = function (wdt) { this.setSize(wdt, this.height); }; FListBoxClass.prototype.setSize = function (w, h) { if (!this.enable) { return(undefined); } w = Math.max(w, 20); h = Math.max(h, 40); this.container_mc.removeMovieClip(); this.container_mc = this.createEmptyMovieClip("container", 3); this.measureItmHgt(); this.numDisplayed = Math.floor(h / (this.itmHgt - 2)); this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); }; FListBoxClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndices(); return(super.removeItemAt(index)); }; FListBoxClass.prototype.selectionHandler = function (itemNum) { if (this.clickFilter) { var index = (this.topDisplayed + itemNum); if (this.getItemAt(index) == undefined) { this.changeFlag = false; return(undefined); } this.changeFlag = true; if (((!this.selectMultiple) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(index), this.isSelected(index)); } else if (Key.isDown(16) && (this.selectMultiple)) { if (this.lastSelected == -1) { this.lastSelected = index; } var incr = ((this.lastSelected < index) ? 1 : -1); this.clearSelected(); var i = this.lastSelected; while (i != index) { this.selectItem(i, true); if ((i >= this.topDisplayed) && (i < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (i - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(i), this.isSelected(i)); } i = i + incr; } this.selectItem(index, true); this.container_mc[("fListItem" + (index - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(index), this.isSelected(index)); } else if (key.isDown(17)) { var selectedFlag = this.isSelected(index); if (!this.selectMultiple) { this.clearSelected(); } if (!((!this.selectMultiple) && (selectedFlag))) { this.selectItem(index, !selectedFlag); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + itemNum), this.isSelected(this.topDisplayed + itemNum)); } this.lastSelected = index; } } else { this.clickFilter = true; } }; FListBoxClass.prototype.moveSelBy = function (itemNum) { super.moveSelBy(itemNum); this.releaseHandler(); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 50 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 53 MovieClip [FListBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 54 MovieClip [FUIComponentSymbol] Frame 1
#initclip 3 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 66 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 76 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 85 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 86 MovieClip [UpArrow] Frame 1
stop();
Symbol 86 MovieClip [UpArrow] Frame 2
stop();
Symbol 86 MovieClip [UpArrow] Frame 3
stop();
Symbol 92 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 99 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 104 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(highlight3D_mc, "highlight3D"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight");
Symbol 105 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 113 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 121 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 129 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 130 MovieClip [DownArrow] Frame 1
stop();
Symbol 130 MovieClip [DownArrow] Frame 2
stop();
Symbol 130 MovieClip [DownArrow] Frame 3
stop();
Symbol 131 MovieClip [FComboBoxItemSymbol] Frame 1
#initclip 10 function FComboBoxItemClass() { this.init(); } FComboBoxItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FComboBoxItemSymbol", FComboBoxItemClass); FComboBoxItemClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.highlight_mc.onRollOver = function () { this.controller.controller.selectionHandler(this.controller.itemNum); }; }; #endinitclip
Symbol 134 MovieClip [FComboBoxSymbol] Frame 1
#initclip 11 function FComboBoxClass() { _global._popUpLevel = ((_global._popUpLevel == undefined) ? 20000 : (_global._popUpLevel + 1)); this.superHolder = _root.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); var testContainer = this.superHolder.createEmptyMovieClip("testCont", 20000); var testBox = testContainer.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); if (testBox._name == undefined) { this.superHolder.removeMovieClip(); this.superHolder = this._parent.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); } else { testContainer.removeMovieClip(); } if (this.rowCount == undefined) { this.rowCount = 8; this.editable = false; } this.itemSymbol = "FComboBoxItemSymbol"; this.init(); this.permaScrollBar = false; this.proxyBox_mc.gotoAndStop(1); this.width = this._width; this.height = (this.proxyBox_mc._height * this._yscale) / 100; var i = 0; while (i < this.labels.length) { this.addItem(this.labels[i], this.data[i]); i++; } this.lastSelected = 0; this.selectItem(0); this._xscale = (this._yscale = 100); this.opened = false; this.setSize(this.width); this.highlightTop(false); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.onUnload = function () { this.superHolder.removeMovieClip(); }; this.setSelectedIndex(0, false); this.value = ""; this.focusEnabled = true; this.changeFlag = false; } FComboBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FComboBoxSymbol", FComboBoxClass); FComboBoxClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); var event = eventObj.event; if ((event == "addRows") || (event == "deleteRows")) { var diff = ((eventObj.lastRow - eventObj.firstRow) + 1); var mode = ((event == "addRows") ? 1 : -1); var len = this.getLength(); var lenBefore = (len - (mode * diff)); if ((this.rowCount > lenBefore) || (this.rowCount > len)) { this.invalidate("setSize"); } if (this.getSelectedIndex() == undefined) { this.setSelectedIndex(0, false); } } else if (event == "updateAll") { this.invalidate("setSize"); } }; FComboBoxClass.prototype.removeAll = function () { if (!this.enable) { return(undefined); } super.removeAll(); if (this.editable) { this.value = ""; } this.invalidate("setSize"); }; FComboBoxClass.prototype.setSize = function (w) { if ((((w == undefined) || (typeof(w) != "number")) || (w <= 0)) || (!this.enable)) { return(undefined); } this.proxyBox_mc._width = w; this.container_mc.removeMovieClip(); this.measureItmHgt(); this.container_mc = this.superHolder.createEmptyMovieClip("container", 3); this.container_mc.tabChildren = false; this.setPopUpLocation(this.container_mc); this.container_mc.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); this.boundingBox_mc = this.container_mc.boundingBox_mc; this.boundingBox_mc.component = this; this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc._height = this.itmHgt; this.numDisplayed = Math.min(this.rowCount, this.getLength()); if (this.numDisplayed < 3) { this.numDisplayed = Math.min(3, this.getLength()); } this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); this.attachMovie("DownArrow", "downArrow", 10); this.downArrow._y = 0; this.downArrow._width = this.itmHgt; this.downArrow._height = this.itmHgt; this.downArrow._x = this.proxyBox_mc._width - this.downArrow._width; this.setEditable(this.editable); this.container_mc._visible = this.opened; this.highlightTop(false); this.fader = this.superHolder.attachMovie("FBoundingBoxSymbol", "faderX", 4); this.registerSkinElement(this.fader.boundingBox, "background"); this.fader._width = this.width; this.fader._height = this.height; this.fader._visible = false; }; FComboBoxClass.prototype.setDataProvider = function (dp) { super.setDataProvider(dp); this.invalidate("setSize"); this.setSelectedIndex(0); }; FComboBoxClass.prototype.getValue = function () { if (this.editable) { return(this.fLabel_mc.getLabel()); } return(super.getValue()); }; FComboBoxClass.prototype.getRowCount = function () { return(this.rowCount); }; FComboBoxClass.prototype.setRowCount = function (count) { this.rowCount = ((this.getLength() > count) ? (Math.max(count, 3)) : (count)); this.setSize(this.width); var len = this.getLength(); if ((len - this.getScrollPosition()) < this.rowCount) { this.setScrollPosition(len - Math.min(this.rowCount, len)); this.invalidate("updateControl"); } }; FComboBoxClass.prototype.setEditable = function (editableFlag) { if (!this.enable) { return(undefined); } this.editable = editableFlag; if (!this.editable) { this.onPress = this.pressHandler; this.useHandCursor = false; this.trackAsMenu = true; this.attachMovie("FComboBoxItemSymbol", "fLabel_mc", 5, {controller:this, itemNum:-1}); this.fLabel_mc.onRollOver = undefined; this.fLabel_mc.setSize((this.width - this.itmHgt) + 1, this.itmHgt); this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); this.highlightTop(false); } else { this.attachMovie("FLabelSymbol", "fLabel_mc", 5); this.fLabel_txt = this.fLabel_mc.labelField; this.fLabel_txt.type = "input"; this.fLabel_txt._x = 4; this.fLabel_txt.onSetFocus = this.onLabelFocus; this.fLabel_mc.setSize((this.width - this.itmHgt) - 3); delete this.onPress; this.fLabel_txt.onKillFocus = function () { this._parent._parent.myOnKillFocus(); }; this.fLabel_mc.setLabel(this.value); this.fLabel_txt.onChanged = function () { this._parent._parent.findInputText(); }; this.downArrow.onPress = this.buttonPressHandler; this.downArrow.useHandCursor = false; this.downArrow.trackAsMenu = true; } }; FComboBoxClass.prototype.setEnabled = function (enabledFlag) { enabledFlag = (((enabledFlag == undefined) || (typeof(enabledFlag) != "boolean")) ? true : (enabledFlag)); super.setEnabled(enabledFlag); this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); this.downArrow.gotoAndStop((this.enable ? 1 : 3)); if (this.editable) { this.fLabel_txt.type = (enabledFlag ? "input" : "dynamic"); this.fLabel_txt.selectable = enabledFlag; } else if (enabledFlag) { this.fLabel_mc.drawItem(this.topLabel, false); this.setSelectedIndex(this.getSelectedIndex(), false); } this.fLabel_mc.setEnabled(this.enable); this.fLabel_txt.onSetFocus = (enabledFlag ? (this.onLabelFocus) : undefined); }; FComboBoxClass.prototype.setSelectedIndex = function (index, flag) { super.setSelectedIndex(index, flag); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); } else { this.value = ((flag != undefined) ? "" : (this.getSelectedItem().label)); this.fLabel_mc.setLabel(this.value); } this.invalidate("updateControl"); }; FComboBoxClass.prototype.setValue = function (value) { if (this.editable) { this.fLabel_mc.setLabel(value); this.value = value; } }; FComboBoxClass.prototype.pressHandler = function () { this.focusRect.removeMovieClip(); if (this.enable) { if (!this.opened) { this.onMouseUp = this.releaseHandler; } else { this.onMouseUp = undefined; } this.changeFlag = false; if (!this.focused) { this.pressFocus(); this.clickFilter = (this.editable ? false : true); } if (!this.clickFilter) { this.openOrClose(!this.opened); } else { this.clickFilter = false; } } }; FComboBoxClass.prototype.clickHandler = function (itmNum) { if (!this.focused) { if (this.editable) { this.fLabel_txt.onKillFocus = undefined; } this.pressFocus(); } super.clickHandler(itmNum); this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FComboBoxClass.prototype.highlightTop = function (flag) { if (!this.editable) { this.fLabel_mc.drawItem(this.topLabel, flag); } }; FComboBoxClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); this.fLabel_mc.highlight_mc.gotoAndStop("enabled"); this.highlightTop(true); }; FComboBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this._height + 4); }; FComboBoxClass.prototype.myOnKillFocus = function () { if (Selection.getFocus().indexOf("labelField") != -1) { return(undefined); } super.myOnKillFocus(); delete this.fLabel_txt.onKeyDown; this.openOrClose(false); this.highlightTop(false); }; FComboBoxClass.prototype.setPopUpLocation = function (mcRef) { mcRef._x = this._x; var point = {x:this._x, y:this._y + this.proxyBox_mc._height}; this._parent.localToGlobal(point); mcRef._parent.globalToLocal(point); mcRef._x = point.x; mcRef._y = point.y; if ((this.height + mcRef._y) >= Stage.height) { this.upward = true; mcRef._y = (point.y - this.height) - this.proxyBox_mc._height; } else { this.upward = false; } }; FComboBoxClass.prototype.openOrClose = function (flag) { if (this.getLength() == 0) { return(undefined); } this.setPopUpLocation(this.container_mc); if ((this.lastSelected != -1) && ((this.lastSelected < this.topDisplayed) || (this.lastSelected > (this.topDisplayed + this.numDisplayed)))) { super.moveSelBy(this.lastSelected - this.getSelectedIndex()); } if (!flag) { (this.downArrow.gotoAndStop(1));// not popped } else { (this.downArrow.gotoAndStop(2));// not popped } if (flag == this.opened) { return(undefined); } this.highlightTop(!flag); this.fadeRate = this.styleTable.popUpFade.value; if (((!flag) || (this.fadeRate == undefined)) || (this.fadeRate == 0)) { this.opened = (this.container_mc._visible = flag); return(undefined); } this.setPopUpLocation(this.fader); this.time = 0; this.const = 85 / Math.sqrt(this.fadeRate); this.fader._alpha = 85; this.container_mc._visible = (this.fader._visible = true); this.onEnterFrame = function () { this.fader._alpha = 100 - ((this.const * Math.sqrt(++this.time)) + 15); if (this.time >= this.fadeRate) { this.fader._visible = false; delete this.onEnterFrame; this.opened = true; } }; }; FComboBoxClass.prototype.fireChange = function () { this.lastSelected = this.getSelectedIndex(); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, true); } else { this.value = this.getSelectedItem().label; this.fLabel_mc.setLabel(this.value); } this.executeCallback(); }; FComboBoxClass.prototype.releaseHandler = function () { var onCombo = this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse); if (this.changeFlag) { if (onCombo) { this.fireChange(); } this.openOrClose(!this.opened); } else if (onCombo) { this.openOrClose(false); } else { this.onMouseDown = function () { if ((!this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse)) && (!this.hitTest(_root._xmouse, _root._ymouse))) { this.onMouseDown = undefined; this.openOrClose(false); } }; } this.changeFlag = false; this.onMouseUp = undefined; clearInterval(this.dragScrolling); this.dragScrolling = undefined; }; FComboBoxClass.prototype.moveSelBy = function (itemNum) { if (itemNum != 0) { super.moveSelBy(itemNum); if (this.editable) { this.setValue(this.getSelectedItem().label); } if (!this.opened) { if (this.changeFlag && (!this.isSelected(this.lastSelected))) { this.fireChange(); } } } }; FComboBoxClass.prototype.myOnKeyDown = function () { if (!this.focused) { return(undefined); } if (this.editable && (Key.isDown(13))) { this.setValue(this.fLabel_mc.getLabel()); this.executeCallback(); this.openOrClose(false); } else if ((Key.isDown(13) || (Key.isDown(32) && (!this.editable))) && (this.opened)) { if (this.getSelectedIndex() != this.lastSelected) { this.fireChange(); } this.openOrClose(false); this.fLabel_txt.hscroll = 0; } super.myOnKeyDown(); }; FComboBoxClass.prototype.findInputText = function () { if (!this.editable) { super.findInputText(); } }; FComboBoxClass.prototype.onLabelFocus = function () { this._parent._parent.tabFocused = false; this._parent._parent.focused = true; this.onKeyDown = function () { this._parent._parent.myOnKeyDown(); }; Key.addListener(this); }; FComboBoxClass.prototype.buttonPressHandler = function () { this._parent.pressHandler(); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 50 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 134 MovieClip [FComboBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 145 MovieClip Frame 1
stop();
Symbol 145 MovieClip Frame 2
stop();
Symbol 145 MovieClip Frame 3
stop();
Symbol 145 MovieClip Frame 4
stop();
Symbol 145 MovieClip Frame 5
stop();
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 2
stop();
Symbol 168 MovieClip Frame 3
stop();
Symbol 168 MovieClip Frame 4
stop();
Symbol 168 MovieClip Frame 5
stop();
Symbol 168 MovieClip Frame 6
stop();
Symbol 168 MovieClip Frame 7
stop();
Symbol 168 MovieClip Frame 8
stop();
Symbol 168 MovieClip Frame 9
stop();
Symbol 168 MovieClip Frame 10
stop();
Symbol 168 MovieClip Frame 11
stop();
Symbol 168 MovieClip Frame 12
stop();
Symbol 168 MovieClip Frame 13
stop();
Symbol 169 MovieClip Frame 1
stop();
Symbol 176 Button
on (release) { _root.Nari(); }
Symbol 178 Button
on (release) { _root.Narazu(); }
Symbol 200 MovieClip Frame 1
stop();
Symbol 200 MovieClip Frame 2
stop();
Symbol 200 MovieClip Frame 3
stop();
Symbol 200 MovieClip Frame 4
stop();
Symbol 200 MovieClip Frame 5
stop();
Symbol 200 MovieClip Frame 6
stop();
Symbol 200 MovieClip Frame 7
stop();
Symbol 200 MovieClip Frame 8
stop();
Symbol 200 MovieClip Frame 9
stop();
Symbol 200 MovieClip Frame 10
stop();
Symbol 200 MovieClip Frame 11
stop();
Symbol 200 MovieClip Frame 12
stop();
Symbol 200 MovieClip Frame 13
stop();
Symbol 200 MovieClip Frame 14
stop();
Symbol 200 MovieClip Frame 15
stop();
Symbol 200 MovieClip Frame 16
stop();
Symbol 200 MovieClip Frame 17
stop();
Symbol 200 MovieClip Frame 18
stop();
Symbol 200 MovieClip Frame 19
stop();
Symbol 200 MovieClip Frame 20
stop();
Symbol 200 MovieClip Frame 21
stop();
Symbol 200 MovieClip Frame 22
stop();
Symbol 200 MovieClip Frame 23
stop();
Symbol 200 MovieClip Frame 24
stop();
Symbol 217 MovieClip Frame 1
stop();
Symbol 217 MovieClip Frame 2
stop();
Symbol 217 MovieClip Frame 3
stop();
Symbol 217 MovieClip Frame 4
stop();
Symbol 217 MovieClip Frame 5
stop();
Symbol 217 MovieClip Frame 6
stop();
Symbol 217 MovieClip Frame 7
stop();
Symbol 217 MovieClip Frame 8
stop();
Symbol 217 MovieClip Frame 9
stop();
Symbol 217 MovieClip Frame 10
stop();
Symbol 217 MovieClip Frame 11
stop();
Symbol 217 MovieClip Frame 12
stop();
Symbol 217 MovieClip Frame 13
stop();
Symbol 217 MovieClip Frame 14
stop();
Symbol 217 MovieClip Frame 15
stop();
Symbol 217 MovieClip Frame 16
stop();
Symbol 217 MovieClip Frame 17
stop();
Symbol 217 MovieClip Frame 18
stop();
Symbol 217 MovieClip Frame 19
stop();
Symbol 217 MovieClip Frame 20
stop();
Symbol 217 MovieClip Frame 21
stop();
Symbol 217 MovieClip Frame 22
stop();
Symbol 217 MovieClip Frame 23
stop();
Symbol 217 MovieClip Frame 24
stop();
Symbol 222 MovieClip Frame 1
stop();
Symbol 222 MovieClip Frame 2
stop();
Symbol 222 MovieClip Frame 3
stop();
Symbol 222 MovieClip Frame 4
stop();
Symbol 222 MovieClip Frame 5
stop();
Symbol 223 MovieClip Frame 1
function SetGuide(texts) { dist = new Array(); i = 0; while (i < 8) { tmp = _root.PieceData[texts].move[i]; switch (tmp) { case 0 : dist[i] = 1; break; case 1 : dist[i] = 2; break; case 2 : dist[i] = 3; break; case 3 : dist[i] = 4; break; case 4 : dist[i] = 5; break; case 5 : dist[i] = 6; break; case 6 : dist[i] = 7; break; case 7 : dist[i] = 8; break; case 62 : dist[i] = 10; break; case 63 : dist[i] = 11; break; case 99 : dist[i] = 13; break; case 102 : dist[i] = 14; break; case 103 : dist[i] = 15; break; case 111 : dist[i] = 16; break; case 112 : dist[i] = 17; break; case 113 : dist[i] = 18; break; case 121 : dist[i] = 20; break; case 124 : dist[i] = 23; break; case 125 : dist[i] = 24; break; } i++; } tmp = _root.PieceData[texts].move[8]; switch (tmp) { case 0 : dist[8] = 1; break; case 1 : dist[8] = 2; break; case 2 : dist[8] = 3; break; case 3 : dist[8] = 4; break; } if (texts == "\u5954\u9DF2") { dist[0] = 1; dist[1] = 1; dist[2] = 1; dist[3] = 1; dist[4] = 1; dist[5] = 1; dist[6] = 1; dist[7] = 1; dist[8] = 5; } UpMark.gotoAndStop(dist[0]); LUMark.gotoAndStop(dist[1]); RUMark.gotoAndStop(dist[2]); LeftMark.gotoAndStop(dist[3]); RightMark.gotoAndStop(dist[4]); LDMark.gotoAndStop(dist[5]); RDMark.gotoAndStop(dist[6]); DownMark.gotoAndStop(dist[7]); OtherMark.gotoAndStop(dist[8]); }
Symbol 240 MovieClip Frame 1
function SetText(texts) { tmptname = texts; if (texts == undefined) { tmptname = "\u00D7"; } switch (texts) { case "0" : gotoAndStop (1); Letter.text = "\u00D7"; return; case "\u4ED9\u9DE6" : gotoAndStop (2); return; case "\u53E4\u6642\u9CE5" : gotoAndStop (3); return; case "\u821F\u725B" : gotoAndStop (4); return; case "\u82A6\u9CE5" : gotoAndStop (5); return; case "\u904A\u6BCD" : gotoAndStop (6); return; case "\u6B69\u632F" : gotoAndStop (7); return; case "\u5947\u72AC\u53F3" : case "\u5947\u72AC\u5DE6" : gotoAndStop (8); return; case "\u5C71\u9DF2\u53F3" : default : case "\u5C71\u9DF2\u5DE6" : gotoAndStop (1); Letter.text = tmptname; } } stop();
Symbol 240 MovieClip Frame 2
stop();
Symbol 240 MovieClip Frame 3
stop();
Symbol 240 MovieClip Frame 4
stop();
Symbol 240 MovieClip Frame 5
stop();
Symbol 240 MovieClip Frame 6
stop();
Symbol 240 MovieClip Frame 7
stop();
Symbol 240 MovieClip Frame 8
stop();
Symbol 240 MovieClip Frame 9
stop();
Symbol 246 Button
on (release) { if ((_root._currentframe == 11) || (_root._currentframe == 12)) { _root.UnDo(); } }
Symbol 254 Button
on (release) { if ((_root._currentframe == 11) || (_root._currentframe == 12)) { if (_root.TextWindow._visible == false) { _root.TextWindow._visible = true; _root.TextWindow.TxtCaution.text = "\u2605\u2606\u306F\u751F\u99D2\u3068\u898B\u306A\u3057\u307E\u3059\u3002\n\u6210\u99D2\u306E\u6700\u7D42\u624B\u306F\u25A0\u25A1\u306B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"; } else { _root.TextWindow._visible = false; _root.TextWindow.Texts.text = ""; } } }
Symbol 264 Button
on (release) { Texts.text = _root.Textout(); TxtCaution.text = "\u73FE\u5728\u306E\u76E4\u9762\u3092\u51FA\u529B\u3057\u307E\u3057\u305F\u3002"; }
Symbol 265 Button
on (release) { if (_root.Textin(Texts.text) == true) { TxtCaution.text = "\u76E4\u9762\u306F\u6B63\u3057\u304F\u8AAD\u307F\u8FBC\u307E\u308C\u307E\u3057\u305F\u3002"; } else { TxtCaution.text = "\u5165\u529B\u304C\u8AA4\u3063\u3066\u3044\u307E\u3059\u3002\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002"; } }
Symbol 270 Button
on (release) { _root.TextWindow._visible = false; _root.TextWindow.Texts.text = ""; }
Instance of Symbol 46 MovieClip [FScrollBarSymbol] in Symbol 272 MovieClip Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = "Texts"; horizontal = false; }
Instance of Symbol 46 MovieClip [FScrollBarSymbol] in Symbol 272 MovieClip Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = "Texts"; horizontal = true; }

Library Items

Symbol 1 GraphicUsed by:2 89 93 94 103
Symbol 2 MovieClip [fpb_hitArea]Uses:1
Symbol 3 GraphicUsed by:4 5 12 13 18 19 20 21 24 25 38
Symbol 4 MovieClipUses:3Used by:11
Symbol 5 MovieClipUses:3Used by:11
Symbol 6 GraphicUsed by:7 8 14 15 26 27 44
Symbol 7 MovieClipUses:6Used by:11
Symbol 8 MovieClipUses:6Used by:11
Symbol 9 GraphicUsed by:10 16 22 28 55 73 90 91 97 98 100 106 118
Symbol 10 MovieClipUses:9Used by:11
Symbol 11 MovieClipUses:4 5 7 8 10Used by:30
Symbol 12 MovieClipUses:3Used by:17
Symbol 13 MovieClipUses:3Used by:17
Symbol 14 MovieClipUses:6Used by:17
Symbol 15 MovieClipUses:6Used by:17
Symbol 16 MovieClipUses:9Used by:17
Symbol 17 MovieClipUses:12 13 14 15 16Used by:30
Symbol 18 MovieClipUses:3Used by:23
Symbol 19 MovieClipUses:3Used by:23
Symbol 20 MovieClipUses:3Used by:23
Symbol 21 MovieClipUses:3Used by:23
Symbol 22 MovieClipUses:9Used by:23
Symbol 23 MovieClipUses:18 19 20 21 22Used by:30
Symbol 24 MovieClipUses:3Used by:29
Symbol 25 MovieClipUses:3Used by:29
Symbol 26 MovieClipUses:6Used by:29
Symbol 27 MovieClipUses:6Used by:29
Symbol 28 MovieClipUses:9Used by:29
Symbol 29 MovieClipUses:24 25 26 27 28Used by:30
Symbol 30 MovieClip [fpb_states]Uses:11 17 23 29
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 53 134
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:37
Symbol 37 MovieClip [FPushButtonSymbol]Uses:34 36
Symbol 38 MovieClipUses:3Used by:39
Symbol 39 MovieClip [FHighlightSymbol]Uses:38
Symbol 40 FontUsed by:41
Symbol 41 EditableTextUses:40Used by:42
Symbol 42 MovieClip [FLabelSymbol]Uses:41
Symbol 43 MovieClip [FListItemSymbol]Used by:53
Symbol 44 MovieClipUses:6Used by:45
Symbol 45 MovieClipUses:44Used by:46
Symbol 46 MovieClip [FScrollBarSymbol]Uses:45Used by:50 272  Timeline
Symbol 47 MovieClip [DataProviderSymbol]Used by:49
Symbol 48 MovieClip [FSelectableItemSymbol]Used by:49
Symbol 49 MovieClip [FSelectableListSymbol]Uses:47 48Used by:50
Symbol 50 MovieClip [FScrollSelectListSymbol]Uses:46 49Used by:53 134
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:53
Symbol 53 MovieClip [FListBoxSymbol]Uses:43 50 34 52
Symbol 54 MovieClip [FUIComponentSymbol]
Symbol 55 MovieClipUses:9Used by:66
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:56Used by:66
Symbol 58 GraphicUsed by:59 79 109 124
Symbol 59 MovieClipUses:58Used by:66
Symbol 60 GraphicUsed by:61 80 110 125
Symbol 61 MovieClipUses:60Used by:66
Symbol 62 GraphicUsed by:63 68 78 111 115 123
Symbol 63 MovieClipUses:62Used by:66
Symbol 64 GraphicUsed by:65 67 77 112 114 122
Symbol 65 MovieClipUses:64Used by:66
Symbol 66 MovieClipUses:55 57 59 61 63 65Used by:86
Symbol 67 MovieClipUses:64Used by:76
Symbol 68 MovieClipUses:62Used by:76
Symbol 69 GraphicUsed by:70 116
Symbol 70 MovieClipUses:69Used by:76
Symbol 71 GraphicUsed by:72 117
Symbol 72 MovieClipUses:71Used by:76
Symbol 73 MovieClipUses:9Used by:76
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:76
Symbol 76 MovieClipUses:67 68 70 72 73 75Used by:86
Symbol 77 MovieClipUses:64Used by:85
Symbol 78 MovieClipUses:62Used by:85
Symbol 79 MovieClipUses:58Used by:85
Symbol 80 MovieClipUses:60Used by:85
Symbol 81 GraphicUsed by:82 126
Symbol 82 MovieClipUses:81Used by:85
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClipUses:83Used by:85
Symbol 85 MovieClipUses:77 78 79 80 82 84Used by:86
Symbol 86 MovieClip [UpArrow]Uses:66 76 85
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:87Used by:92
Symbol 89 MovieClipUses:1Used by:92
Symbol 90 MovieClipUses:9Used by:92
Symbol 91 MovieClipUses:9Used by:92
Symbol 92 MovieClipUses:88 89 90 91Used by:105
Symbol 93 MovieClipUses:1Used by:99
Symbol 94 MovieClipUses:1Used by:99
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:95Used by:99
Symbol 97 MovieClipUses:9Used by:99
Symbol 98 MovieClipUses:9Used by:99
Symbol 99 MovieClipUses:93 94 96 97 98Used by:105
Symbol 100 MovieClipUses:9Used by:104
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:104
Symbol 103 MovieClipUses:1Used by:104
Symbol 104 MovieClipUses:100 102 103Used by:105
Symbol 105 MovieClip [ScrollThumb]Uses:92 99 104
Symbol 106 MovieClipUses:9Used by:113
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:113
Symbol 109 MovieClipUses:58Used by:113
Symbol 110 MovieClipUses:60Used by:113
Symbol 111 MovieClipUses:62Used by:113
Symbol 112 MovieClipUses:64Used by:113
Symbol 113 MovieClipUses:106 108 109 110 111 112Used by:130
Symbol 114 MovieClipUses:64Used by:121
Symbol 115 MovieClipUses:62Used by:121
Symbol 116 MovieClipUses:69Used by:121
Symbol 117 MovieClipUses:71Used by:121
Symbol 118 MovieClipUses:9Used by:121
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:121
Symbol 121 MovieClipUses:114 115 116 117 118 120Used by:130
Symbol 122 MovieClipUses:64Used by:129
Symbol 123 MovieClipUses:62Used by:129
Symbol 124 MovieClipUses:58Used by:129
Symbol 125 MovieClipUses:60Used by:129
Symbol 126 MovieClipUses:81Used by:129
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127Used by:129
Symbol 129 MovieClipUses:122 123 124 125 126 128Used by:130
Symbol 130 MovieClip [DownArrow]Uses:113 121 129
Symbol 131 MovieClip [FComboBoxItemSymbol]Used by:134
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:134
Symbol 134 MovieClip [FComboBoxSymbol]Uses:50 131 34 133Used by:Timeline
Symbol 135 GraphicUsed by:Timeline
Symbol 136 FontUsed by:137 138 139 278
Symbol 137 TextUses:136Used by:Timeline
Symbol 138 TextUses:136Used by:Timeline
Symbol 139 TextUses:136Used by:Timeline
Symbol 140 GraphicUsed by:145
Symbol 141 GraphicUsed by:145
Symbol 142 GraphicUsed by:145
Symbol 143 GraphicUsed by:145
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:140 141 142 143 144Used by:169
Symbol 146 GraphicUsed by:168
Symbol 147 FontUsed by:148 149 151 153 155 157 159 161 163 164 165 166 167 225 227 228 230 232 234 236 238 247 248 282
Symbol 148 EditableTextUses:147Used by:168
Symbol 149 TextUses:147Used by:168
Symbol 150 GraphicUsed by:168
Symbol 151 TextUses:147Used by:168
Symbol 152 GraphicUsed by:168
Symbol 153 TextUses:147Used by:168
Symbol 154 GraphicUsed by:168
Symbol 155 TextUses:147Used by:168
Symbol 156 GraphicUsed by:168
Symbol 157 TextUses:147Used by:168
Symbol 158 GraphicUsed by:168
Symbol 159 TextUses:147Used by:168
Symbol 160 GraphicUsed by:168
Symbol 161 TextUses:147Used by:168
Symbol 162 GraphicUsed by:168
Symbol 163 TextUses:147Used by:168
Symbol 164 TextUses:147Used by:168
Symbol 165 TextUses:147Used by:168
Symbol 166 TextUses:147Used by:168
Symbol 167 TextUses:147Used by:168
Symbol 168 MovieClipUses:146 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167Used by:169 180
Symbol 169 MovieClipUses:145 168Used by:Timeline
Symbol 170 GraphicUsed by:180
Symbol 171 FontUsed by:172 177 179 256 271
Symbol 172 TextUses:171Used by:180
Symbol 173 GraphicUsed by:176 178
Symbol 174 GraphicUsed by:176 178
Symbol 175 GraphicUsed by:176 178
Symbol 176 ButtonUses:173 174 175Used by:180
Symbol 177 TextUses:171Used by:180
Symbol 178 ButtonUses:173 174 175Used by:180
Symbol 179 TextUses:171Used by:180
Symbol 180 MovieClipUses:170 172 168 176 177 178 179Used by:Timeline
Symbol 181 GraphicUsed by:241
Symbol 182 GraphicUsed by:223
Symbol 183 GraphicUsed by:200 217
Symbol 184 GraphicUsed by:200
Symbol 185 GraphicUsed by:200
Symbol 186 GraphicUsed by:200
Symbol 187 GraphicUsed by:200
Symbol 188 GraphicUsed by:200
Symbol 189 GraphicUsed by:200
Symbol 190 GraphicUsed by:200
Symbol 191 GraphicUsed by:200
Symbol 192 GraphicUsed by:200
Symbol 193 GraphicUsed by:200
Symbol 194 GraphicUsed by:200
Symbol 195 GraphicUsed by:200
Symbol 196 GraphicUsed by:200
Symbol 197 GraphicUsed by:200
Symbol 198 GraphicUsed by:200
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClipUses:183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199Used by:223
Symbol 201 GraphicUsed by:217
Symbol 202 GraphicUsed by:217
Symbol 203 GraphicUsed by:217
Symbol 204 GraphicUsed by:217
Symbol 205 GraphicUsed by:217
Symbol 206 GraphicUsed by:217
Symbol 207 GraphicUsed by:217
Symbol 208 GraphicUsed by:217
Symbol 209 GraphicUsed by:217
Symbol 210 GraphicUsed by:217
Symbol 211 GraphicUsed by:217
Symbol 212 GraphicUsed by:217
Symbol 213 GraphicUsed by:217
Symbol 214 GraphicUsed by:217
Symbol 215 GraphicUsed by:217
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:183 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216Used by:223
Symbol 218 GraphicUsed by:222
Symbol 219 GraphicUsed by:222
Symbol 220 GraphicUsed by:222
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:218 219 220 221Used by:223
Symbol 223 MovieClipUses:182 200 217 222Used by:241
Symbol 224 GraphicUsed by:241
Symbol 225 EditableTextUses:147Used by:240
Symbol 226 GraphicUsed by:240
Symbol 227 TextUses:147Used by:240
Symbol 228 TextUses:147Used by:240
Symbol 229 GraphicUsed by:240
Symbol 230 TextUses:147Used by:240
Symbol 231 GraphicUsed by:240
Symbol 232 TextUses:147Used by:240
Symbol 233 GraphicUsed by:240
Symbol 234 TextUses:147Used by:240
Symbol 235 GraphicUsed by:240
Symbol 236 TextUses:147Used by:240
Symbol 237 GraphicUsed by:240
Symbol 238 TextUses:147Used by:240
Symbol 239 GraphicUsed by:240
Symbol 240 MovieClipUses:225 226 227 228 229 230 231 232 233 234 235 236 237 238 239Used by:241
Symbol 241 MovieClipUses:181 223 224 240Used by:Timeline
Symbol 242 GraphicUsed by:Timeline
Symbol 243 GraphicUsed by:246
Symbol 244 GraphicUsed by:246
Symbol 245 GraphicUsed by:246
Symbol 246 ButtonUses:243 244 245Used by:Timeline
Symbol 247 EditableTextUses:147Used by:Timeline
Symbol 248 EditableTextUses:147Used by:Timeline
Symbol 249 GraphicUsed by:254
Symbol 250 GraphicUsed by:254
Symbol 251 GraphicUsed by:254
Symbol 252 GraphicUsed by:254
Symbol 253 GraphicUsed by:254
Symbol 254 ButtonUses:249 250 251 252 253Used by:Timeline
Symbol 255 GraphicUsed by:272
Symbol 256 EditableTextUses:171Used by:272
Symbol 257 GraphicUsed by:263 264 265
Symbol 258 GraphicUsed by:264
Symbol 259 GraphicUsed by:264
Symbol 260 GraphicUsed by:263 264 265
Symbol 261 GraphicUsed by:263 265
Symbol 262 GraphicUsed by:263 265
Symbol 263 ButtonUses:257 261 262 260Used by:264
Symbol 264 ButtonUses:257 258 259 260 263Used by:272
Symbol 265 ButtonUses:257 261 262 260Used by:272
Symbol 266 GraphicUsed by:270
Symbol 267 GraphicUsed by:270
Symbol 268 GraphicUsed by:270
Symbol 269 GraphicUsed by:270
Symbol 270 ButtonUses:266 267 268 269Used by:272
Symbol 271 EditableTextUses:171Used by:272
Symbol 272 MovieClipUses:255 256 264 265 46 270 271Used by:Timeline
Symbol 273 GraphicUsed by:274
Symbol 274 MovieClipUses:273Used by:Timeline
Symbol 275 FontUsed by:276
Symbol 276 EditableTextUses:275Used by:Timeline
Symbol 277 GraphicUsed by:Timeline
Symbol 278 TextUses:136Used by:Timeline
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279Used by:Timeline
Symbol 281 GraphicUsed by:284
Symbol 282 EditableTextUses:147Used by:284
Symbol 283 GraphicUsed by:284
Symbol 284 ButtonUses:281 282 283Used by:Timeline

Instance Names

"Masu"Frame 1Symbol 169 MovieClip
"NariWinDum"Frame 1Symbol 180 MovieClip
"Guide"Frame 1Symbol 241 MovieClip
"UndoButton"Frame 1Symbol 246 Button
"TurnText"Frame 1Symbol 247 EditableText
"UndoButtonText"Frame 1Symbol 248 EditableText
"textbutton"Frame 1Symbol 254 Button
"TxtWin"Frame 1Symbol 272 MovieClip
"LstHnd"Frame 1Symbol 274 MovieClip
"record"Frame 1Symbol 276 EditableText
"frame1"Symbol 11 MovieClip Frame 1Symbol 4 MovieClip
"frame2"Symbol 11 MovieClip Frame 1Symbol 5 MovieClip
"frame3"Symbol 11 MovieClip Frame 1Symbol 7 MovieClip
"frame4"Symbol 11 MovieClip Frame 1Symbol 8 MovieClip
"frame5"Symbol 11 MovieClip Frame 1Symbol 10 MovieClip
"frame1"Symbol 17 MovieClip Frame 1Symbol 12 MovieClip
"frame2"Symbol 17 MovieClip Frame 1Symbol 13 MovieClip
"frame3"Symbol 17 MovieClip Frame 1Symbol 14 MovieClip
"frame4"Symbol 17 MovieClip Frame 1Symbol 15 MovieClip
"frame5"Symbol 17 MovieClip Frame 1Symbol 16 MovieClip
"frame1"Symbol 23 MovieClip Frame 1Symbol 18 MovieClip
"frame2"Symbol 23 MovieClip Frame 1Symbol 19 MovieClip
"frame3"Symbol 23 MovieClip Frame 1Symbol 20 MovieClip
"frame4"Symbol 23 MovieClip Frame 1Symbol 21 MovieClip
"frame5"Symbol 23 MovieClip Frame 1Symbol 22 MovieClip
"frame1"Symbol 29 MovieClip Frame 1Symbol 24 MovieClip
"frame2"Symbol 29 MovieClip Frame 1Symbol 25 MovieClip
"frame3"Symbol 29 MovieClip Frame 1Symbol 26 MovieClip
"frame4"Symbol 29 MovieClip Frame 1Symbol 27 MovieClip
"frame5"Symbol 29 MovieClip Frame 1Symbol 28 MovieClip
"up_mc"Symbol 30 MovieClip [fpb_states] Frame 1Symbol 11 MovieClip
"over_mc"Symbol 30 MovieClip [fpb_states] Frame 2Symbol 17 MovieClip
"down_mc"Symbol 30 MovieClip [fpb_states] Frame 3Symbol 23 MovieClip
"disabled_mc"Symbol 30 MovieClip [fpb_states] Frame 4Symbol 29 MovieClip
"boundingBox"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 32 MovieClip
"boundingBox2"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 32 MovieClip
"boundingBox_mc"Symbol 37 MovieClip [FPushButtonSymbol] Frame 1Symbol 34 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 37 MovieClip [FPushButtonSymbol] Frame 1Symbol 36 MovieClip
"highlight_mc"Symbol 39 MovieClip [FHighlightSymbol] Frame 1Symbol 38 MovieClip
"highlight_mc2"Symbol 39 MovieClip [FHighlightSymbol] Frame 2Symbol 38 MovieClip
"highlight_mc3"Symbol 39 MovieClip [FHighlightSymbol] Frame 3Symbol 38 MovieClip
"labelField"Symbol 42 MovieClip [FLabelSymbol] Frame 1Symbol 41 EditableText
"track_mc"Symbol 45 MovieClip Frame 1Symbol 44 MovieClip
"scrollTrack_mc"Symbol 46 MovieClip [FScrollBarSymbol] Frame 1Symbol 45 MovieClip
"dPAsset"Symbol 49 MovieClip [FSelectableListSymbol] Frame 1Symbol 47 MovieClip [DataProviderSymbol]
"ItemAsset"Symbol 49 MovieClip [FSelectableListSymbol] Frame 1Symbol 48 MovieClip [FSelectableItemSymbol]
"scrollBarAsset"Symbol 50 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 46 MovieClip [FScrollBarSymbol]
"superClassAsset"Symbol 50 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 49 MovieClip [FSelectableListSymbol]
"itemAsset"Symbol 53 MovieClip [FListBoxSymbol] Frame 1Symbol 43 MovieClip [FListItemSymbol]
"superClassAsset"Symbol 53 MovieClip [FListBoxSymbol] Frame 1Symbol 50 MovieClip [FScrollSelectListSymbol]
"boundingBox_mc"Symbol 53 MovieClip [FListBoxSymbol] Frame 1Symbol 34 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 53 MovieClip [FListBoxSymbol] Frame 1Symbol 52 MovieClip
"face_mc"Symbol 66 MovieClip Frame 1Symbol 55 MovieClip
"arrow_mc"Symbol 66 MovieClip Frame 1Symbol 57 MovieClip
"highlight_mc"Symbol 66 MovieClip Frame 1Symbol 59 MovieClip
"shadow_mc"Symbol 66 MovieClip Frame 1Symbol 61 MovieClip
"darkshadow_mc"Symbol 66 MovieClip Frame 1Symbol 63 MovieClip
"highlight3D_mc"Symbol 66 MovieClip Frame 1Symbol 65 MovieClip
"darkshadow_mc"Symbol 76 MovieClip Frame 1Symbol 67 MovieClip
"highlight3D_mc"Symbol 76 MovieClip Frame 1Symbol 68 MovieClip
"highlight_mc"Symbol 76 MovieClip Frame 1Symbol 70 MovieClip
"shadow_mc"Symbol 76 MovieClip Frame 1Symbol 72 MovieClip
"face_mc"Symbol 76 MovieClip Frame 1Symbol 73 MovieClip
"arrow_mc"Symbol 76 MovieClip Frame 1Symbol 75 MovieClip
"highlight3D_mc"Symbol 85 MovieClip Frame 1Symbol 77 MovieClip
"darkshadow_mc"Symbol 85 MovieClip Frame 1Symbol 78 MovieClip
"highlight_mc"Symbol 85 MovieClip Frame 1Symbol 79 MovieClip
"shadow_mc"Symbol 85 MovieClip Frame 1Symbol 80 MovieClip
"face_mc"Symbol 85 MovieClip Frame 1Symbol 82 MovieClip
"arrow_mc"Symbol 85 MovieClip Frame 1Symbol 84 MovieClip
"up"Symbol 86 MovieClip [UpArrow] Frame 1Symbol 66 MovieClip
"down"Symbol 86 MovieClip [UpArrow] Frame 2Symbol 76 MovieClip
"disabled"Symbol 86 MovieClip [UpArrow] Frame 3Symbol 85 MovieClip
"highlight3D_mc"Symbol 92 MovieClip Frame 1Symbol 88 MovieClip
"darkshadow_mc"Symbol 92 MovieClip Frame 1Symbol 89 MovieClip
"highlight_mc"Symbol 92 MovieClip Frame 1Symbol 90 MovieClip
"shadow_mc"Symbol 92 MovieClip Frame 1Symbol 91 MovieClip
"highlight3D_mc"Symbol 99 MovieClip Frame 1Symbol 93 MovieClip
"darkshadow_mc"Symbol 99 MovieClip Frame 1Symbol 94 MovieClip
"shadow_mc"Symbol 99 MovieClip Frame 1Symbol 96 MovieClip
"face_mc"Symbol 99 MovieClip Frame 1Symbol 97 MovieClip
"highlight_mc"Symbol 99 MovieClip Frame 1Symbol 98 MovieClip
"shadow_mc"Symbol 104 MovieClip Frame 1Symbol 100 MovieClip
"darkshadow_mc"Symbol 104 MovieClip Frame 1Symbol 102 MovieClip
"highlight3D_mc"Symbol 104 MovieClip Frame 1Symbol 103 MovieClip
"mc_sliderTop"Symbol 105 MovieClip [ScrollThumb] Frame 1Symbol 92 MovieClip
"mc_sliderMid"Symbol 105 MovieClip [ScrollThumb] Frame 1Symbol 99 MovieClip
"mc_sliderBot"Symbol 105 MovieClip [ScrollThumb] Frame 1Symbol 104 MovieClip
"face_mc"Symbol 113 MovieClip Frame 1Symbol 106 MovieClip
"arrow_mc"Symbol 113 MovieClip Frame 1Symbol 108 MovieClip
"highlight_mc"Symbol 113 MovieClip Frame 1Symbol 109 MovieClip
"shadow_mc"Symbol 113 MovieClip Frame 1Symbol 110 MovieClip
"darkshadow_mc"Symbol 113 MovieClip Frame 1Symbol 111 MovieClip
"highlight3D_mc"Symbol 113 MovieClip Frame 1Symbol 112 MovieClip
"darkshadow_mc"Symbol 121 MovieClip Frame 1Symbol 114 MovieClip
"highlight3D_mc"Symbol 121 MovieClip Frame 1Symbol 115 MovieClip
"highlight_mc"Symbol 121 MovieClip Frame 1Symbol 116 MovieClip
"shadow_mc"Symbol 121 MovieClip Frame 1Symbol 117 MovieClip
"face_mc"Symbol 121 MovieClip Frame 1Symbol 118 MovieClip
"arrow_mc"Symbol 121 MovieClip Frame 1Symbol 120 MovieClip
"highlight3D_mc"Symbol 129 MovieClip Frame 1Symbol 122 MovieClip
"darkshadow_mc"Symbol 129 MovieClip Frame 1Symbol 123 MovieClip
"highlight_mc"Symbol 129 MovieClip Frame 1Symbol 124 MovieClip
"shadow_mc"Symbol 129 MovieClip Frame 1Symbol 125 MovieClip
"face_mc"Symbol 129 MovieClip Frame 1Symbol 126 MovieClip
"arrow_mc"Symbol 129 MovieClip Frame 1Symbol 128 MovieClip
"up"Symbol 130 MovieClip [DownArrow] Frame 1Symbol 113 MovieClip
"down"Symbol 130 MovieClip [DownArrow] Frame 2Symbol 121 MovieClip
"disabled"Symbol 130 MovieClip [DownArrow] Frame 3Symbol 129 MovieClip
"superClassAsset"Symbol 134 MovieClip [FComboBoxSymbol] Frame 1Symbol 50 MovieClip [FScrollSelectListSymbol]
"itemAsset"Symbol 134 MovieClip [FComboBoxSymbol] Frame 1Symbol 131 MovieClip [FComboBoxItemSymbol]
"proxyBox_mc"Symbol 134 MovieClip [FComboBoxSymbol] Frame 1Symbol 34 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 134 MovieClip [FComboBoxSymbol] Frame 1Symbol 133 MovieClip
"NameText"Symbol 168 MovieClip Frame 1Symbol 148 EditableText
"Base"Symbol 169 MovieClip Frame 1Symbol 145 MovieClip
"Piece"Symbol 169 MovieClip Frame 1Symbol 168 MovieClip
"NariYes"Symbol 180 MovieClip Frame 1Symbol 176 Button
"UpMark"Symbol 223 MovieClip Frame 1Symbol 200 MovieClip
"LeftMark"Symbol 223 MovieClip Frame 1Symbol 200 MovieClip
"DownMark"Symbol 223 MovieClip Frame 1Symbol 200 MovieClip
"RightMark"Symbol 223 MovieClip Frame 1Symbol 200 MovieClip
"LUMark"Symbol 223 MovieClip Frame 1Symbol 217 MovieClip
"LDMark"Symbol 223 MovieClip Frame 1Symbol 217 MovieClip
"RDMark"Symbol 223 MovieClip Frame 1Symbol 217 MovieClip
"RUMark"Symbol 223 MovieClip Frame 1Symbol 217 MovieClip
"OtherMark"Symbol 223 MovieClip Frame 1Symbol 222 MovieClip
"Letter"Symbol 240 MovieClip Frame 1Symbol 225 EditableText
"BoardMain"Symbol 241 MovieClip Frame 1Symbol 223 MovieClip
"BoardNari"Symbol 241 MovieClip Frame 1Symbol 223 MovieClip
"PieceName"Symbol 241 MovieClip Frame 1Symbol 240 MovieClip
"NariName"Symbol 241 MovieClip Frame 1Symbol 240 MovieClip
"Texts"Symbol 272 MovieClip Frame 1Symbol 256 EditableText
"TxtCaution"Symbol 272 MovieClip Frame 1Symbol 271 EditableText

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 2 as "fpb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 30 as "fpb_states"
ExportAssets (56)Timeline Frame 1Symbol 34 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 37 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 1Symbol 39 as "FHighlightSymbol"
ExportAssets (56)Timeline Frame 1Symbol 42 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 43 as "FListItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 47 as "DataProviderSymbol"
ExportAssets (56)Timeline Frame 1Symbol 48 as "FSelectableItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 49 as "FSelectableListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 50 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 34 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 53 as "FListBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 54 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 86 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 105 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 130 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 50 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 131 as "FComboBoxItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 34 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 2Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 2Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 3Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 3Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 4Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 4Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 5Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 5Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 6Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 6Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 7Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 7Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 8Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 8Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 9Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 9Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 10Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 10Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 11Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 11Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 12Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 12Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 13Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 13Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 14Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 14Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 15Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 15Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 16Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 16Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 17Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 17Symbol 134 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 18Symbol 46 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 18Symbol 134 as "FComboBoxSymbol"

Labels

"Start"Frame 9
"Init"Frame 10
"ChoicePiece"Frame 11
"ChoiceMove"Frame 13
"ChoiceNari"Frame 15
"SecondMove"Frame 17
#"Symbol_10"Symbol 2 MovieClip [fpb_hitArea] Frame 1
"up"Symbol 30 MovieClip [fpb_states] Frame 1
"over"Symbol 30 MovieClip [fpb_states] Frame 2
"down"Symbol 30 MovieClip [fpb_states] Frame 3
"disabled"Symbol 30 MovieClip [fpb_states] Frame 4
"enabled"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 2
"enabled"Symbol 39 MovieClip [FHighlightSymbol] Frame 1
"disabled"Symbol 39 MovieClip [FHighlightSymbol] Frame 2
"unfocused"Symbol 39 MovieClip [FHighlightSymbol] Frame 3
"Symbol_32"Symbol 42 MovieClip [FLabelSymbol] Frame 1
"Symbol_354"Symbol 47 MovieClip [DataProviderSymbol] Frame 1
"Symbol_36"Symbol 54 MovieClip [FUIComponentSymbol] Frame 1




http://swfchan.com/4/17764/info.shtml
Created: 25/12 -2018 13:47:52 Last modified: 25/12 -2018 13:47:52 Server time: 29/04 -2024 12:51:08