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

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

Sushi Restaurant.swf

This is the info page for
Flash #24470

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


Text
0

PLAY

HELP

ver.1.0a

2. 콤보(연달아 터지는 경우)를 하시면 회오리 속으로 말려들
어오는 볼들을 뒤로 당길 수 있습니다.

1. 초밥을 쏘아서 같은 종류의 초밥이 3개 이상 모이면
터집니다. (초밥 하나당 2점)

3.검은 고양이에 맞으면 같은 종류의 초밥이 모두 터집니다.
(볼 하나당 1점)

5. 볼이 회오리 안쪽에 닿으면 게임오버입니다.

- 1콤보시 초밥 하나당 4점,
- 2콤보시 초밥 하나당 9점,
- 3콤보시 초밥 하나당 16점,
- 4콤보시 초밥 하나당 25점의 순서로 증가합니다.

0

ScrewBall AS

# 효과음 (idname) #
title - 게임 시작시, GameOver
shoot - 중앙에서 볼이 날라갈때
explore - 같은색 볼이 사라질때
combo - 콤보로 볼이 이동할때
bomb - 번개로 사라질때

PAUSE

ActionScript [AS1/AS2]

Frame 1
stop();
Frame 3
function scoreSendDB(game_id, user_id, game_score, game_time) { trace("DB\uC5F0\uACB0"); var sendVars = new LoadVars(); var recVars = new LoadVars(); var rankurl = "http://www.gameangel.com/System/gameangel/game_rank.proc.php"; sendVars.uid = game_id; sendVars.mid = user_id; sendVars.pt = game_score; sendVars.rt = game_time; sendVars.ot1 = _root.ot1; sendVars.ot2 = _root.ot2; sendVars.ot3 = _root.ot3; sendVars.ot4 = _root.ot4; sendVars.ot5 = _root.ot5; var i = 1; while (i < 6) { if (((eval ("ot" + i) == null) || (eval ("ot" + i) == undefined)) || (eval ("ot" + i) == "")) { sendVars["ot" + i] = ""; } else { sendVars["ot" + i] = _root["ot" + i]; } i++; } sendVars.sendAndLoad(rankurl, recVars, "POST"); recVars.onLoad = function (success) { _root.AS.gameRankView(recVars.nick, recVars.rank); trace(recVars.nick + recVars.rank); }; } trace(this); this.stop();
Instance of Symbol 157 MovieClip in Frame 3
//component parameters onClipEvent (construct) { gameVolume = 100; centerX = 191; centerY = 191; radius = 180; ballRadius = 30; ballName = "ball"; centerName = "centerMC"; nextName = "nextMC"; boxName = "scorebox"; scoreName = "scoreMC"; gameoverName = "gameover"; gameoverRank = "gameRank"; }
Symbol 16 Button
on (release) { _root.AS.GameStart(); }
Symbol 18 Button
on (release) { stopAllSounds(); _root.gotoAndStop("INTRO", 1); }
Symbol 19 MovieClip [gameRank] Frame 1
stop();
Symbol 28 MovieClip [ball2] Frame 1
this.stop();
Symbol 61 MovieClip [ball] Frame 1
this.stop();
Symbol 63 MovieClip [scorebox] Frame 1
this.speed = 3; this.onEnterFrame = function () { this._y = this._y - this.speed; if (this.speed >= 1) { this.speed = this.speed * 0.9; } else { this.removeMovieClip(); } }; this.stop();
Symbol 65 MovieClip Frame 22
stop();
Symbol 66 MovieClip [gameover] Frame 15
this.stop();
Symbol 84 Button
on (release) { _root.gotoAndStop("Game", 1); }
Symbol 89 Button
on (release) { _root.gotoAndStop("p"); }
Symbol 90 MovieClip Frame 1
stop();
Symbol 97 Button
on (release) { getURL ("http://www.gameangel.com", "_blank"); }
Symbol 105 Button
on (release) { getURL ("http://www.gameangel.com", "_blank"); }
Symbol 141 Button
on (release) { _parent.AS.soundOnOff(); }
Symbol 144 MovieClip Frame 1
this.stop();
Symbol 144 MovieClip Frame 6
this.stop();
Symbol 148 Button
on (release) { _parent.AS.pauseOnOff(); }
Symbol 151 MovieClip Frame 1
this.stop();
Symbol 151 MovieClip Frame 6
this.stop();
Symbol 157 MovieClip Frame 1
function BallXY(MC) { d = this.radius - ((MC.r / 360) * 50); var _local3 = (MC.r * Math.PI) / 180; MC._x = (d * Math.cos(_local3)) + this.centerX; MC._y = (d * Math.sin(_local3)) + this.centerY; if (MC.r > this.maxRotation) { MC.removeMovieClip(); } } function distanceMC(MC1, MC2) { if ((MC1 != undefined) && (MC2 != undefined)) { var _local2 = MC1._x - MC2._x; var _local1 = MC1._y - MC2._y; return(Math.sqrt((_local2 * _local2) + (_local1 * _local1))); } return(1000); } function rotationMC(MC) { var _local3 = MC._x - centerX; var _local2 = MC._y - centerY; var _local1 = (Math.atan2(_local2, _local3) * 180) / Math.PI; if (_local1 < 0) { return(360 + _local1); } return(_local1); } function rotationXY(x1, y1, x2, y2) { var _local3 = x1 - x2; var _local2 = y1 - y2; var _local1 = (Math.atan2(_local2, _local3) * 180) / Math.PI; if (_local1 < 0) { return(360 + _local1); } return(_local1); } function MouseLine() { var _local3 = this.rotationXY(_parent._xmouse, _parent._ymouse, this.lineMC._x, this.lineMC._y); this.lineMC._rotation = _local3; if (_local3 < 0) { _local3 = _local3 + 360; } this.lineMC.BOX._x = (this.radius - ((_local3 / 360) * 50)) + (this.ballRadius / 2); } function unSet() { this.gameplay = false; if (_parent.GAMEOVER != undefined) { _parent.GAMEOVER.removeMovieClip(); } var _local3 = this.prevMC; while (true) { if (_local3.prevMC == undefined) { _local3.removeMovieClip(); break; } _local3 = _local3.prevMC; _local3.nextMC.removeMovieClip(); } this.prevMC = undefined; this.centerMC.removeMovieClip(); this.centerTmp.removeMovieClip(); this.screwTmp.removeMovieClip(); this.centerMC = undefined; this.centerTmp = undefined; this.screwTmp = undefined; stopAllSounds(); } function GameStart() { this.Setup(); } function Setup() { this.unSet(); var _local3 = 0; var _local2 = 0; while (_local2 < 20000) { d = this.radius - ((_local3 / 360) * this.maxDistance); _local3 = _local3 + ((Math.atan2(1, d) * 180) / Math.PI); var _local4 = (_local3 * Math.PI) / 180; var _local6 = Math.round(((d * Math.cos(_local4)) + this.centerX) * 10) / 10; var _local5 = Math.round(((d * Math.sin(_local4)) + this.centerY) * 10) / 10; this.circleXY[_local2] = [_local6, _local5]; if (_local3 > this.maxRotation) { break; } _local2++; } this.centerTmp = this.gameMC.attachMovie(this.ballName, "centerTmp", this.Depths); this.centerTmp._x = this.gameMC[this.centerName]._x; this.centerTmp._y = this.gameMC[this.centerName]._y; this.centerTmp.gotoAndStop(this.AddBallFrame()); this.screwTmp = this.gameMC.attachMovie(this.ballName, "screwTmp", this.Depths + 1); this.screwTmp._x = this.gameMC[this.nextName]._x; this.screwTmp._y = this.gameMC[this.nextName]._y; this.screwTmp.gotoAndStop(this.AddBallFrame()); this.lineMC._x = this.centerX; this.lineMC._y = this.centerY; this.lineMC.swapDepths((this.Depths + this.Bmax) + 2); this.slotMC.tx = this.slotMC._x; this.slotMC.ty = this.slotMC._y; this.slotMC.swapDepths((this.Depths + this.Bmax) + 3); this.gameMC.HELP.swapDepths((this.Depths + this.Bmax) + 4); this.gameMC.PAUSE.swapDepths((this.Depths + this.Bmax) + 5); this.shoot = false; this.shootMove = 0; this.Bnum = 1; this.comboNum = 0; this.maxCombo = 0; this.TotalScore = 0; this.CountBall = 0; this.displayScore(); this.gameplay = true; this.soundPlay("title", 1); this.startMC.gotoAndStop("OFF"); this.startTime = getTimer(); if (this._visible == true) { this._visible = false; } } function GameOver() { this.gameplay = false; var _local3 = Math.floor((getTimer() - this.startTime) / 1000); trace("play_time - " + _local3); if ((((((_root.uid == undefined) || (_root.ot1 == undefined)) || (this.TotalScore <= 0)) || (this.TotalScore == undefined)) || (_local3 <= 0)) || (_local3 == undefined)) { trace((((("\uC798\uBABB\uB41C \uAC12\uC774 \uB4E4\uC5B4\uC634 this.TotalScore : " + this.TotalScore) + "play_time:") + _local3) + " this.startTime") + this.startTime); gameRankView(); } else { trace("\uB7AD\uD0B9\uC5F0\uACB0"); this._parent.scoreSendDB(_root.ot1, _root.uid, this.TotalScore, _local3); } } function gameRankView(nickName, rankNum) { if (!nickName) { var _local3 = _parent.attachMovie(this.gameoverName, "GAMEOVER", this.Depths + 20001); _local3._x = this.centerX; _local3._y = this.centerY; _local3._visible = true; this.startMC._y = _local3._y + 100; this.startMC.gotoAndStop("ON"); } else { var _local3 = _parent.attachMovie(this.gameoverRank, "GAMEOVER", this.Depths + 20001); _local3._x = this.centerX - 100; _local3._y = this.centerY; _local3._visible = true; _local3.my_nickName = nickName; _local3.my_score = this.TotalScore; _local3.my_gameRank = rankNum; } this.soundPlay("title", 1); } function AddBallFrame() { var _local4 = 0; if (random(lightningRand) == 0) { _local4 = lightningFrame; } else { var _local3 = this.ballMaxCount; var _local2 = 0; while (_local2 < this.ballMaxArr.length) { if (this.ballMaxArr[_local2] > this.CountBall) { _local3 = _local2 + this.ballMaxMin; break; } _local2++; } if (_local3 > this.ballMaxCount) { _local3 = this.ballMaxCount; } _local4 = random(_local3) + 1; this.ballMaxNum = _local3; } return(_local4); } function AddBall(mv) { var _local3 = this.gameMC.attachMovie(this.ballName, "B" + this.Bnum, (this.Bnum + this.Depths) + 2); _local3.Bnum = this.Bnum; this.Bnum++; if (this.Bnum >= this.Bmax) { this.Bnum = 1; } _local3.num = -10; _local3.mv = mv; _local3.prevMC = undefined; _local3.nextMC = undefined; if (mv == 0) { _local3._x = this.centerX; _local3._y = this.centerY; } else { _local3._x = _parent.AS.circleXY[_local3.num][0]; _local3._y = _parent.AS.circleXY[_local3.num][1]; } _local3.gotoAndStop(this.AddBallFrame()); return(_local3); } function AddCenterBall() { var _local2 = this.AddBall(0); _local2.swapDepths((this.Depths + this.Bmax) + 1); this.centerMC = _local2; this.shoot = false; _local2.gotoAndStop(this.centerTmp._currentframe); this.centerTmp.gotoAndStop(this.AddBallFrame()); } function AddScrewBall() { var _local2 = this.AddBall(1); if (this.prevMC != undefined) { _local2.prevMC = this.prevMC; this.prevMC.nextMC = _local2; } this.prevMC = _local2; _local2.gotoAndStop(this.screwTmp._currentframe); this.screwTmp.gotoAndStop(this.AddBallFrame()); } function displayScore() { _parent.scoreMC.TXT = this.TotalScore; } function deleteBall(tMC, score) { if (tMC != undefined) { if (tMC.prevMC != undefined) { tMC.prevMC.nextMC = tMC.nextMC; } if (tMC.nextMC != undefined) { tMC.nextMC.prevMC = tMC.prevMC; } else { this.prevMC = tMC.prevMC; tMC.prevMC.nextMC = undefined; } if (score > 0) { this.CountBall++; var _local3 = this.gameMC.attachMovie(this.boxName, "box" + tMC.Bnum, (this.Depths + tMC.Bnum) + 5000); _local3._x = tMC._x; _local3._y = tMC._y; _local3.TXT = score; this.TotalScore = this.TotalScore + score; this.displayScore(); } tMC.removeMovieClip(); } } function insertBall(tMC) { if (tMC != undefined) { var _local3 = this.rotationMC(tMC); if (_local3 < this.shootRotation) { this.centerMC.num = tMC.num + this.ballRadius; this.centerMC.prevMC = tMC.prevMC; this.centerMC.nextMC = tMC; if (tMC.prevMC != undefined) { tMC.prevMC.nextMC = this.centerMC; } tMC.prevMC = this.centerMC; } else { this.centerMC.num = tMC.num - this.ballRadius; this.centerMC.prevMC = tMC; this.centerMC.nextMC = tMC.nextMC; if (tMC.nextMC != undefined) { tMC.nextMC.prevMC = this.centerMC; } else { this.prevMC = this.centerMC; } tMC.nextMC = this.centerMC; } this.centerMC.swapDepths(this.centerMC.Bnum + this.Depths); } } function getSameBall(cMC, ops) { var _local4 = 1; var _local5 = cMC._currentframe; var _local2 = cMC; while (_local2.prevMC != undefined) { if (_local2.prevMC._currentframe == _local5) { if ((ops == 1) || ((_local2.prevMC.num - _local2.num) <= this.ballRadius)) { _local2 = _local2.prevMC; _local4++; } else { break; } } else { break; } } var _local3 = cMC.nextMC; while (_local3 != undefined) { if (_local3._currentframe == _local5) { if ((ops == 1) || ((_local3.prevMC.num - _local3.num) <= this.ballRadius)) { _local3 = _local3.nextMC; _local4++; } else { break; } } else { break; } } if (_local4 >= 3) { return(_local2); } return(undefined); } function sameDeleteBall(tMC) { if (tMC.prevMC != undefined) { tMC.prevMC.mv = 0; } if (this.comboMC == undefined) { this.comboNum = 1; } else { this.comboNum++; if (this.comboNum > this.maxCombo) { this.maxCombo = this.comboNum; } } var _local4 = this.comboNum * this.comboNum; if (_local4 < 2) { _local4 = 2; } var _local5 = tMC._currentframe; while (tMC != undefined) { if (tMC._currentframe == _local5) { var _local2 = tMC; tMC = tMC.nextMC; if ((_local2.num - _local2.nextMC.num) <= this.ballRadius) { this.deleteBall(_local2, _local4); } else { this.deleteBall(_local2, _local4); break; } } else { break; } } this.soundPlay("explore", 1); } function colorDeleteBall(Fnum) { var _local3 = this.prevMC; while (true) { if (_local3 == undefined) { break; } var _local2 = _local3; _local3 = _local3.prevMC; if (_local2._currentframe == Fnum) { this.deleteBall(_local2, 1); _local2.mv = 0; } } } function moveHitBall() { if (this.prevMC != undefined) { var _local3; var _local2 = this.prevMC; while (true) { var _local4 = this.distanceMC(this.centerMC, _local2); if (_local4 <= this.ballRadius) { if ((_local3 != undefined) && (_local4 < this.distanceMC(this.centerMC, _local3))) { _local3 = _local2; } else { _local3 = _local2; } } if (_local2.prevMC == undefined) { break; } _local2 = _local2.prevMC; } if (_local3 != undefined) { this.insertBall(_local3); if ((this.centerMC._currentframe == this.lightningFrame) && (_local3._currentframe == this.lightningFrame)) { this.deleteBall(this.centerMC, 0); this.deleteBall(_local3, 0); this.soundPlay("bomb", 1); } else if (this.centerMC._currentframe == this.lightningFrame) { this.deleteBall(this.centerMC, 0); this.colorDeleteBall(_local3._currentframe); this.soundPlay("bomb", 1); } else if (_local3._currentframe == this.lightningFrame) { this.deleteBall(_local3, 0); this.colorDeleteBall(this.centerMC._currentframe); this.soundPlay("bomb", 1); } else { this.comboNum = 1; var _local5 = this.getSameBall(this.centerMC, 0); if (_local5 != undefined) { var _local6 = _local5.prevMC; this.sameDeleteBall(_local5); if (_local6 != undefined) { this.getComboBall(_local6); } } } this.centerMC = undefined; _local3 = undefined; } } } function moveCenterBall() { this.shootMove = this.shootMove + this.shootSpeed; var _local2 = (this.shootRotation * Math.PI) / 180; this.centerMC._x = (this.shootMove * Math.cos(_local2)) + this.centerX; this.centerMC._y = (this.shootMove * Math.sin(_local2)) + this.centerY; var _local3 = this.radius - ((this.shootRotation / 360) * 50); if (this.shootMove > _local3) { this.centerMC.removeMovieClip(); this.centerMC = undefined; } else { this.moveHitBall(); } } function moveScrewBall() { var _local2 = this.prevMC; if (_local2.num < this.ballRadius) { _local2.num++; } while (true) { if (_local2.prevMC != undefined) { if ((_local2.prevMC.num - _local2.num) <= this.ballRadius) { _local2.prevMC.num = _local2.num + this.ballRadius; } } if (_local2.num >= this.circleXY.length) { this.GameOver(); break; } if (_local2.num < 0) { _local2._x = this.circleXY[0][0]; _local2._y = this.circleXY[0][1] + (_local2.num * 7); this.slotMC._y = this.slotMC.ty + _local2.num; } else { _local2._x = this.circleXY[_local2.num][0]; _local2._y = this.circleXY[_local2.num][1]; } if (_local2.prevMC == undefined) { break; } _local2 = _local2.prevMC; } } function getComboBall(cMC) { if ((cMC != undefined) && (cMC.nextMC != undefined)) { if (cMC._currentframe == cMC.nextMC._currentframe) { if (this.getSameBall(cMC, 1) != undefined) { this.comboMC = cMC; this.soundPlay("combo", 1); } } } } function moveComboBall() { if ((this.comboMC != undefined) && (this.comboMC.nextMC != undefined)) { var _local3 = (this.comboMC.num - this.comboMC.nextMC.num) - this.ballRadius; if (_local3 > this.backSpeed) { _local3 = this.backSpeed; } var _local2 = this.comboMC; while (true) { _local2.num = _local2.num - _local3; _local2._x = this.circleXY[_local2.num][0]; _local2._y = this.circleXY[_local2.num][1]; if (_local2.prevMC == undefined) { break; } _local2 = _local2.prevMC; } if (_local3 <= 0) { var _local4 = this.getSameBall(this.comboMC, 0); if (_local4 != undefined) { var _local5 = _local4.prevMC; this.sameDeleteBall(_local4); if (_local5 != undefined) { this.getComboBall(_local5); } } else { this.comboMC = undefined; } } } else { this.comboMC = undefined; } } function helpOnOff() { if (this.helpOn == true) { this.gameMC.HELP._visible = false; this.helpMC.gotoAndStop("OFF"); this.helpOn = false; } else { this.gameMC.HELP._visible = true; this.helpMC.gotoAndStop("ON"); this.helpOn = true; } } function soundOnOff() { if (this.soundOn == true) { this.soundMC.gotoAndStop("OFF"); this.soundOn = false; stopAllSounds(); } else { this.soundMC.gotoAndStop("ON"); this.soundOn = true; } } function pauseOnOff() { if (this.pauseOn == true) { this.gameMC.PAUSE._visible = false; this.pauseMC.gotoAndStop("OFF"); this.pauseOn = false; } else { this.gameMC.PAUSE._visible = true; this.pauseMC.gotoAndStop("ON"); this.pauseOn = true; } } function soundPlay(name, loop) { if ((this.soundOn == true) && (this.gameVolume > 0)) { this.soundObj[name].start(0, loop); this.soundObj[name].setVolume(this.gameVolume); } } function sendRankScore(score, score_play) { if (_root.dbconnect == "yes") { sendObj = new LoadVars(); loadObj = new LoadVars(); sendObj.gametype = _root.gametype; sendObj.userid = _root.userid; sendObj.score = int(score) + 969696; sendObj.score_play = score_play; sendObj.sendAndLoad((_root.dir + "game_record.") + _root.scripttype, loadObj, "POST"); loadObj.onLoad = function () { }; } } System.useCodepage = true; this._name = "AS"; var gameMC = _parent.GAME; var startMC = _parent.STARTBUTTON; this.startMC.swapDepths(20001); var f = 0; var Bnum = 1; var Bmax = 10000; var Depths = 100; var circleXY = []; var centerTmp = undefined; var screwTmp = undefined; var centerMC = undefined; var shoot = false; var shootRotation = 0; var shootMove = 0; var shootSpeed = 15; var backSpeed = 8; var lineMC = this.gameMC.LINEMC; var slotMC = this.gameMC.SLOTMC; var prevMC = undefined; var comboMC = undefined; var comboNum = 0; var maxCombo = 0; var gameplay = false; var TotalScore = 0; var ballMaxNum = ((ballMaxMin = 4)); var ballMaxCount = 9; var ballMaxArr = [30, 500, 1000, 2000, 3000, 5000, 10000, 30000, 50000]; var lightningFrame = 10; var lightningRand = 180; var CountBall = 0; var maxRotation = 920; var maxDistance = 45; var HitAreaX1 = 10; var HitAreaY1 = 10; var HitAreaX2 = 410; var HitAreaX2 = 410; var startTime = 0; var test = false; this.onEnterFrame = function () { var _local5 = false; if ((this.pauseOn == false) && (this.gameplay == true)) { if (this.comboMC == undefined) { this.f = this.f + 1; if (this.f >= this.ballRadius) { this.f = 0; this.AddScrewBall(); } this.MouseLine(); if (this.prevMC != undefined) { this.moveScrewBall(); } if (this.shoot == true) { this.moveCenterBall(); } if (this.centerMC == undefined) { this.AddCenterBall(); } var _local4 = _parent._xmouse; var _local3 = _parent._ymouse; if ((((_local4 >= this.HitAreaX1) && (_local4 <= this.HitAreaX2)) && (_local3 >= this.HitAreaY1)) && (_local3 <= this.HitAreaX2)) { _local5 = true; } } else { this.moveComboBall(); } } if (_local5) { this.lineMC.gotoAndStop(2); } else { this.lineMC.gotoAndStop(1); } if (this.test) { _parent.TXT = (((("ball: " + this.CountBall) + ", combo: ") + this.maxCombo) + ", Kind: ") + this.ballMaxNum; } }; this.onMouseDown = function () { if (((((this.pauseOn == false) && (this.helpOn == false)) && (this.gameplay == true)) && (this.centerMC != undefined)) && (this.shoot == false)) { var _local4 = _parent._xmouse; var _local3 = _parent._ymouse; if ((((_local4 >= this.HitAreaX1) && (_local4 <= this.HitAreaX2)) && (_local3 >= this.HitAreaY1)) && (_local3 <= this.HitAreaX2)) { this.shootRotation = this.rotationXY(_local4, _local3, this.centerX, this.centerY); this.shoot = true; this.shootMove = 0; this.soundPlay("shoot", 1); } } }; this.onUnload = function () { this.unSet(); this.lineMC.removeMovieClip(); this.slotMC.removeMovieClip(); }; this.stop(); var helpOn = false; var helpMC = _parent.helpMC; this.helpMC.gotoAndStop("OFF"); this.gameMC.HELP._visible = false; var soundOn = true; var soundMC = _parent.soundMC; this.soundMC.gotoAndStop("ON"); var pauseOn = false; var pauseMC = _parent.pauseMC; this.pauseMC.gotoAndStop("OFF"); this.gameMC.PAUSE._visible = false; var soundName = ["title", "shoot", "explore", "combo", "bomb"]; var soundObj = Array(); if (this.gameVolume < 0) { this.gameVolume = 0; } if (this.gameVolume > 1000) { this.gameVolume = 1000; } var i = 0; while (i <= soundName.length) { soundObj[soundName[i]] = new Sound(); soundObj[soundName[i]].attachSound(soundName[i]); i++; }
Symbol 177 Button
on (release) { _parent.AS.GameStart(); }
Symbol 179 MovieClip Frame 8
stop();
Symbol 180 MovieClip Frame 1
this.stop();
Symbol 180 MovieClip Frame 6
this.stop();
Symbol 185 MovieClip Frame 1
this.stop();

Library Items

Symbol 1 Sound [title]
Symbol 2 Sound [shoot]
Symbol 3 Sound [explore]
Symbol 4 Sound [combo]
Symbol 5 Sound [bomb]
Symbol 6 Sound [so0]
Symbol 7 GraphicUsed by:19
Symbol 8 FontUsed by:9
Symbol 9 EditableTextUses:8Used by:19
Symbol 10 FontUsed by:11 12 31 62 131 134
Symbol 11 EditableTextUses:10Used by:19
Symbol 12 EditableTextUses:10Used by:19
Symbol 13 GraphicUsed by:16 18
Symbol 14 GraphicUsed by:16
Symbol 15 GraphicUsed by:16 18
Symbol 16 ButtonUses:13 14 15Used by:19
Symbol 17 GraphicUsed by:18
Symbol 18 ButtonUses:13 17 15Used by:19
Symbol 19 MovieClip [gameRank]Uses:7 9 11 12 16 18
Symbol 20 GraphicUsed by:28 61
Symbol 21 GraphicUsed by:28 61
Symbol 22 GraphicUsed by:28
Symbol 23 GraphicUsed by:28 61
Symbol 24 GraphicUsed by:28 61
Symbol 25 GraphicUsed by:28 61
Symbol 26 GraphicUsed by:28 61
Symbol 27 GraphicUsed by:28 61
Symbol 28 MovieClip [ball2]Uses:20 21 22 23 24 25 26 27
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:61 120
Symbol 31 EditableTextUses:10Used by:61 120
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:61 120
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:61 120
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClipUses:36Used by:61 120
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:61
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:61
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:61
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:61
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:61
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:61
Symbol 50 GraphicUsed by:55 56 57 58
Symbol 51 GraphicUsed by:55 56 57 58
Symbol 52 GraphicUsed by:55 56 57 58
Symbol 53 GraphicUsed by:55 56 57 58
Symbol 54 GraphicUsed by:55 56 57 58
Symbol 55 MovieClipUses:50 51 52 53 54Used by:59
Symbol 56 MovieClipUses:52 53 51 54 50Used by:59
Symbol 57 MovieClipUses:54 51 50 52 53Used by:59
Symbol 58 MovieClipUses:53 51 54 50 52Used by:59
Symbol 59 MovieClipUses:55 56 57 58Used by:61
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClip [ball]Uses:30 31 33 35 37 39 41 43 45 47 49 59 20 21 60 23 24 25 26 27
Symbol 62 EditableTextUses:10Used by:63
Symbol 63 MovieClip [scorebox]Uses:62
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:66
Symbol 66 MovieClip [gameover]Uses:65
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:Timeline
Symbol 69 GraphicUsed by:72
Symbol 70 GraphicUsed by:72
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:69 70 71Used by:Timeline
Symbol 73 GraphicUsed by:75
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:73 74Used by:Timeline
Symbol 76 BitmapUsed by:77
Symbol 77 GraphicUses:76Used by:Timeline
Symbol 78 GraphicUsed by:90
Symbol 79 GraphicUsed by:84
Symbol 80 GraphicUsed by:84
Symbol 81 FontUsed by:82 87 193
Symbol 82 TextUses:81Used by:84
Symbol 83 GraphicUsed by:84
Symbol 84 ButtonUses:79 80 82 83Used by:90  Timeline
Symbol 85 GraphicUsed by:89
Symbol 86 GraphicUsed by:89
Symbol 87 TextUses:81Used by:89
Symbol 88 GraphicUsed by:89
Symbol 89 ButtonUses:85 86 87 88Used by:90
Symbol 90 MovieClipUses:78 84 89Used by:Timeline
Symbol 91 GraphicUsed by:94
Symbol 92 GraphicUsed by:94
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:91 92 93Used by:95
Symbol 95 MovieClipUses:94Used by:Timeline
Symbol 96 GraphicUsed by:97
Symbol 97 ButtonUses:96Used by:Timeline
Symbol 98 GraphicUsed by:105
Symbol 99 GraphicUsed by:105
Symbol 100 GraphicUsed by:105
Symbol 101 GraphicUsed by:105
Symbol 102 GraphicUsed by:105
Symbol 103 GraphicUsed by:105
Symbol 104 GraphicUsed by:105
Symbol 105 ButtonUses:98 99 100 101 102 103 104Used by:Timeline
Symbol 106 FontUsed by:107
Symbol 107 EditableTextUses:106Used by:Timeline
Symbol 108 GraphicUsed by:Timeline
Symbol 109 GraphicUsed by:120 194
Symbol 110 GraphicUsed by:111
Symbol 111 ButtonUses:110Used by:120 194
Symbol 112 FontUsed by:113 114 115 116 118
Symbol 113 TextUses:112Used by:120
Symbol 114 TextUses:112Used by:120
Symbol 115 TextUses:112Used by:120
Symbol 116 TextUses:112Used by:120
Symbol 117 GraphicUsed by:120
Symbol 118 TextUses:112Used by:120
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:109 111 113 114 115 116 117 33 31 30 37 35 118 119Used by:Timeline
Symbol 121 GraphicUsed by:Timeline
Symbol 122 GraphicUsed by:Timeline
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:Timeline
Symbol 125 BitmapUsed by:126
Symbol 126 GraphicUses:125Used by:129
Symbol 127 BitmapUsed by:128
Symbol 128 GraphicUses:127Used by:129
Symbol 129 MovieClipUses:126 128Used by:Timeline
Symbol 130 GraphicUsed by:133
Symbol 131 EditableTextUses:10Used by:133
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:130 131 132Used by:Timeline
Symbol 134 EditableTextUses:10Used by:Timeline
Symbol 135 GraphicUsed by:141 148
Symbol 136 GraphicUsed by:141
Symbol 137 GraphicUsed by:141
Symbol 138 GraphicUsed by:139 141 148
Symbol 139 MovieClipUses:138Used by:141 148
Symbol 140 GraphicUsed by:141
Symbol 141 ButtonUses:135 136 137 139 140 138Used by:144
Symbol 142 GraphicUsed by:144
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:141 142 143Used by:Timeline
Symbol 145 GraphicUsed by:148
Symbol 146 GraphicUsed by:148
Symbol 147 GraphicUsed by:148
Symbol 148 ButtonUses:135 145 146 139 147 138Used by:151
Symbol 149 GraphicUsed by:151
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:148 149 150Used by:Timeline
Symbol 152 GraphicUsed by:157
Symbol 153 FontUsed by:154
Symbol 154 EditableTextUses:153Used by:157
Symbol 155 FontUsed by:156
Symbol 156 TextUses:155Used by:157
Symbol 157 MovieClipUses:152 154 156Used by:Timeline
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:168
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:168
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:168
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:168
Symbol 166 BitmapUsed by:167
Symbol 167 GraphicUses:166Used by:168
Symbol 168 MovieClipUses:159 161 163 165 167Used by:Timeline
Symbol 169 GraphicUsed by:Timeline
Symbol 170 GraphicUsed by:176 177
Symbol 171 GraphicUsed by:174 177
Symbol 172 GraphicUsed by:174 177
Symbol 173 GraphicUsed by:174 177
Symbol 174 MovieClipUses:171 172 173Used by:175 179
Symbol 175 MovieClipUses:174Used by:176
Symbol 176 MovieClipUses:170 175Used by:177
Symbol 177 ButtonUses:176 170 171 172 173Used by:180
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178 174Used by:180
Symbol 180 MovieClipUses:177 179Used by:Timeline
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:185
Symbol 183 GraphicUsed by:185
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:182 183 184Used by:195
Symbol 186 GraphicUsed by:195
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:187Used by:195
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClipUses:189Used by:195
Symbol 191 GraphicUsed by:195
Symbol 192 GraphicUsed by:194
Symbol 193 TextUses:81Used by:194
Symbol 194 MovieClipUses:109 111 192 193Used by:195
Symbol 195 MovieClipUses:185 186 188 190 191 194Used by:Timeline

Instance Names

"HELP"Frame 2Symbol 120 MovieClip
"scoreMC"Frame 3Symbol 133 MovieClip
"soundMC"Frame 3Symbol 144 MovieClip
"pauseMC"Frame 3Symbol 151 MovieClip
"STARTBUTTON"Frame 3Symbol 180 MovieClip
"GAME"Frame 3Symbol 195 MovieClip
"star"Symbol 61 MovieClip [ball] Frame 11Symbol 59 MovieClip
"BUTTON"Symbol 180 MovieClip Frame 1Symbol 177 Button
"BOX"Symbol 185 MovieClip Frame 1Symbol 182 MovieClip
"LINEMC"Symbol 195 MovieClip Frame 1Symbol 185 MovieClip
"SLOTMC"Symbol 195 MovieClip Frame 1Symbol 188 MovieClip
"nextMC"Symbol 195 MovieClip Frame 1Symbol 190 MovieClip
"centerMC"Symbol 195 MovieClip Frame 1Symbol 190 MovieClip
"PAUSE"Symbol 195 MovieClip Frame 1Symbol 194 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
Protect (24)Timeline Frame 131 bytes "..$1$cb$llKVD6Qvh0JjSowUl4C81.."
ExportAssets (56)Timeline Frame 1Symbol 1 as "title"
ExportAssets (56)Timeline Frame 1Symbol 2 as "shoot"
ExportAssets (56)Timeline Frame 1Symbol 3 as "explore"
ExportAssets (56)Timeline Frame 1Symbol 4 as "combo"
ExportAssets (56)Timeline Frame 1Symbol 5 as "bomb"
ExportAssets (56)Timeline Frame 1Symbol 6 as "so0"
ExportAssets (56)Timeline Frame 1Symbol 19 as "gameRank"
ExportAssets (56)Timeline Frame 1Symbol 28 as "ball2"
ExportAssets (56)Timeline Frame 1Symbol 61 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 63 as "scorebox"
ExportAssets (56)Timeline Frame 1Symbol 66 as "gameover"

Labels

"INTRO"Frame 1
"p"Frame 2
"GAME"Frame 3
"boom"Symbol 61 MovieClip [ball] Frame 11
"ON"Symbol 144 MovieClip Frame 1
"OFF"Symbol 144 MovieClip Frame 6
"ON"Symbol 151 MovieClip Frame 1
"OFF"Symbol 151 MovieClip Frame 6
"ON"Symbol 180 MovieClip Frame 1
"OFF"Symbol 180 MovieClip Frame 6

Dynamic Text Variables

my_nickNameSymbol 9 EditableText""
my_scoreSymbol 11 EditableText""
my_gameRankSymbol 12 EditableText""
TXTSymbol 31 EditableText""
TXTSymbol 62 EditableText"0"
TXTSymbol 131 EditableText"0"
TXTSymbol 134 EditableText""




http://swfchan.com/5/24470/info.shtml
Created: 24/5 -2019 23:47:06 Last modified: 24/5 -2019 23:47:06 Server time: 27/04 -2024 23:10:08