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

swfchan turned sixteen years old the day before yesterday! (5may2024)

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

Paper Venture - assist the main character by giving him footing.swf

This is the info page for
Flash #134487

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


ActionScript [AS1/AS2]
Combined Code
movieClip 2 { } movieClip 3 done { frame 21 { _root.nextFrame(); this.unloadMovie(); } } movieClip 10 dead { #initclip Object.registerClass('dead', dead); #endinitclip frame 10 { _root.gotoAndPlay('game_over'); } frame 11 { this.unloadMovie(); } } movieClip 12 coin { #initclip Object.registerClass('coin', coin); #endinitclip } movieClip 13 { } movieClip 14 boom { frame 8 { this.unloadMovie(); _root.score += 1; } } movieClip 16 door { #initclip Object.registerClass('door', door); #endinitclip } movieClip 21 { } movieClip 23 { } movieClip 25 { } movieClip 26 character { #initclip Object.registerClass('character', character); #endinitclip frame 1 { stop(); } frame 2 { stop(); } frame 3 { stop(); } } movieClip 28 plat2 { #initclip Object.registerClass('plat2', plat2); #endinitclip } movieClip 30 saw { #initclip Object.registerClass('saw', saw); #endinitclip } frame 1 { function itemHandler1(obj, item) { getURL('http://www.arcadearmory.com', ''); } function itemHandler2(obj, item) { getURL('http://www.arcadearmory.com', ''); } function itemHandler3(obj, item) { getURL('http://www.ajust.newgrounds.com', ''); } stop(); stop(); var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); item1 = new ContextMenuItem('ArcadeArmory', itemHandler1); item2 = new ContextMenuItem('Progamming & Graphics: Sandeep Saha', itemHandler2); item3 = new ContextMenuItem('Music: AJUST', itemHandler3); myMenu.customItems.push(item1); myMenu.customItems.push(item2); myMenu.customItems.push(item3); _root.menu = myMenu; } frame 1 { Mouse.show(); } movieClip 33 { } movieClip 36 { } movieClip 39 { } movieClip 40 { } movieClip 43 { } button 44 { on (release) { getURL('http://www.arcadearmory.com', _blank); } } // unknown tag 88 length 59 movieClip 48 { frame 1 { var pc = 0; this.onEnterFrame = function () { pc = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); this.pc_txt.text = pc + ' % '; this.bar._xscale = pc; if (pc == 100 && !isNAN(pc)) { delete this.onEnterFrame; _root.play(); } }; } } movieClip 245 __Packages.coin { #initclip if (!_global.coin) { var v1 = function () { super(); }; _global.coin = v1; _global.coin extends MovieClip; var v2 = v1.prototype; v2.onEnterFrame = function () { if (this.hitTest(_root.char)) { this.unloadMovie(); var v3 = _root.attachMovie('boom', 'boom' + _root.getNextHighestDepth(), _root.getNextHighestDepth()); v3._x = this._x; v3._y = this._y; } }; ASSetPropFlags(_global.coin.prototype, null, 1); } #endinitclip } movieClip 246 __Packages.door { #initclip if (!_global.door) { var v1 = function () { super(); }; _global.door = v1; _global.door extends MovieClip; var v2 = v1.prototype; v2.onLoad = function () { this._visible = false; }; v2.onEnterFrame = function () { if (this.hitTest(_root.char)) { var v3 = _root.attachMovie('done', 'done' + _root.getNextHighestDepth(), _root.getNextHighestDepth()); v3._x = _root.char._x; v3._y = _root.char._y; _root.char.unloadMovie(); } }; ASSetPropFlags(_global.door.prototype, null, 1); } #endinitclip } movieClip 247 __Packages.character { #initclip if (!_global.character) { var v1 = function () { super(); }; _global.character = v1; _global.character extends MovieClip; var v2 = v1.prototype; v2.onLoad = function () { this.a = 3; this.grav = 0; this.speed = 3; this.jumpHeight = 12.5; this.slow = 0.7; this.slowspd = this.speed / 1.5; this.setspeed = this.speed; this.scale = this._xscale; this.ex = 1; this.gotoAndStop(2); }; v2.onEnterFrame = function () { if (Key.isDown(77)) { _root.gotoAndStop('menu'); } if (Key.isDown(82)) { _root.gotoAndStop('game_over'); } this.onMouseDown = function () { if (this.a == 3) { this.a = 0; } }; ++this.grav; this._y += this.grav; while (_root.ground.hitTest(this._x, this._y, true)) { --this._y; this.grav = 0; } while (_root.ground2.hitTest(this._x, this._y, true)) { --this._y; this.grav = 0; } if (_root.water.hitTest(this._x, this._y, true)) { if (this.grav > 0) { this.grav *= this.slow; } this.speed = this.slowspd; } else { this.speed = this.setspeed; } if (this.a == 0) { this._x += this.speed; this._xscale = this.scale; if (_root.ground.hitTest(this._x, this._y + 3, true) || _root.ground2.hitTest(this._x, this._y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else { if (this.a == 1) { this._x -= this.speed; this._xscale = -this.scale; if (_root.ground.hitTest(this._x, this._y + 3, true) || _root.ground2.hitTest(this._x, this._y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else { if (this.a == 3) { this.gotoAndStop(3); } } } if (_root.ground.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height / 2, true) || _root.ground.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height / 6, true) || _root.ground.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height, true) || _root.ground2.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height / 2, true) || _root.ground2.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height / 6, true) || _root.ground2.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height, true)) { this.a = 1; } if (_root.ground.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height / 2, true) || _root.ground.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height / 6, true) || _root.ground.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height, true) || _root.ground2.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height / 2, true) || _root.ground2.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height / 6, true) || _root.ground2.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height, true)) { this.a = 0; } if (_root.ground.hitTest(this._x, this._y - this._height - 15, true) || _root.ground2.hitTest(this._x, this._y - this._height - 15, true)) { this.grav = 1; } if ((_root.ground.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height / 2, true) || _root.ground.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height / 6, true) || _root.ground.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height, true) || _root.ground2.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height / 2, true) || _root.ground2.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height / 6, true) || _root.ground2.hitTest(this._x + this._width / 2 + this.ex, this._y - this._height, true)) && (_root.ground.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height / 2, true) || _root.ground.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height / 6, true) || _root.ground.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height, true) || _root.ground2.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height / 2, true) || _root.ground2.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height / 6, true) || _root.ground2.hitTest(this._x - this._width / 2 - this.ex, this._y - this._height, true))) { this.unloadMovie(); var v3 = _root.attachMovie('dead', 'dead' + _root.getNextHighestDepth(), _root.getNextHighestDepth()); v3._x = this._x; v3._y = this._y; } if (this._x > 720 || this._x < -20 || this._y > 550 || this._y < -50) { _root.gotoAndPlay('game_over'); } }; ASSetPropFlags(_global.character.prototype, null, 1); } #endinitclip } movieClip 248 __Packages.plat2 { #initclip if (!_global.plat2) { var v1 = function () { super(); }; _global.plat2 = v1; _global.plat2 extends MovieClip; var v2 = v1.prototype; v2.onEnterFrame = function () { if (this._x > 600 && this._y < 50 || this._x < 75 && this._y > 425) { Mouse.show(); } else { Mouse.hide(); } }; ASSetPropFlags(_global.plat2.prototype, null, 1); } #endinitclip } movieClip 249 __Packages.saw { #initclip if (!_global.saw) { var v1 = function () { super(); }; _global.saw = v1; _global.saw extends MovieClip; var v2 = v1.prototype; v2.onEnterFrame = function () { if (this.hitTest(_root.char)) { var v3 = _root.attachMovie('dead', 'dead' + _root.getNextHighestDepth(), _root.getNextHighestDepth()); v3._x = _root.char._x; v3._y = _root.char._y; _root.char.unloadMovie(); } }; v2.onLoad = function () { this._visible = false; }; ASSetPropFlags(_global.saw.prototype, null, 1); } #endinitclip } movieClip 250 __Packages.dead { #initclip if (!_global.dead) { var v1 = function () { super(); }; _global.dead = v1; _global.dead extends MovieClip; var v2 = v1.prototype; v2.onLoad = function () { this.grav = 0; }; v2.onEnterFrame = function () { ++this.grav; this._y += this.grav; while (_root.ground.hitTest(this._x, this._y, true)) { --this._y; this.grav = 0; } if (this._currentframe == this._totalframes) { this.removeMovieClip(); } }; ASSetPropFlags(_global.dead.prototype, null, 1); } #endinitclip } frame 2 { stop(); Mouse.show(); } button 51 { on (release) { getURL('http://www.arcadearmory.com', _blank); } } movieClip 59 { } movieClip 62 { frame 173 { _root.play(); } } frame 3 { Mouse.show(); } frame 3 { stop(); var savefile = SharedObject.getLocal('prototype'); _root.oldlevel = savefile.data.level; if (savefile.data.score == undefined) { _root.oldlevel = 1; } _root.level = 1; } // unknown tag 88 length 63 button 67 { on (release) { var savefile = SharedObject.getLocal('prototype'); if (savefile.data.level == undefined) { gotoAndPlay('intro'); } else { if (savefile.data.level == 1) { _root.gotoAndPlay('level1'); } else { if (savefile.data.level == 2) { _root.gotoAndPlay('level2'); } else { if (savefile.data.level == 3) { _root.gotoAndPlay('level3'); } else { if (savefile.data.level == 4) { _root.gotoAndPlay('level4'); } else { if (savefile.data.level == 5) { _root.gotoAndPlay('level5'); } else { if (savefile.data.level == 6) { _root.gotoAndPlay('level6'); } else { if (savefile.data.level == 7) { _root.gotoAndPlay('level7'); } else { if (savefile.data.level == 8) { _root.gotoAndPlay('level8'); } else { if (savefile.data.level == 9) { _root.gotoAndPlay('level9'); } else { if (savefile.data.level == 10) { _root.gotoAndPlay('level10'); } else { if (savefile.data.level == 11) { _root.gotoAndPlay('level11'); } else { if (savefile.data.level == 12) { _root.gotoAndPlay('level12'); } else { if (savefile.data.level == 13) { _root.gotoAndPlay('level13'); } else { if (savefile.data.level == 14) { _root.gotoAndPlay('level14'); } else { if (savefile.data.level == 15) { _root.gotoAndPlay('level15'); } else { if (savefile.data.level == 16) { _root.gotoAndPlay('level16'); } else { if (savefile.data.level == 17) { _root.gotoAndPlay('level17'); } else { if (savefile.data.level == 18) { _root.gotoAndPlay('level18'); } else { if (savefile.data.level == 19) { _root.gotoAndPlay('level19'); } else { if (savefile.data.level == 20) { _root.gotoAndPlay('level20'); } else { if (savefile.data.level == 21) { _root.gotoAndPlay('level21'); } else { if (savefile.data.level == 22) { _root.gotoAndPlay('level22'); } else { if (savefile.data.level == 23) { _root.gotoAndPlay('level23'); } else { if (savefile.data.level == 24) { _root.gotoAndPlay('level24'); } else { if (savefile.data.level == 25) { _root.gotoAndPlay('level25'); } else { if (savefile.data.level == 26) { _root.gotoAndPlay('level26'); } else { if (savefile.data.level == 27) { _root.gotoAndPlay('level27'); } else { if (savefile.data.level == 28) { _root.gotoAndPlay('level28'); } else { if (savefile.data.level == 29) { _root.gotoAndPlay('level29'); } else { if (savefile.data.level == 30) { _root.gotoAndPlay('level30'); } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } button 69 { on (release) { _root.nextFrame(); } } button 72 { on (release) { _root.gotoAndPlay('credits'); } } button 74 { on (release) { getURL('http://www.arcadearmory.com', _blank); } } button 77 { on (release) { getURL('http://www.arcadearmory.com/distribution.php', _blank); } } button 80 { on (release) { getURL('http://www.facebook.com/pages/ArcadeArmory/118242484899341?ref=ts', _blank); } } button 83 { on (release) { getURL('http://www.facebook.com/pages/ArcadeArmory/118242484899341?ref=ts', _blank); } } button 87 { on (release) { _root.music.play(); } } button 88 { on (release) { _root.music.stop(); } } movieClip 89 { } instance music of movieClip 89 { } frame 4 { stop(); } movieClip 92 { frame 399 { _root.nextFrame(); } } button 94 { on (release) { _root.nextFrame(); } } button 97 { on (release) { getURL('http://www.arcadearmory.com', _blank); } } frame 5 { stop(); _root.level = 1; savefile.data.level = _root.level; savefile.flush(); } movieClip 100 { } movieClip 103 { } movieClip 105 { } instance ground2 of movieClip 28 plat2 { onClipEvent (enterFrame) { mx = _root._xmouse; if (mx < _x) { dx = _x - mx; } else { dx = mx - _x; } moveSpeedx = dx; if (mx < _x) { _x = _x - moveSpeedx; } else { _x = _x + moveSpeedx; } my = _root._ymouse; if (my < _y) { dy = _y - my; } else { dy = my - _y; } moveSpeedy = dy; if (my < _y) { _y = _y - moveSpeedy; } else { _y = _y + moveSpeedy; } } } movieClip 107 { } movieClip 108 { } button 115 { on (release) { getURL('http://arcadearmory.com/walkthrough.php', _blank); } } frame 6 { _root.nextFrame(); } frame 7 { stop(); _root.level = 2; savefile.data.level = _root.level; savefile.flush(); } movieClip 117 { } frame 8 { _root.nextFrame(); } frame 9 { stop(); _root.level = 3; savefile.data.level = _root.level; savefile.flush(); } movieClip 122 { } movieClip 126 { } frame 10 { _root.nextFrame(); } frame 11 { stop(); _root.level = 4; savefile.data.level = _root.level; savefile.flush(); } movieClip 128 { } frame 12 { _root.nextFrame(); } frame 13 { stop(); _root.level = 5; savefile.data.level = _root.level; savefile.flush(); } movieClip 132 { } frame 14 { _root.nextFrame(); } frame 15 { stop(); _root.level = 6; savefile.data.level = _root.level; savefile.flush(); } movieClip 136 { } frame 16 { _root.nextFrame(); } frame 17 { stop(); _root.level = 7; savefile.data.level = _root.level; savefile.flush(); } movieClip 139 { } frame 18 { _root.nextFrame(); } frame 19 { stop(); _root.level = 8; savefile.data.level = _root.level; savefile.flush(); } movieClip 142 { } frame 20 { _root.nextFrame(); } frame 21 { stop(); _root.level = 9; savefile.data.level = _root.level; savefile.flush(); } movieClip 145 { } frame 22 { _root.nextFrame(); } frame 23 { stop(); _root.level = 10; savefile.data.level = _root.level; savefile.flush(); } movieClip 148 { } frame 24 { _root.nextFrame(); } frame 25 { stop(); _root.level = 11; savefile.data.level = _root.level; savefile.flush(); } movieClip 151 { } frame 26 { _root.nextFrame(); } frame 27 { stop(); _root.level = 12; savefile.data.level = _root.level; savefile.flush(); } movieClip 153 { } movieClip 155 { } frame 28 { _root.nextFrame(); } frame 29 { stop(); _root.level = 13; savefile.data.level = _root.level; savefile.flush(); } movieClip 158 { } frame 30 { _root.nextFrame(); } frame 31 { stop(); _root.level = 14; savefile.data.level = _root.level; savefile.flush(); } movieClip 162 { } movieClip 164 { } frame 32 { _root.nextFrame(); } frame 33 { stop(); _root.level = 15; savefile.data.level = _root.level; savefile.flush(); } movieClip 166 { } movieClip 168 { } frame 34 { _root.nextFrame(); } frame 35 { stop(); _root.level = 16; savefile.data.level = _root.level; savefile.flush(); } movieClip 171 { } frame 36 { _root.nextFrame(); } frame 37 { stop(); _root.level = 17; savefile.data.level = _root.level; savefile.flush(); } movieClip 174 { } frame 38 { _root.nextFrame(); } frame 39 { stop(); _root.level = 18; savefile.data.level = _root.level; savefile.flush(); } movieClip 177 { } frame 40 { _root.nextFrame(); } frame 41 { stop(); _root.level = 19; savefile.data.level = _root.level; savefile.flush(); } movieClip 180 { } frame 42 { _root.nextFrame(); } frame 43 { stop(); _root.level = 20; savefile.data.level = _root.level; savefile.flush(); } movieClip 183 { } frame 44 { _root.nextFrame(); } frame 45 { stop(); _root.level = 21; savefile.data.level = _root.level; savefile.flush(); } movieClip 185 { } movieClip 186 { } movieClip 188 { } frame 46 { _root.nextFrame(); } frame 47 { stop(); _root.level = 22; savefile.data.level = _root.level; savefile.flush(); } movieClip 190 { } movieClip 191 { } movieClip 192 { } movieClip 194 { } frame 48 { _root.nextFrame(); } frame 49 { stop(); _root.level = 23; savefile.data.level = _root.level; savefile.flush(); } movieClip 197 { } frame 50 { _root.nextFrame(); } frame 51 { stop(); _root.level = 24; savefile.data.level = _root.level; savefile.flush(); } movieClip 200 { } movieClip 201 { } movieClip 202 { } movieClip 204 { } frame 52 { _root.nextFrame(); } frame 53 { stop(); _root.level = 25; savefile.data.level = _root.level; savefile.flush(); } movieClip 206 { } movieClip 207 { } movieClip 208 { } movieClip 210 { } frame 54 { _root.nextFrame(); } frame 55 { stop(); _root.level = 26; savefile.data.level = _root.level; savefile.flush(); } movieClip 212 { } movieClip 214 { } frame 56 { _root.nextFrame(); } frame 57 { stop(); _root.level = 27; savefile.data.level = _root.level; savefile.flush(); } movieClip 217 { } frame 58 { _root.nextFrame(); } frame 59 { stop(); _root.level = 28; savefile.data.level = _root.level; savefile.flush(); } movieClip 219 { } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 1.5; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 1.25; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 1.75; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 1.5; } } movieClip 221 { } frame 60 { _root.nextFrame(); } frame 61 { stop(); _root.level = 29; savefile.data.level = _root.level; savefile.flush(); } movieClip 224 { } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation -= 0.9166666666666666; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 1; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 1.083333333333333; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 0.8333333333333334; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation -= 0.6666666666666666; } } frame 62 { _root.nextFrame(); } frame 63 { stop(); _root.level = 30; savefile.data.level = _root.level; savefile.flush(); } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 1.5; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation -= 1.25; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 1.75; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation -= 1.75; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation -= 1.5; } } instance of movieClip 219 { onClipEvent (enterFrame) { this._rotation += 1.25; } } movieClip 227 { } frame 64 { _root.gotoAndStop('outro'); } frame 65 { stop(); var savefile = SharedObject.getLocal('prototype'); if (savefile.data.level == undefined) { _root.level = 1; _root.gotoAndPlay('level1'); } else { if (savefile.data.level == 1) { _root.gotoAndPlay('level1'); } else { if (savefile.data.level == 2) { _root.gotoAndPlay('level2'); } else { if (savefile.data.level == 3) { _root.gotoAndPlay('level3'); } else { if (savefile.data.level == 4) { _root.gotoAndPlay('level4'); } else { if (savefile.data.level == 5) { _root.gotoAndPlay('level5'); } else { if (savefile.data.level == 6) { _root.gotoAndPlay('level6'); } else { if (savefile.data.level == 7) { _root.gotoAndPlay('level7'); } else { if (savefile.data.level == 8) { _root.gotoAndPlay('level8'); } else { if (savefile.data.level == 9) { _root.gotoAndPlay('level9'); } else { if (savefile.data.level == 10) { _root.gotoAndPlay('level10'); } else { if (savefile.data.level == 11) { _root.gotoAndPlay('level11'); } else { if (savefile.data.level == 12) { _root.gotoAndPlay('level12'); } else { if (savefile.data.level == 13) { _root.gotoAndPlay('level13'); } else { if (savefile.data.level == 14) { _root.gotoAndPlay('level14'); } else { if (savefile.data.level == 15) { _root.gotoAndPlay('level15'); } else { if (savefile.data.level == 16) { _root.gotoAndPlay('level16'); } else { if (savefile.data.level == 17) { _root.gotoAndPlay('level17'); } else { if (savefile.data.level == 18) { _root.gotoAndPlay('level18'); } else { if (savefile.data.level == 19) { _root.gotoAndPlay('level19'); } else { if (savefile.data.level == 20) { _root.gotoAndPlay('level20'); } else { if (savefile.data.level == 21) { _root.gotoAndPlay('level21'); } else { if (savefile.data.level == 22) { _root.gotoAndPlay('level22'); } else { if (savefile.data.level == 23) { _root.gotoAndPlay('level23'); } else { if (savefile.data.level == 24) { _root.gotoAndPlay('level24'); } else { if (savefile.data.level == 25) { _root.gotoAndPlay('level25'); } else { if (savefile.data.level == 26) { _root.gotoAndPlay('level26'); } else { if (savefile.data.level == 27) { _root.gotoAndPlay('level27'); } else { if (savefile.data.level == 28) { _root.gotoAndPlay('level28'); } else { if (savefile.data.level == 29) { _root.gotoAndPlay('level29'); } else { if (savefile.data.level == 30) { _root.gotoAndPlay('level30'); } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } frame 66 { Mouse.show(); } frame 66 { stop(); } movieClip 232 { } movieClip 234 { } movieClip 235 { frame 280 { _root.nextFrame(); } } frame 67 { Mouse.show(); } frame 67 { stop(); } button 237 { on (release) { getURL('http://www.ahkong.net', _blank); } } button 239 { on (release) { _root.gotoAndPlay('menu'); } }




http://swfchan.com/27/134487/info.shtml
Created: 9/2 -2019 22:06:24 Last modified: 9/2 -2019 22:06:24 Server time: 08/05 -2024 02:14:26