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

swfchan turned sixteen years old yesterday! (5may2024)

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

Fruits.swf

This is the info page for
Flash #125328

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


Text
맛나는 과일나라

엔젤 오랜지

W - 4000원

엔젤 키위

엔젤 바나나

엔젤 포도

엔젤 딸기

엔젤 복숭아

엔젤 사과

clearSound

게임방법
가로나 세로 방향으로 같은 모양의 과일을
3개 이상 맞추면 블럭이 사라집니다.

보너스 미션!
냠냠이가 먹고 싶어하는 과일을
찾아 없애면 해당하는 군것질이 모
두 없어 집니다.

기본 미션!
미션란에 있는 과일을 업애면기본
점수의 X 2배의 점수를 드립니다.

점수x 2

SOUND OFF

SOUND ON

PAUSE

PLAY

NEXT GAME

NEXT GAME

NEXT GAME

ActionScript [AS1/AS2]

Frame 1
stop(); System.useCodepage = true; init = function () { hh = 0; pauseTime = 0; levelNum = 0; scoreNum = 30; plusScore = 30; lengGap = 8; targetScore = 0; judArr = [2, -16, -2, 16]; itemArr = [1, 2, 3, 4, 5, 6, 7, 8]; noMatchChkArr = [[-2, -3], [-8, -18], [2, 3], [8, 16]]; itemSpeed = 0.4; goodS = new Sound(this); goodS.attachSound("good"); badS = new Sound(this); badS.attachSound("bad"); clickS = new Sound(this); clickS.attachSound("click"); startS = new Sound(this); startS.attachSound("start"); bonusS = new Sound(this); bonusS.attachSound("bonus"); endS = new Sound(this); endS.attachSound("end"); bgS = new Sound(this); bgS.attachSound("bgsnd"); timeS = new Sound(this); timeS.attachSound("timeLimit"); this.createEmptyMovieClip("waitTimeMc", 10000); }; gameStart = function () { gotoAndStop (3); startS.start(0, 1); bgS.start(0, 999); gameST = getTimer() / 1000; gameArrange(); }; RESTART = function () { k = 0; while (k < 5) { gameOverBoard.rankTMC["mc" + k].gotoAndStop(1); gameOverBoard.scoreTMC["mc" + k].gotoAndStop(1); scoreTMC["mc" + k].gotoAndStop(1); targetScoreTMC["mc" + k].gotoAndStop(1); k++; } gameOverBoard._visible = 0; levelNum = 0; scoreNum = 30; targetScore = 0; startS.start(0, 1); bgS.start(0, 999); gameST = getTimer() / 1000; gameArrange(); }; gameArrange = function () { dep = 0; choose = 0; matchNum = 0; pauseTime = 0; mission02Num = 0; dupItemMcArr = []; itemEmptyMcArr = []; currentScore = 0; gamePlay = true; makedLEVELTXT(); scorePlus(0); mission01Num = random(itemLengChk) + 1; missionMc01.gotoAndStop(mission01Num); missionMc02.mission02WaitCHK(); posY = 0; tempBackDiv = 2; itemGroup.itemMc._visible = 0; k = 0; while (k < lengGap) { posX = 0; h = 0; while (h < lengGap) { dep++; temp = itemGroup.itemMc.duplicateMovieClip("item_" + dep, dep); dupItemMcArr.push(temp); itemEmptyMcArr.push(temp); temp.itemDoubleCheck(dep); temp._x = posX; temp._y = posY; temp.xno = dep - 1; temp.mcx = h + 1; temp.mcy = k + 1; posX = posX + 50; temp.onRollOver = function () { this.outFrame = this.bg_mc._currentframe; this.bg_mc.gotoAndStop(2); }; temp.onRollOut = (temp.onReleaseOutside = function () { delete this.onEnterFrame; this.bg_mc.gotoAndStop(this.outFrame); }); temp.onPress = function () { this.outFrame = 3; this.bg_mc.gotoAndStop(3); this.mc.gotoAndStop(2); if (choose) { chooseMc_1 = this; if (chooseMc_1._name == chooseMc_0._name) { this.outFrame = 1; this.bg_mc.gotoAndStop(1); chooseMc_0 = (chooseMc_1 = null); choose = 0; badS.start(0, 1); } else { changeItem(); } } else { clickS.start(0, 1); choose++; chooseMc_0 = this; this.onEnterFrame = function () { if ((((this._parent._xmouse > 0) && (this._parent._xmouse < 400)) && (this._parent._ymouse > 0)) && (this._parent._ymouse < 400)) { if (this._parent._xmouse < (this._x - 5)) { chooseMc_1 = dupItemMcArr[this.xno - 1]; delete this.onEnterFrame; changeItem(); } else if (this._parent._xmouse > (this._x + 55)) { chooseMc_1 = dupItemMcArr[this.xno + 1]; delete this.onEnterFrame; changeItem(); } else if (this._parent._ymouse < (this._y - 5)) { chooseMc_1 = dupItemMcArr[this.xno - 8]; delete this.onEnterFrame; changeItem(); } else if (this._parent._ymouse > (this._y + 55)) { chooseMc_1 = dupItemMcArr[this.xno + 8]; delete this.onEnterFrame; changeItem(); } } }; } }; temp.onRelease = function () { delete this.onEnterFrame; }; temp.useHandCursor = false; h++; } posY = posY + 50; k++; } gageMc.timeCheckStart(); waitTimeMc.waitTimeCheck(5, 1); }; nextLevel = function () { successBoard._visible = 0; gameArrange(); }; makedLEVELTXT = function () { levelNum++; chk = levelNum % 4; if (chk) { fn = Math.floor(levelNum / 4) + 1; bn = levelNum - ((fn - 1) * 4); } else { fn = levelNum / 4; bn = 4; } if (fn < 4) { itemLengChk = 7; } else { itemLengChk = 8; } targetScore = targetScore + (500 + ((fn - 1) * 500)); levelTxt0Mc.gotoAndStop(fn + 2); levelTxt1Mc.gotoAndStop(bn + 2); targetScoreTMC.makedNumbering(targetScore); gageMc.barMc._xscale = (gageGap = 60 - ((fn - 1) * 5)); }; scorePlus = function (num) { scoreNum = scoreNum + num; scoreTMC.makedNumbering(scoreNum); }; MovieClip.prototype.timeCheckStart = function () { this.ST = getTimer() / 1000; this.onEnterFrame = function () { this.PT = ((getTimer() / 1000) - this.ST) + pauseTime; scale = gageGap - this.PT; this.barMc._xscale = this.barMc._xscale + ((scale - this.barMc._xscale) * 0.5); if (this.barMc._xscale >= 100) { this.barMc._xscale = 100; gageGap = 100 + this.PT; } if (this.barMc._xscale < 21) { if (limitSoundCHK) { timeS.start(0, 2); limitSoundCHK = false; this.barMc.gotoAndStop(2); } this.gotoAndStop(2); } else { limitSoundCHK = true; this.gotoAndStop(1); this.barMc.gotoAndStop(1); } if (this.barMc._xscale <= 0) { delete this.onEnterFrame; gameOver(); } }; }; changeItem = function () { hideMc._visible = 1; tempGap = Math.abs(chooseMc_0.no - chooseMc_1.no); if ((tempGap == lengGap) || ((tempGap == 1) && (chooseMc_0.rowType == chooseMc_1.rowType))) { clickS.start(0, 1); view0Mc = itemGroup.itemMc.duplicateMovieClip("view0", 1000); view1Mc = itemGroup.itemMc.duplicateMovieClip("view1", 1001); view0Mc._x = chooseMc_0._x; view0Mc._y = chooseMc_0._y; view1Mc._x = chooseMc_1._x; view1Mc._y = chooseMc_1._y; view0X = view1Mc._x; view0Y = view1Mc._y; view1X = view0Mc._x; view1Y = view0Mc._y; view0Mc.itemType = chooseMc_0.itemType; view1Mc.itemType = chooseMc_1.itemType; view0Mc.gotoAndStop(chooseMc_0.itemType); view0Mc.mc.gotoAndStop(2); view1Mc.gotoAndStop(chooseMc_1.itemType); view1Mc.mc.gotoAndStop(2); chooseMc_0._visible = (chooseMc_1._visible = 0); itemGroup.onEnterFrame = function () { view0Mc._x = view0Mc._x + ((view0X - view0Mc._x) * itemSpeed); view0Mc._y = view0Mc._y + ((view0Y - view0Mc._y) * itemSpeed); view1Mc._x = view1Mc._x + ((view1X - view1Mc._x) * itemSpeed); view1Mc._y = view1Mc._y + ((view1Y - view1Mc._y) * itemSpeed); if ((view0Mc._x > (view0X - 1)) && (view0Mc._x < (view0X + 1))) { if ((view0Mc._y > (view0Y - 1)) && (view0Mc._y < (view0Y + 1))) { if ((view1Mc._x > (view1X - 1)) && (view1Mc._x < (view1X + 1))) { if ((view1Mc._y > (view1Y - 1)) && (view1Mc._y < (view1Y + 1))) { delete this.onEnterFrame; tempItem = chooseMc_1.itemType; chooseMc_1.gotoAndStop([chooseMc_0.itemType]); chooseMc_0.gotoAndStop(tempItem); chooseMc_1.itemType = chooseMc_0.itemType; chooseMc_0.itemType = tempItem; chooseMc_0.outFrame = 1; chooseMc_1.outFrame = 1; chooseMc_0.bg_mc.gotoAndStop(1); chooseMc_1.bg_mc.gotoAndStop(1); chooseMc_0._visible = (chooseMc_1._visible = 1); chooseMc_0.mc.gotoAndStop(2); chooseMc_1.mc.gotoAndStop(2); view0Mc._visible = 0; view1Mc._visible = 0; changeEND(); } } } } }; } else { chooseMc_0.enabled = true; chooseMc_1.enabled = true; chooseMc_0.outFrame = 1; chooseMc_1.outFrame = 1; chooseMc_0.bg_mc.gotoAndStop(1); chooseMc_1.bg_mc.gotoAndStop(1); chooseMc_1 = (chooseMc_0 = null); choose = 0; if (!pauseMc._visible) { hideMc._visible = 0; } } }; changeEND = function () { itemEmptyGetArrRow = []; itemEmptyGetArrCol = []; chooseMc_0.matchJud = 0; chooseMc_1.matchJud = 0; chooseMc_0.itemMatchCheck(1, -1, chooseMc_0.maxNum, chooseMc_0.minNum, itemEmptyGetArrRow); chooseMc_0.itemMatchCheck(lengGap, -lengGap, lengGap, lengGap, itemEmptyGetArrCol); chooseMc_1.itemMatchCheck(1, -1, chooseMc_1.maxNum, chooseMc_1.minNum, itemEmptyGetArrRow); chooseMc_1.itemMatchCheck(lengGap, -lengGap, lengGap, lengGap, itemEmptyGetArrCol); if (chooseMc_0.matchJud || (chooseMc_1.matchJud)) { if (gageGap > 0) { waitTimeMc.waitTimeCheck(5, 0); } } else { badS.start(0, 1); view0Mc._visible = (view1Mc._visible = 1); chooseMc_0._visible = (chooseMc_1._visible = 0); itemGroup.onEnterFrame = function () { view0Mc._x = view0Mc._x + ((view1X - view0Mc._x) * itemSpeed); view0Mc._y = view0Mc._y + ((view1Y - view0Mc._y) * itemSpeed); view1Mc._x = view1Mc._x + ((view0X - view1Mc._x) * itemSpeed); view1Mc._y = view1Mc._y + ((view0Y - view1Mc._y) * itemSpeed); if ((view0Mc._x > (view1X - 1)) && (view0Mc._x < (view1X + 1))) { if ((view0Mc._y > (view1Y - 1)) && (view0Mc._y < (view1Y + 1))) { if ((view1Mc._x > (view0X - 1)) && (view1Mc._x < (view0X + 1))) { if ((view1Mc._y > (view0Y - 1)) && (view1Mc._y < (view0Y + 1))) { delete this.onEnterFrame; chooseMc_0.itemType = view0Mc.itemType; chooseMc_1.itemType = view1Mc.itemType; chooseMc_0.gotoAndStop(chooseMc_0.itemType); chooseMc_1.gotoAndStop(chooseMc_1.itemType); chooseMc_0.enabled = true; chooseMc_1.enabled = true; chooseMc_0.outFrame = 1; chooseMc_1.outFrame = 1; chooseMc_0.bg_mc.gotoAndStop(1); chooseMc_1.bg_mc.gotoAndStop(1); chooseMc_0._visible = (chooseMc_1._visible = 1); chooseMc_0.mc.gotoAndStop(1); chooseMc_1.mc.gotoAndStop(1); chooseMc_1 = (chooseMc_0 = null); choose = 0; if (!pauseMc._visible) { hideMc._visible = 0; } view0Mc.removeMovieClip(); view1Mc.removeMovieClip(); } } } } }; } }; itemEmptyCheck = function () { scorePlus(currentScore); currentScore = 0; mcNum = lengGap * lengGap; itemEmptyMcArr = []; viewEmptyMcArr = []; k = 0; while (k < (lengGap - 1)) { h = 0; while (h < lengGap) { if ((!itemGroup["item_" + (mcNum - h)]._visible) || (itemGroup["item_" + (mcNum - h)].lightMc._currentframe > 1)) { itemGroup["item_" + (mcNum - h)]._visible = 0; itemGroup["item_" + (mcNum - h)].lightMc.gotoAndStop(1); itemEmptyMcArr.push(itemGroup["item_" + (mcNum - h)]); tempNum = 1000 + viewEmptyMcArr.length; temp = moveItem.itemMc.duplicateMovieClip("view" + tempNum, tempNum); temp._x = itemGroup["item_" + (mcNum - h)]._x; temp._y = itemGroup["item_" + (mcNum - h)]._y; viewEmptyMcArr.push(temp); tempMcNum = ""; g = 1; while (g < 8) { if (itemGroup["item_" + ((mcNum - h) - (g * lengGap))]._visible) { tempMcNum = (mcNum - h) - (g * lengGap); break; } g++; } if (tempMcNum == "") { tempFrame = random(itemLengChk) + 1; } else { tempFrame = itemGroup["item_" + tempMcNum].itemType; itemGroup["item_" + tempMcNum]._visible = 0; } itemGroup["item_" + (mcNum - h)].itemType = tempFrame; itemGroup["item_" + (mcNum - h)].gotoAndStop(tempFrame); itemGroup["item_" + (mcNum - h)].mc.gotoAndStop(1); temp.gotoAndStop(tempFrame); temp.mc.gotoAndStop(1); } h++; } mcNum = mcNum - lengGap; k++; } k = 1; while (k < (lengGap + 1)) { if ((!itemGroup["item_" + k]._visible) || (itemGroup["item_" + k].lightMc._currentframe > 1)) { itemEmptyMcArr.push(itemGroup["item_" + k]); tempNum = 1000 + viewEmptyMcArr.length; temp = moveItem.itemMc.duplicateMovieClip("view" + tempNum, tempNum); temp._x = itemGroup["item_" + k]._x; temp._y = itemGroup["item_" + k]._y; viewEmptyMcArr.push(temp); ran = random(itemLengChk) + 1; itemGroup["item_" + k].itemType = ran; itemGroup["item_" + k].gotoAndStop(ran); itemGroup["item_" + k].mc.gotoAndStop(1); itemGroup["item_" + k]._visible = 0; itemGroup["item_" + k].lightMc.gotoAndStop(1); temp.gotoAndStop(ran); temp.mc.gotoAndStop(1); } k++; } moveItem.movedMcInitY(); }; roopNoMatchCHK = function () { matchCHK = 0; k = 1; while (k < 65) { chkMc = itemGroup["item_" + k]; chkMcFrame = chkMc._currentframe; cx = chkMc.mcx; cy = chkMc.mcy; if (cx < 8) { chkNum = ((cy - 1) * 8) + (cx + 1); chkCX = itemGroup["item_" + chkNum].mcx; chkCY = itemGroup["item_" + chkNum].mcy; if (matchFrameCHK(chkNum, chkCX, chkCY)) { matchCHK++; break; } } if (cx > 1) { chkNum = ((cy - 1) * 8) + (cx - 1); chkCX = itemGroup["item_" + chkNum].mcx; chkCY = itemGroup["item_" + chkNum].mcy; if (matchFrameCHK(chkNum, chkCX, chkCY)) { matchCHK++; break; } } if (cy < 8) { chkNum = (cy * 8) + cx; chkCX = itemGroup["item_" + chkNum].mcx; chkCY = itemGroup["item_" + chkNum].mcy; if (matchFrameCHK(chkNum, chkCX, chkCY)) { matchCHK++; break; } } if (cy > 1) { chkNum = ((cy - 2) * 8) + cx; chkCX = itemGroup["item_" + chkNum].mcx; chkCY = itemGroup["item_" + chkNum].mcy; if (matchFrameCHK(chkNum, chkCX, chkCY)) { matchCHK++; break; } } k++; } if (matchCHK) { trace("ok"); continuedGame(); } else { trace("no"); reflashMc.gotoAndPlay(2); } }; matchFrameCHK = function (no, x, y) { breakCHK = 0; if (x < 7) { chkW0McFrame = itemGroup["item_" + (no + 1)]._currentframe; chkW1McFrame = itemGroup["item_" + (no + 2)]._currentframe; if (chkMc != itemGroup["item_" + (no + 1)]) { if ((chkMcFrame == chkW0McFrame) && (chkMcFrame == chkW1McFrame)) { breakCHK++; } } } if (y < 7) { chkW0McFrame = itemGroup["item_" + (no + 8)]._currentframe; chkW1McFrame = itemGroup["item_" + (no + 16)]._currentframe; if (chkMc != itemGroup["item_" + (no + 8)]) { if ((chkMcFrame == chkW0McFrame) && (chkMcFrame == chkW1McFrame)) { breakCHK++; } } } if (x > 2) { chkW0McFrame = itemGroup["item_" + (no - 1)]._currentframe; chkW1McFrame = itemGroup["item_" + (no - 2)]._currentframe; if (chkMc != itemGroup["item_" + (no - 1)]) { if ((chkMcFrame == chkW0McFrame) && (chkMcFrame == chkW1McFrame)) { breakCHK++; } } } if (y > 2) { chkW0McFrame = itemGroup["item_" + (no - 8)]._currentframe; chkW1McFrame = itemGroup["item_" + (no - 16)]._currentframe; if (chkMc != itemGroup["item_" + (no - 8)]) { if ((chkMcFrame == chkW0McFrame) && (chkMcFrame == chkW1McFrame)) { breakCHK++; } } } if (breakCHK) { return(true); } return(false); }; reflashItemMc = function () { itemEmptyMcArr = []; k = 1; while (k < 65) { itemEmptyMcArr.push(itemGroup["item_" + k]); itemGroup["item_" + k].ran = random(itemLengChk); itemGroup["item_" + k].itemType = itemArr[itemGroup["item_" + k].ran]; itemGroup["item_" + k].gotoAndStop(itemGroup["item_" + k].itemType); itemGroup["item_" + k].mc.gotoAndStop(1); k++; } }; MovieClip.prototype.movedMcInitY = function () { this._y = this.initY + 30; this.onEnterFrame = function () { this._y = this._y + ((this.initY - this._y) * 0.8); if (this._y < (this.initY + 0.5)) { delete this.onEnterFrame; this._y = this.initY; x = 0; while (x < viewEmptyMcArr.length) { viewEmptyMcArr[x].removeMovieClip(); itemEmptyMcArr[x]._visible = 1; x++; } scoreCheck(); } }; }; scoreCheck = function () { if (levelNum < 20) { if (scoreNum >= targetScore) { gamePlay = false; if (levelNum >= 20) { endMc._visible = 1; } else { if (bn == 4) { successBoard.gotoAndStop(2); } else { successBoard.gotoAndStop(1); } successBoard._visible = 1; } clearS.gotoAndPlay(4); deleteAllItemMc(); } else { waitTimeMc.waitTimeCheck(5, 1); } } else { waitTimeMc.waitTimeCheck(5, 1); } }; gamePause = function (chk) { if (gamePlay) { if (chk) { hideMc._visible = 1; pauseMc._alpha = 100; pauseMc._visible = 1; delete missionMc02.onEnterFrame; missionMc02.gotoAndStop(1); pauseTime = gageMc.PT; delete gageMc.onEnterFrame; } else { hideMc._visible = 0; pauseMc._alpha = 0; pauseMc._visible = 0; missionMc02.mission02WaitCHK(); gageMc.timeCheckStart(); } } }; gameOver = function () { bgS.stop(); gamePlay = false; delete waitTimeMc.onEnterFrame; delete this.onEnterFrame; deleteAllItemMc(); gameOverBoard._visible = 1; gamePT = Math.floor((getTimer() / 1000) - gameST); sendData = new LoadVars(); sendData.ot1 = ot1; sendData.ot2 = ot2; sendData.ot3 = ot3; sendData.ot4 = ot4; sendData.ot5 = ot5; sendData.uid = uid; sendData.pt = scoreNum; sendData.rt = gamePT; sendData.sendAndLoad("http://www.gameangel.com/System/gameangel/game_rank.proc.php", sendData, "POST"); sendData.onLoad = function () { gameOverBoard.idTxt.text = this.nick; gameOverBoard.rankTMC.makedNumbering(this.rank); gameOverBoard.scoreTMC.makedNumbering(scoreNum); }; }; deleteAllItemMc = function () { delete gageMc.onEnterFrame; delete itemGroup.onEnterFrame; delete waitTimeMc.onEnterFrame; delete missionMc02.onEnterFrame; missionMc02.gotoAndStop(1); hideMc._visible = 1; view0Mc.itemMcMovedDown(); view1Mc.itemMcMovedDown(); this.onEnterFrame = function () { leng = random(30) + 30; k = 0; while (k < leng) { ran = random(dupItemMcArr.length); dupItemMcArr[ran].itemMcMovedDown(); dupItemMcArr.splice(ran, 1); if (!dupItemMcArr.length) { delete this.onEnterFrame; } k++; } }; }; MovieClip.prototype.hideMcLoad = function () { hideMc = this; this.onRelease = function () { }; this.useHandCursor = false; this._alpha = 0; this._visible = 1; }; MovieClip.prototype.loadedMcLoad = function () { this.maskMc._xscale = 0; this.onEnterFrame = function () { this.loadedBytes = getBytesLoaded(); this.totalBytes = getBytesTotal(); this.scale = (this.loadedBytes / this.totalBytes) * 100; this.maskMc._xscale = this.maskMc._xscale + ((this.scale - this.maskMc._xscale) * 0.1); this.loadedtxt.text = Math.floor(this.maskMc._xscale) + "%"; if (this.maskMc._xscale >= 99) { this.loadedtxt.text = "100%"; delete this.onEnterFrame; nextFrame(); } }; }; MovieClip.prototype.waitTimeCheck = function (gap, no) { this.gap = gap; this.no = no; this.startTime = getTimer() / 100; this.onEnterFrame = function () { this.pastTime = (getTimer() / 100) - this.startTime; if (this.pastTime >= this.gap) { delete this.onEnterFrame; if (this.no == 0) { itemEmptyCheck(); } else if (this.no == 1) { itemEmptyGetArrRow = []; itemEmptyGetArrCol = []; k = 0; while (k < itemEmptyMcArr.length) { itemEmptyMcArr[k].matchJud = 0; itemEmptyMcArr[k].itemMatchCheck(1, -1, itemEmptyMcArr[k].maxNum, itemEmptyMcArr[k].minNum, itemEmptyGetArrRow); itemEmptyMcArr[k].itemMatchCheck(lengGap, -lengGap, lengGap, lengGap, itemEmptyGetArrCol); k++; } tempJud = 0; k = 0; while (k < itemEmptyMcArr.length) { if (itemEmptyMcArr[k].matchJud) { tempJud++; } k++; } if (tempJud) { waitTimeMc.waitTimeCheck(5, 0); } else { roopNoMatchCHK(); } } } }; }; continuedGame = function () { chooseMc_0.enabled = true; chooseMc_1.enabled = true; chooseMc_0.outFrame = 1; chooseMc_1.outFrame = 1; chooseMc_0.bg_mc.gotoAndStop(1); chooseMc_1.bg_mc.gotoAndStop(1); chooseMc_0.mc.gotoAndStop(1); chooseMc_1.mc.gotoAndStop(1); chooseMc_1 = (chooseMc_0 = null); choose = 0; if (!pauseMc._visible) { hideMc._visible = 0; } }; MovieClip.prototype.itemMatchCheck = function (no, num, noLeng, numLeng, Arr) { this.matchMcArr = []; this.frameCheck(no, noLeng, Arr); this.frameCheck(num, numLeng, Arr); if (this.matchMcArr.length > 1) { missionMatchNum = 0; if (mission01Num == this._currentframe) { missionGap = 2; } else if (mission02Num == this._currentframe) { missionGap = 1; k = 0; while (k < dupItemMcArr.length) { if (dupItemMcArr[k] != this) { jud = 0; h = 0; while (h < this.matchMcArr.length) { if (this.matchMcArr[h] == dupItemMcArr[k]) { jud++; break; } h++; } if (!jud) { if (dupItemMcArr[k]._currentframe == this._currentframe) { missionMatchNum++; dupItemMcArr[k].mc.gotoAndStop(3); dupItemMcArr[k].lightMc.gotoAndPlay(2); } } } k++; } } else { missionGap = 1; } plus = ((missionMatchNum + 30) + ((this.matchMcArr.length - 2) * 5)) * missionGap; currentScore = currentScore + plus; this.matchJud++; tempGap = Math.floor(((missionMatchNum + this.matchMcArr.length) - 2) / 2) + 2; gageGap = gageGap + tempGap; trace("gageGap : " + tempGap); this.mc.gotoAndStop(3); this.lightMc.gotoAndPlay(2); w = 0; while (w < this.matchMcArr.length) { this.matchMcArr[w].mc.gotoAndStop(3); this.matchMcArr[w].lightMc.gotoAndPlay(2); w++; } goodS.start(0, 1); } else { this.mc.gotoAndStop(1); } }; MovieClip.prototype.frameCheck = function (plusGap, leng, Arr) { this.gap = 0; this.tempJud = 0; z = 0; while (z < Arr.length) { if (this._name == Arr[z]) { this.tempJud++; break; } z++; } if (!this.tempJud) { l = 1; while (l <= leng) { this.gap = this.gap + plusGap; this.other = this._parent["item_" + (this.no + this.gap)].itemType; if (this.itemType == this.other) { Arr.push(this._parent["item_" + (this.no + this.gap)]._name); this.matchMcArr.push(this._parent["item_" + (this.no + this.gap)]); } else { break; } l++; } } }; MovieClip.prototype.itemDoubleCheck = function (no) { this.no = no; this.div = this.no % lengGap; if (this.div) { this.minNum = this.no - ((Math.floor(this.no / lengGap) * lengGap) + 1); this.maxNum = ((((Math.floor(this.no / lengGap) * lengGap) + 1) + lengGap) - 1) - this.no; } else { this.maxNum = 0; this.minNum = lengGap - 1; } this.ran = random(itemLengChk); this.itemType = itemArr[this.ran]; this.gotoAndStop(this.itemType); this.mc.gotoAndStop(1); }; MovieClip.prototype.itemMcMovedDown = function () { this.firstY = this._y - 30; this.firstX = (this._x - 20) + random(40); this.onEnterFrame = function () { this._x = this._x + ((this.firstX - this._x) * 0.6); this._y = this._y + ((this.firstY - this._y) * 0.6); if (this._y < (this.firstY + 1)) { this.onEnterFrame = function () { this._y = this._y + 40; if (this._y > 440) { delete this.onEnterFrame; this.removeMovieClip(); } }; } }; }; MovieClip.prototype.mission02WaitCHK = function () { this.ST = getTimer() / 1000; this.GAP = random(8) + 8; this.onEnterFrame = function () { this.PT = (getTimer() / 1000) - this.ST; if (this.PT > this.GAP) { delete this.onEnterFrame; missionChkArr = [0, 0, 0, 0, 0, 0, 0, 0]; k = 0; while (k < dupItemMcArr.length) { if (mission01Num != dupItemMcArr[k]._currentframe) { chk = dupItemMcArr[k]._currentframe - 1; missionChkArr[chk]++; } k++; } jud = 0; k = 1; while (k < missionChkArr.length) { if (missionChkArr[jud] < missionChkArr[k]) { jud = k; } k++; } this.gotoAndPlay(2); } }; }; MovieClip.prototype.missionViewCHK = function () { this.ST = getTimer() / 100; mission02Num = itemArr[jud]; this.mc.gotoAndStop(mission02Num); this.onEnterFrame = function () { this.PT = (getTimer() / 100) - this.ST; if (this.PT > 35) { delete this.onEnterFrame; mission02Num = 0; this.play(); this.mission02WaitCHK(); } }; }; MovieClip.prototype.soundConMcLoad = function () { this.onRelease = function () { if (this._currentframe == 1) { bgS.stop(); soundCHK(0); this.onEnterFrame = function () { if (this._currentframe == this._totalframes) { this.stop(); delete this.onEnterFrame; } else { this.nextFrame(); } }; } else { bgS.start(0, 999); soundCHK(100); this.onEnterFrame = function () { if (this._currentframe == 1) { this.stop(); delete this.onEnterFrame; } else { this.prevFrame(); } }; } }; }; soundCHK = function (chk) { goodS.setVolume(chk); badS.setVolume(chk); startS.setVolume(chk); endS.setVolume(chk); bgS.setVolume(chk); timeS.setVolume(chk); if (chk > 0) { clickS.setVolume(chk); } else { clickS.setVolume(0); } }; MovieClip.prototype.makedNumbering = function (num) { numStr = num.toString(); leng = numStr.length; k = 0; while (k < leng) { frameN = Number(numStr.substr((leng - 1) - k, 1)) + 2; this["mc" + k].gotoAndStop(frameN); k++; } }; MovieClip.prototype.moveItemMcLoad = function () { moveItem = this; this.itemMc._visible = 0; this.initY = this._y; }; init();
Instance of Symbol 161 MovieClip in Frame 3
onClipEvent (load) { this.soundConMcLoad(); }
Instance of Symbol 187 MovieClip "itemGroup" in Frame 3
onClipEvent (load) { this.moveItemMcLoad(); }
Instance of Symbol 202 MovieClip in Frame 3
onClipEvent (load) { this.hideMcLoad(); }
Instance of Symbol 202 MovieClip "pauseMc" in Frame 3
onClipEvent (load) { this._alpha = 0; this._visible = 0; }
Instance of Symbol 214 MovieClip "successBoard" in Frame 3
onClipEvent (load) { this._visible = 0; }
Instance of Symbol 216 MovieClip "endMc" in Frame 3
onClipEvent (load) { this._visible = 0; }
Instance of Symbol 237 MovieClip "gameOverBoard" in Frame 3
onClipEvent (load) { this._visible = 0; }
Symbol 30 Button
on (release) { gotoAndStop (2); }
Symbol 37 Button
on (release) { gameStart(); }
Symbol 39 Button
on (release) { getURL ("http://www.gameangel.com"); }
Symbol 44 MovieClip Frame 1
stop();
Symbol 64 Button
on (release) { getURL ("http://www.gameangel.com"); }
Symbol 65 Button
on (release) { getURL ("http://www.gameangel.com"); }
Symbol 99 Button
on (release) { getURL ("http://www.gameangel.com"); }
Symbol 111 MovieClip Frame 1
stop();
Symbol 128 MovieClip Frame 1
stop();
Symbol 134 MovieClip Frame 10
stop();
Symbol 135 MovieClip Frame 10
stop();
Symbol 136 MovieClip Frame 10
stop();
Symbol 140 MovieClip Frame 10
stop();
Symbol 144 MovieClip Frame 10
stop();
Symbol 145 MovieClip Frame 10
stop();
Symbol 146 MovieClip Frame 11
stop();
Symbol 150 MovieClip Frame 10
stop();
Symbol 161 MovieClip Frame 1
stop();
Symbol 165 Button
on (release) { if (_parent.gamePlay) { _parent.gamePause(1); gotoAndStop (2); } }
Symbol 169 Button
on (release) { if (_parent.gamePlay) { _parent.gamePause(0); gotoAndStop (1); } }
Symbol 170 MovieClip Frame 1
stop();
Symbol 177 MovieClip Frame 1
stop();
Symbol 178 MovieClip Frame 1
stop();
Symbol 178 MovieClip Frame 5
_parent.gotoAndStop(9);
Symbol 178 MovieClip Frame 13
stop(); _parent._visible = 0;
Symbol 186 MovieClip Frame 1
stop();
Symbol 193 MovieClip Frame 1
stop();
Symbol 193 MovieClip Frame 7
_parent.reflashItemMc();
Symbol 193 MovieClip Frame 21
_parent.waitTimeMc.waitTimeCheck(5, 1);
Symbol 195 Button
on (release) { getURL ("http://www.gameangel.com"); }
Symbol 209 Button
on (release) { _parent.nextLevel(); }
Symbol 213 Button
on (release) { _parent.nextLevel(); }
Symbol 214 MovieClip Frame 1
stop();
Symbol 227 MovieClip Frame 1
stop();
Symbol 227 MovieClip Frame 33
stop(); this.missionViewCHK();
Symbol 234 Button
on (release) { _parent.gotoAndStop(1); }
Symbol 236 Button
on (release) { _parent.RESTART(); }
Symbol 237 MovieClip Frame 1
stop();

Library Items

Symbol 1 Sound [end]
Symbol 2 Sound [bonus]
Symbol 3 Sound [start]
Symbol 4 Sound [bgsnd]
Symbol 5 Sound [timeLimit]
Symbol 6 Sound [bad]
Symbol 7 Sound [good]
Symbol 8 Sound [click]
Symbol 9 Sound [mission]Used by:227
Symbol 10 GraphicUsed by:Timeline
Symbol 11 GraphicUsed by:Timeline
Symbol 12 GraphicUsed by:Timeline
Symbol 13 GraphicUsed by:14 209 213
Symbol 14 MovieClipUses:13Used by:Timeline
Symbol 15 GraphicUsed by:Timeline
Symbol 16 FontUsed by:17 18 19 20 21 22 23 24 25
Symbol 17 TextUses:16Used by:Timeline
Symbol 18 TextUses:16Used by:Timeline
Symbol 19 TextUses:16Used by:Timeline
Symbol 20 TextUses:16Used by:Timeline
Symbol 21 TextUses:16Used by:Timeline
Symbol 22 TextUses:16Used by:Timeline
Symbol 23 TextUses:16Used by:Timeline
Symbol 24 TextUses:16Used by:Timeline
Symbol 25 TextUses:16Used by:Timeline
Symbol 26 GraphicUsed by:Timeline
Symbol 27 GraphicUsed by:30
Symbol 28 GraphicUsed by:30
Symbol 29 GraphicUsed by:30
Symbol 30 ButtonUses:27 28 29Used by:Timeline
Symbol 31 GraphicUsed by:37
Symbol 32 GraphicUsed by:37
Symbol 33 GraphicUsed by:37
Symbol 34 GraphicUsed by:35
Symbol 35 ButtonUses:34Used by:37
Symbol 36 GraphicUsed by:37
Symbol 37 ButtonUses:31 32 33 35 36Used by:Timeline
Symbol 38 GraphicUsed by:39
Symbol 39 ButtonUses:38Used by:Timeline
Symbol 40 FontUsed by:41
Symbol 41 EditableTextUses:40Used by:44
Symbol 42 SoundUsed by:44
Symbol 43 SoundUsed by:44
Symbol 44 MovieClipUses:41 42 43Used by:Timeline
Symbol 45 GraphicUsed by:Timeline
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:53
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:53
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:53
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:47 49 51 52Used by:Timeline
Symbol 54 GraphicUsed by:Timeline
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:Timeline
Symbol 57 GraphicUsed by:64
Symbol 58 GraphicUsed by:64
Symbol 59 GraphicUsed by:64
Symbol 60 GraphicUsed by:64
Symbol 61 GraphicUsed by:64
Symbol 62 GraphicUsed by:64
Symbol 63 GraphicUsed by:64
Symbol 64 ButtonUses:57 58 59 60 61 62 63Used by:65
Symbol 65 ButtonUses:64Used by:Timeline
Symbol 66 GraphicUsed by:Timeline
Symbol 67 GraphicUsed by:84
Symbol 68 GraphicUsed by:84
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:71
Symbol 71 MovieClipUses:70Used by:84 145 183
Symbol 72 BitmapUsed by:73
Symbol 73 GraphicUses:72Used by:74
Symbol 74 MovieClipUses:73Used by:84 146 184
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:77
Symbol 77 MovieClipUses:76Used by:84 135 179
Symbol 78 GraphicUsed by:84
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:79Used by:84 176
Symbol 81 GraphicUsed by:84
Symbol 82 GraphicUsed by:83 178
Symbol 83 MovieClipUses:82Used by:84
Symbol 84 MovieClipUses:67 68 71 74 77 78 80 81 83Used by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 FontUsed by:87 89 91
Symbol 87 TextUses:86Used by:Timeline
Symbol 88 GraphicUsed by:Timeline
Symbol 89 TextUses:86Used by:Timeline
Symbol 90 GraphicUsed by:Timeline
Symbol 91 TextUses:86Used by:Timeline
Symbol 92 GraphicUsed by:Timeline
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:95
Symbol 95 MovieClipUses:94Used by:136 180  Timeline
Symbol 96 GraphicUsed by:Timeline
Symbol 97 GraphicUsed by:Timeline
Symbol 98 GraphicUsed by:99
Symbol 99 ButtonUses:98Used by:Timeline
Symbol 100 BitmapUsed by:101
Symbol 101 GraphicUses:100Used by:Timeline
Symbol 102 GraphicUsed by:Timeline
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:Timeline
Symbol 105 GraphicUsed by:Timeline
Symbol 106 GraphicUsed by:111
Symbol 107 GraphicUsed by:108 109
Symbol 108 MovieClipUses:107Used by:109
Symbol 109 MovieClipUses:107 108Used by:111
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:106 109 110Used by:Timeline
Symbol 112 GraphicUsed by:Timeline
Symbol 113 GraphicUsed by:Timeline
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:Timeline
Symbol 116 BitmapUsed by:117
Symbol 117 GraphicUses:116Used by:Timeline
Symbol 118 GraphicUsed by:128
Symbol 119 GraphicUsed by:128
Symbol 120 GraphicUsed by:128
Symbol 121 GraphicUsed by:128
Symbol 122 GraphicUsed by:128
Symbol 123 GraphicUsed by:128
Symbol 124 GraphicUsed by:128
Symbol 125 GraphicUsed by:128
Symbol 126 GraphicUsed by:128
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:118 119 120 121 122 123 124 125 126 127Used by:129  Timeline
Symbol 129 MovieClipUses:128Used by:237  Timeline
Symbol 130 GraphicUsed by:Timeline
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:133
Symbol 133 MovieClipUses:132Used by:134 172
Symbol 134 MovieClipUses:133Used by:151 227
Symbol 135 MovieClipUses:77Used by:151 227
Symbol 136 MovieClipUses:95Used by:151 227
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:139
Symbol 139 MovieClipUses:138Used by:140 181
Symbol 140 MovieClipUses:139Used by:151 227
Symbol 141 BitmapUsed by:142
Symbol 142 GraphicUses:141Used by:143
Symbol 143 MovieClipUses:142Used by:144 182
Symbol 144 MovieClipUses:143Used by:151 227
Symbol 145 MovieClipUses:71Used by:151 227
Symbol 146 MovieClipUses:74Used by:151
Symbol 147 BitmapUsed by:148
Symbol 148 GraphicUses:147Used by:149
Symbol 149 MovieClipUses:148Used by:150 185
Symbol 150 MovieClipUses:149Used by:151 227
Symbol 151 MovieClipUses:134 135 136 140 144 145 146 150Used by:227  Timeline
Symbol 152 GraphicUsed by:Timeline
Symbol 153 FontUsed by:154
Symbol 154 TextUses:153Used by:Timeline
Symbol 155 GraphicUsed by:Timeline
Symbol 156 FontUsed by:157 159 163 167 205 206 208
Symbol 157 TextUses:156Used by:161
Symbol 158 GraphicUsed by:161
Symbol 159 TextUses:156Used by:161
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClipUses:157 158 159 160Used by:Timeline
Symbol 162 GraphicUsed by:170
Symbol 163 TextUses:156Used by:170
Symbol 164 GraphicUsed by:165
Symbol 165 ButtonUses:164Used by:170
Symbol 166 GraphicUsed by:170
Symbol 167 TextUses:156Used by:170
Symbol 168 GraphicUsed by:169
Symbol 169 ButtonUses:168Used by:170
Symbol 170 MovieClipUses:162 163 165 166 167 169Used by:Timeline
Symbol 171 GraphicUsed by:Timeline
Symbol 172 MovieClipUses:133Used by:186
Symbol 173 GraphicUsed by:177
Symbol 174 BitmapUsed by:175
Symbol 175 GraphicUses:174Used by:176
Symbol 176 MovieClipUses:175 80Used by:177
Symbol 177 MovieClipUses:173 176Used by:186
Symbol 178 MovieClipUses:82Used by:186
Symbol 179 MovieClipUses:77Used by:186
Symbol 180 MovieClipUses:95Used by:186
Symbol 181 MovieClipUses:139Used by:186
Symbol 182 MovieClipUses:143Used by:186
Symbol 183 MovieClipUses:71Used by:186
Symbol 184 MovieClipUses:74Used by:186
Symbol 185 MovieClipUses:149Used by:186
Symbol 186 MovieClipUses:172 177 178 179 180 181 182 183 184 185Used by:187
Symbol 187 MovieClipUses:186Used by:Timeline
Symbol 188 GraphicUsed by:193
Symbol 189 GraphicUsed by:193 202
Symbol 190 GraphicUsed by:193 202
Symbol 191 GraphicUsed by:193 202
Symbol 192 GraphicUsed by:193
Symbol 193 MovieClipUses:188 189 190 191 192Used by:Timeline
Symbol 194 GraphicUsed by:195
Symbol 195 ButtonUses:194Used by:Timeline
Symbol 196 GraphicUsed by:199
Symbol 197 GraphicUsed by:199 227
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:196 197 198Used by:200
Symbol 200 MovieClipUses:199Used by:202
Symbol 201 GraphicUsed by:202
Symbol 202 MovieClipUses:189 190 191 200 201Used by:Timeline
Symbol 203 GraphicUsed by:209
Symbol 204 GraphicUsed by:209
Symbol 205 TextUses:156Used by:209 213
Symbol 206 TextUses:156Used by:209 213
Symbol 207 GraphicUsed by:209
Symbol 208 TextUses:156Used by:209 213
Symbol 209 ButtonUses:203 13 204 205 206 207 208Used by:214
Symbol 210 GraphicUsed by:213
Symbol 211 GraphicUsed by:213
Symbol 212 GraphicUsed by:213
Symbol 213 ButtonUses:210 13 211 205 206 212 208Used by:214
Symbol 214 MovieClipUses:209 213Used by:Timeline
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:215Used by:Timeline
Symbol 217 GraphicUsed by:220
Symbol 218 GraphicUsed by:220
Symbol 219 GraphicUsed by:220
Symbol 220 MovieClipUses:217 218 219Used by:227
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:221Used by:227
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:223Used by:227
Symbol 225 GraphicUsed by:227
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:197 220 222 224 225 226 150 134 135 136 140 144 145 151 9Used by:Timeline
Symbol 228 GraphicUsed by:237
Symbol 229 FontUsed by:230
Symbol 230 EditableTextUses:229Used by:237
Symbol 231 GraphicUsed by:234 236
Symbol 232 GraphicUsed by:234
Symbol 233 GraphicUsed by:234 236
Symbol 234 ButtonUses:231 232 233Used by:237
Symbol 235 GraphicUsed by:236
Symbol 236 ButtonUses:231 235 233Used by:237
Symbol 237 MovieClipUses:228 129 230 234 236Used by:Timeline

Instance Names

"clearS"Frame 1Symbol 44 MovieClip
"gageMc"Frame 3Symbol 111 MovieClip
"scoreTMC"Frame 3Symbol 129 MovieClip
"levelTxt0Mc"Frame 3Symbol 128 MovieClip
"levelTxt1Mc"Frame 3Symbol 128 MovieClip
"targetScoreTMC"Frame 3Symbol 129 MovieClip
"missionMc01"Frame 3Symbol 151 MovieClip
"itemGroup"Frame 3Symbol 187 MovieClip
"itemGroup"Frame 3Symbol 187 MovieClip
"reflashMc"Frame 3Symbol 193 MovieClip
"pauseMc"Frame 3Symbol 202 MovieClip
"successBoard"Frame 3Symbol 214 MovieClip
"endMc"Frame 3Symbol 216 MovieClip
"missionMc02"Frame 3Symbol 227 MovieClip
"gameOverBoard"Frame 3Symbol 237 MovieClip
"barMc"Symbol 111 MovieClip Frame 1Symbol 109 MovieClip
"mc0"Symbol 129 MovieClip Frame 1Symbol 128 MovieClip
"mc1"Symbol 129 MovieClip Frame 1Symbol 128 MovieClip
"mc2"Symbol 129 MovieClip Frame 1Symbol 128 MovieClip
"mc3"Symbol 129 MovieClip Frame 1Symbol 128 MovieClip
"mc4"Symbol 129 MovieClip Frame 1Symbol 128 MovieClip
"mc"Symbol 186 MovieClip Frame 1Symbol 172 MovieClip
"bg_mc"Symbol 186 MovieClip Frame 1Symbol 177 MovieClip
"lightMc"Symbol 186 MovieClip Frame 1Symbol 178 MovieClip
"mc"Symbol 186 MovieClip Frame 2Symbol 179 MovieClip
"mc"Symbol 186 MovieClip Frame 3Symbol 180 MovieClip
"mc"Symbol 186 MovieClip Frame 4Symbol 181 MovieClip
"mc"Symbol 186 MovieClip Frame 5Symbol 182 MovieClip
"mc"Symbol 186 MovieClip Frame 6Symbol 183 MovieClip
"mc"Symbol 186 MovieClip Frame 7Symbol 184 MovieClip
"mc"Symbol 186 MovieClip Frame 8Symbol 185 MovieClip
"itemMc"Symbol 187 MovieClip Frame 1Symbol 186 MovieClip
"mc"Symbol 227 MovieClip Frame 32Symbol 151 MovieClip
"scoreTMC"Symbol 237 MovieClip Frame 1Symbol 129 MovieClip
"rankTMC"Symbol 237 MovieClip Frame 1Symbol 129 MovieClip
"idTxt"Symbol 237 MovieClip Frame 1Symbol 230 EditableText

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "end"
ExportAssets (56)Timeline Frame 1Symbol 2 as "bonus"
ExportAssets (56)Timeline Frame 1Symbol 3 as "start"
ExportAssets (56)Timeline Frame 1Symbol 4 as "bgsnd"
ExportAssets (56)Timeline Frame 1Symbol 5 as "timeLimit"
ExportAssets (56)Timeline Frame 1Symbol 6 as "bad"
ExportAssets (56)Timeline Frame 1Symbol 7 as "good"
ExportAssets (56)Timeline Frame 1Symbol 8 as "click"
ExportAssets (56)Timeline Frame 1Symbol 9 as "mission"




http://swfchan.com/26/125328/info.shtml
Created: 28/2 -2019 07:46:29 Last modified: 28/2 -2019 07:46:29 Server time: 06/05 -2024 18:53:41