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

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

Shodge.swf

This is the info page for
Flash #67911

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


Text
Return To Menu

More Games

Loading.

Loading..

Loading...

shodge

Play

Instructions

Highscores

Score:

Lives:

<p align="left"><font face="BankGothic Md BT" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">000000</font></p>

<p align="left"><font face="BankGothic Md BT" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">00</font></p>

<p align="left"><font face="BankGothic Md BT" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">00</font></p>

Movement

W

S

D

A

or

Aim

Fire

Game Over

Submit Score

Name:

Score:

<p align="left"><font face="BankGothic Md BT" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">00000</font></p>

Instructions

Move The Top Left Ball and Avoid Being Hit.

Shoot The Bottom Right Cannon At The Balls.

ActionScript [AS1/AS2]

Frame 1
function onEnterFrame() { if (on_frame == 1) { bytes_loaded = Math.round(_root.getBytesLoaded()); bytes_total = Math.round(_root.getBytesTotal()); getPercent = bytes_loaded / bytes_total; inder._xscale = getPercent * 100; if (bytes_loaded == bytes_total) { on_frame = 2; } } } function itemHandler1(obj, item) { getURL ("http://portalstrike.com"); } on_frame = 1; MochiAd.showPreGameAd({id:"441a31c7a771980d", res:"550x400"}); var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); item1 = new ContextMenuItem("Play More Games", itemHandler1); myMenu.customItems.push(item1); _root.menu = myMenu;
Instance of Symbol 29 MovieClip [portalstrike] in Frame 1
on (release) { getURL ("http://www.portalstrike.com/", "_blank"); }
Frame 2
function createHover(movie) { movie.onRollOver = function () { movie.bb._alpha = 200; }; movie.onRollOut = function () { movie.bb._alpha = 100; }; movie.onReleaseOutside = function () { movie.bb._alpha = 100; }; } stop(); playbtn.onPress = function () { gotoAndStop (3); }; ins.onPress = function () { gotoAndStop (5); }; mg.onPress = function () { getURL ("http://www.portalstrike.com/", "_blank"); }; hs.onPress = function () { getURL ("http://www.allgamesallfree.com/index.php?id=highscores&game=Shodge", "_blank"); }; createHover(playbtn); createHover(ins); createHover(hs); createHover(mg);
Frame 3
function createEnemy() { en = attachMovie("enemy", "enemy" + depth, depth); depth++; var _local1 = randRange(1, 3); if (_local1 == 1) { en._x = randRange(20, Stage.height - 20); en._y = (-en._height) / 2; enX.push(0); enY.push(3); enDir.push(1); } else if (_local1 == 2) { en._x = -(en._width / 2); en._y = randRange(20, Stage.height - 20); enX.push(3); enY.push(0); enDir.push(2); } else if (_local1 == 3) { en._x = randRange(150, Stage.width - 150) + 5; en._y = (Stage.height - (((en._x - 5) * Stage.height) / Stage.width)) + 5; enX.push(1); enY.push(1); enDir.push(3); } enemies.push(en); } function ballHit() { i = enemies.length - 1; while (i >= 0) { b = bullets.length - 1; while (b >= 0) { if (bullets[b].hitTest(enemies[i])) { score = score + 10; particleEffect(i); removeEnemy(); removeBullet(b); } b--; } i--; } } function shoot() { shotDelay = shotDelay - 1; if ((mouseIsDown == 1) && (shotDelay <= 0)) { shotDelay = 10; bl = attachMovie("blast", "blast" + depth, depth); depth++; bl._xscale = (bl._yscale = 200); bl._x = cannon._x; bl._y = cannon._y; bl._rotation = cannon._rotation; var counter = 10; bl.onEnterFrame = function () { counter = counter - 1; if (counter <= 0) { this.removeMovieClip(); } this._rotation = cannon._rotation; }; bu = attachMovie("bullet", "bullet" + depth, depth); depth++; bu._x = cannon._x; bu._y = cannon._y; bu._rotation = cannon._rotation; bullets.push(bu); var _local3 = Math.cos((bu._rotation * Math.PI) / 180) * 10; var _local2 = Math.sin((bu._rotation * Math.PI) / 180) * 10; bu._x = bu._x + (_local3 * 8); bu._y = bu._y + (_local2 * 8); bulletsX.push(_local3); bulletsY.push(_local2); } } function bulletMovement() { i = bullets.length - 1; while (i >= 0) { bullets[i]._x = bullets[i]._x + bulletsX[i]; bullets[i]._y = bullets[i]._y + bulletsY[i]; if (bullets[i]._x > Stage.width) { removeBullet(i); } if (bullets[i]._x < 0) { removeBullet(i); } if (bullets[i]._y > Stage.height) { removeBullet(i); } if (bullets[i]._y < 0) { removeBullet(i); } if (line.hitTest(bullets[i]._x, bullets[i]._y, true)) { removeBullet(i); } i--; } } function removeBullet(i) { bullets[i].removeMovieClip(); bullets.splice(i, 1); bulletsX.splice(i, 1); bulletsY.splice(i, 1); } function enemyMovement() { i = enemies.length - 1; while (i >= 0) { enemies[i]._x = enemies[i]._x + enX[i]; enemies[i]._y = enemies[i]._y + enY[i]; if (enemies[i]._x >= (Stage.width - (enemies[i]._width / 2))) { removeEnemy(); lives2 = lives2 - 1; attachMovie("redFlash", "redFlash", 100824); } else if (enemies[i]._y >= (Stage.height - (enemies[i]._height / 2))) { removeEnemy(); lives2 = lives2 - 1; attachMovie("redFlash", "redFlash", 100824); } if (enemies[i].hitTest(ball)) { removeEnemy(); lives1 = lives1 - 1; attachMovie("redFlash", "redFlash", 100824); } if (line.hitTest(enemies[i]._x, enemies[i]._y, true)) { removeEnemy(); } i--; } } function removeEnemy() { enemies[i].removeMovieClip(); enemies.splice(i, 1); enX.splice(i, 1); enY.splice(i, 1); eyDir.splice(i, 1); } function onEnterFrame() { var _local3 = _xmouse - aim._x; var _local2 = _ymouse - aim._y; aim._x = aim._x + (_local3 / 2); aim._y = aim._y + (_local2 / 2); if (_currentframe == 3) { timed = timed - 0.003; scoreAddDelay = scoreAddDelay - 1; if (scoreAddDelay <= 0) { scoreAddDelay = 10; score = score + 1; } if (Key.isDown(39) || (Key.isDown(68))) { velocityX = velocityX + acceleration; } if (Key.isDown(37) || (Key.isDown(65))) { velocityX = velocityX - acceleration; } if (Key.isDown(40) || (Key.isDown(83))) { velocityY = velocityY + acceleration; } if (Key.isDown(38) || (Key.isDown(87))) { velocityY = velocityY - acceleration; } velocityX = velocityX * friction; velocityY = velocityY * friction; ball._x = ball._x + velocityX; ball._y = ball._y + velocityY; if (side.hitTest(ball._x + (ball._width / 2), ball._y + (ball._height / 2), true)) { ball._x = ball._x - 1; ball._y = ball._y - 1; velocityX = 0; velocityY = 0; } if ((ball._x - (ball._width / 2)) <= 0) { ball._x = ball._width / 2; velocityX = 0; } if ((ball._y - (ball._height / 2)) <= 0) { ball._y = ball._height / 2; velocityY = 0; } if ((ball._x + (ball._width / 2)) >= Stage.width) { ball._x = Stage.width - (ball._width / 2); velocityX = 0; } if ((ball._y + (ball._height / 2)) >= Stage.height) { ball._y = Stage.height - (ball._height / 2); velocityY = 0; } var _local7 = _xmouse - cannon._x; var _local5 = _ymouse - cannon._y; var _local6 = Math.atan2(_local5, _local7); var _local1 = cannon._rotation; var _local4 = (_local6 * 180) / Math.PI; cannon._rotation = (((_local1 + _local1) + _local1) + _local4) / 4; enemyMovement(); countDown = countDown - 1; shoot(); bulletMovement(); ballHit(); particleMovement(); if (countDown <= 0) { countDown = timed; createEnemy(); } scoretxt = score; lives1txt = lives1; lives2txt = lives2; if ((lives1 <= 0) || (lives2 <= 0)) { i = enemies.length - 1; while (i >= 0) { removeEnemy(); i--; } i = bullets.length - 1; while (i >= 0) { removeBullet(i); i--; } i = explosions.length - 1; while (i >= 0) { explosions[i].removeMovieClip(); explosions.splice(i, 1); exX.splice(i, 1); exY.splice(i, 1); i--; } gotoAndStop (4); } } } function particleEffect(vari) { q = 10; while (q > 0) { exp = this.createEmptyMovieClip("exp" + depth, depth); drawCircle(exp, 100, 16777215, 100); exp._xscale = (exp._yscale = randRange(1, 5)); exp._x = enemies[vari]._x; exp._y = enemies[vari]._y; depth++; var _local2 = (Math.random() * 6) - 3; var _local3 = (Math.random() * 6) - 3; explosions.push(exp); exX.push(_local2); exY.push(_local3); blah = new Color(exp); blah.setRGB(16777215); q--; } } function drawCircle(target_mc, radius, fillColor, fillAlpha) { var x = radius; var y = radius; with (target_mc) { beginFill(fillColor, fillAlpha); moveTo(x + radius, y); curveTo(radius + x, (0.414213562373095 * radius) + y, (0.707106781186547 * radius) + x, (0.707106781186547 * radius) + y); curveTo((0.414213562373095 * radius) + x, radius + y, x, radius + y); curveTo((-0.414213562373095 * radius) + x, radius + y, (-0.707106781186547 * radius) + x, (0.707106781186547 * radius) + y); curveTo((-radius) + x, (0.414213562373095 * radius) + y, (-radius) + x, y); curveTo((-radius) + x, (-0.414213562373095 * radius) + y, (-0.707106781186547 * radius) + x, (-0.707106781186547 * radius) + y); curveTo((-0.414213562373095 * radius) + x, (-radius) + y, x, (-radius) + y); curveTo((0.414213562373095 * radius) + x, (-radius) + y, (0.707106781186547 * radius) + x, (-0.707106781186547 * radius) + y); curveTo(radius + x, (-0.414213562373095 * radius) + y, radius + x, y); endFill(); } } function particleMovement() { i = explosions.length - 1; while (i >= 0) { explosions[i]._x = explosions[i]._x + exX[i]; explosions[i]._y = explosions[i]._y + exY[i]; exX[i] = exX[i] * 0.95; exY[i] = exY[i] * 0.95; explosions[i]._alpha = explosions[i]._alpha - 5; if (explosions[i]._alpha <= 0) { explosions[i].removeMovieClip(); explosions.splice(i, 1); exX.splice(i, 1); exY.splice(i, 1); } i--; } } function randRange(smallNum, bigNum) { return(Math.floor(Math.random() * ((bigNum - smallNum) + 1)) + smallNum); } stop(); var my_sound = new Sound(); my_sound.attachSound("night.mp3"); my_sound.start(0, 100); velocityX = 0; velocityY = 0; acceleration = 1; friction = 0.92; Mouse.hide(); depth = 142; countDown = 10; enemies = new Array(); enX = new Array(); enY = new Array(); enDir = new Array(); score = 0; lives1 = 5; lives2 = 5; timed = 20; mouseIsDown = 0; onMouseDown = function () { mouseIsDown = 1; }; onMouseUp = function () { mouseIsDown = 0; }; shotDelay = 0; bullets = new Array(); bulletsX = new Array(); bulletsY = new Array(); scoreAddDelay = 10; exX = new Array(); exY = new Array(); explosions = new Array();
Frame 4
createHover(rtm); createHover(ss); stop(); _root.gamename = "Shodge"; rtm.onPress = function () { gotoAndStop (2); }; scoretxt = score; my_sounds.stop();
Instance of Symbol 89 MovieClip "ss" in Frame 4
on (press) { if (_root.sentScore != _root.score) { _root.add_pass = "flashapi"; _root.name = _root.name; _root.score = _root.score; _root.sentScore = _root.score; _root.loadVariables("http://www.allgamesallfree.com/new_score.php?game=" + _root.gamename, "POST"); } } on (release) { getURL ("http://www.allgamesallfree.com/index.php?id=highscores&game=" + _root.gamename, "_blank"); }
Frame 5
createHover(rtm); rtm.onPress = function () { gotoAndStop (2); };
Symbol 3 MovieClip [redFlash] Frame 10
this.removeMovieClip();
Symbol 20 MovieClip [aim] Frame 1
stop();
Symbol 98 MovieClip [__Packages.MochiAd] Frame 0
class MochiAd { function MochiAd () { } static function getVersion() { return("2.2"); } static function showPreGameAd(options) { var _local27 = {clip:_root, ad_timeout:3000, fadeout_time:250, regpt:"o", method:"showPreloaderAd", color:16747008, background:16777161, outline:13994812, ad_started:function () { this.clip.stop(); }, ad_finished:function () { this.clip.play(); }}; options = _parseOptions(options, _local27); var clip = options.clip; var _local23 = 11000; var _local26 = options.ad_timeout; delete options.ad_timeout; var fadeout_time = options.fadeout_time; delete options.fadeout_time; if (!load(options)) { options.ad_finished(); return(undefined); } options.ad_started(); var mc = clip._mochiad; mc.onUnload = function () { options.ad_finished(); }; var _local14 = _getRes(options); var _local4 = _local14[0]; var _local13 = _local14[1]; mc._x = _local4 * 0.5; mc._y = _local13 * 0.5; var chk = mc.createEmptyMovieClip("_mochiad_wait", 3); chk._x = _local4 * -0.5; chk._y = _local13 * -0.5; var _local7 = chk.createEmptyMovieClip("_mochiad_bar", 4); _local7._x = 10; _local7._y = _local13 - 20; var _local22 = options.color; delete options.color; var _local19 = options.background; delete options.background; var _local24 = options.outline; delete options.outline; var _local5 = _local7.createEmptyMovieClip("_outline", 1); _local5.beginFill(_local19); _local5.moveTo(0, 0); _local5.lineTo(_local4 - 20, 0); _local5.lineTo(_local4 - 20, 10); _local5.lineTo(0, 10); _local5.lineTo(0, 0); _local5.endFill(); var _local3 = _local7.createEmptyMovieClip("_inside", 2); _local3.beginFill(_local22); _local3.moveTo(0, 0); _local3.lineTo(_local4 - 20, 0); _local3.lineTo(_local4 - 20, 10); _local3.lineTo(0, 10); _local3.lineTo(0, 0); _local3.endFill(); _local3._xscale = 0; var _local6 = _local7.createEmptyMovieClip("_outline", 3); _local6.lineStyle(0, _local24, 100); _local6.moveTo(0, 0); _local6.lineTo(_local4 - 20, 0); _local6.lineTo(_local4 - 20, 10); _local6.lineTo(0, 10); _local6.lineTo(0, 0); chk.ad_msec = _local23; chk.ad_timeout = _local26; chk.started = getTimer(); chk.showing = false; chk.last_pcnt = 0; chk.fadeout_time = fadeout_time; chk.fadeFunction = function () { var _local2 = 100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time)); if (_local2 > 0) { this._parent._alpha = _local2; } else { var _local3 = this._parent._parent; MochiAd.unload(_local3); delete this.onEnterFrame; } }; mc.lc.adLoaded = function (width, height) { }; mc.lc.adjustProgress = function (msec) { var _local2 = this.mc._mochiad_wait; _local2.server_control = true; _local2.started = getTimer(); _local2.ad_msec = msec; }; chk.onEnterFrame = function () { var _local6 = this._parent._parent; var _local12 = this._parent._mochiad_ctr; var _local5 = getTimer() - this.started; var _local3 = false; var _local4 = _local6.getBytesTotal(); var _local8 = _local6.getBytesLoaded(); var _local10 = (100 * _local8) / _local4; var _local11 = (100 * _local5) / chk.ad_msec; var _local9 = this._mochiad_bar._inside; var _local2 = Math.min(100, Math.min(_local10 || 0, _local11)); _local2 = Math.max(this.last_pcnt, _local2); this.last_pcnt = _local2; _local9._xscale = _local2; if (!chk.showing) { var _local7 = _local12.getBytesTotal(); if ((_local7 > 0) || (typeof(_local7) == "undefined")) { chk.showing = true; chk.started = getTimer(); } else if (_local5 > chk.ad_timeout) { _local3 = true; } } if (_local5 > chk.ad_msec) { _local3 = true; } if (((_local4 > 0) && (_local8 >= _local4)) && (_local3)) { if (this.server_control) { delete this.onEnterFrame; } else { this.fadeout_start = getTimer(); this.onEnterFrame = chk.fadeFunction; } } }; } static function showInterLevelAd(options) { var _local13 = {clip:_root, ad_timeout:2000, fadeout_time:250, regpt:"o", method:"showTimedAd", ad_started:function () { this.clip.stop(); }, ad_finished:function () { this.clip.play(); }}; options = _parseOptions(options, _local13); var clip = options.clip; var _local10 = 11000; var _local12 = options.ad_timeout; delete options.ad_timeout; var fadeout_time = options.fadeout_time; delete options.fadeout_time; if (!load(options)) { options.ad_finished(); return(undefined); } options.ad_started(); var mc = clip._mochiad; mc.onUnload = function () { options.ad_finished(); }; var _local5 = _getRes(options); var _local14 = _local5[0]; var _local11 = _local5[1]; mc._x = _local14 * 0.5; mc._y = _local11 * 0.5; var chk = mc.createEmptyMovieClip("_mochiad_wait", 3); chk.ad_msec = _local10; chk.ad_timeout = _local12; chk.started = getTimer(); chk.showing = false; chk.fadeout_time = fadeout_time; chk.fadeFunction = function () { var _local2 = 100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time)); if (_local2 > 0) { this._parent._alpha = _local2; } else { var _local3 = this._parent._parent; MochiAd.unload(_local3); delete this.onEnterFrame; } }; mc.lc.adLoaded = function (width, height) { }; mc.lc.adjustProgress = function (msec) { var _local2 = this.mc._mochiad_wait; _local2.server_control = true; _local2.started = getTimer(); _local2.ad_msec = msec - 250; }; chk.onEnterFrame = function () { var _local5 = this._parent._mochiad_ctr; var _local4 = getTimer() - this.started; var _local2 = false; if (!chk.showing) { var _local3 = _local5.getBytesTotal(); if ((_local3 > 0) || (typeof(_local3) == "undefined")) { chk.showing = true; chk.started = getTimer(); } else if (_local4 > chk.ad_timeout) { _local2 = true; } } if (_local4 > chk.ad_msec) { _local2 = true; } if (_local2) { if (this.server_control) { delete this.onEnterFrame; } else { this.fadeout_start = getTimer(); this.onEnterFrame = this.fadeFunction; } } }; } static function showTimedAd(options) { showInterLevelAd(options); } static function showPreloaderAd(options) { showPreGameAd(options); } static function _allowDomains(server) { var _local1 = server.split("/")[2].split(":")[0]; if (System.security) { if (System.security.allowDomain) { System.security.allowDomain("*"); System.security.allowDomain(_local1); } if (System.security.allowInsecureDomain) { System.security.allowInsecureDomain("*"); System.security.allowInsecureDomain(_local1); } } return(_local1); } static function _loadCommunicator(options) { var _local26 = {clip:_root, com_server:"http://x.mochiads.com/com/1/", method:"loadCommunicator", depth:10337, id:"_UNKNOWN_"}; options = _parseOptions(options, _local26); options.swfv = options.clip.getSWFVersion() || 6; options.mav = getVersion(); var _local18 = options.clip; var _local20 = "_mochiad_com_" + options.id; if (!_isNetworkAvailable()) { return(null); } if (_local18[_local20]) { return(_local18[_local20].lc); } var _local21 = options.com_server + options.id; _allowDomains(_local21); delete options.id; delete options.com_server; var _local25 = options.depth; delete options.depth; var _local17 = _local18.createEmptyMovieClip(_local20, _local25); var _local11 = _local17.createEmptyMovieClip("_mochiad_com", 1); for (var _local15 in options) { _local11[_local15] = options[_local15]; } var _local6 = new LocalConnection(); var _local16 = ["", Math.floor(new Date().getTime()), random(999999)].join("_"); _local6.mc = _local17; _local6.name = _local16; _local6.allowDomain = function (d) { return(true); }; _local6.allowInsecureDomain = _local6.allowDomain; _local6.connect(_local16); _local17.lc = _local6; _local11.lc = _local16; _local6._id = 0; _local6._queue = []; _local6.rpcResult = function (cb_arg) { var _local8 = parseInt(cb_arg); var _local4 = this._callbacks[_local8]; if (!_local4) { return(undefined); } delete this._callbacks[_local8]; var _local5 = []; var _local3 = 2; while (_local3 < _local4.length) { _local5.push(_local4[_local3]); _local3++; } _local3 = 1; while (_local3 < arguments.length) { _local5.push(arguments[_local3]); _local3++; } var _local6 = _local4[1]; var _local7 = _local4[0]; if (_local7 && (typeof(_local6) == "string")) { _local6 = _local7[_local6]; } if (_local6) { _local6.apply(_local7, _local5); } }; _local6._didConnect = function (endpoint) { this._endpoint = endpoint; var _local4 = this._queue; delete this._queue; var _local5 = this.doSend; var _local2 = 0; while (_local2 < _local4.length) { var _local3 = _local4[_local2]; _local5.apply(this, _local3); _local2++; } }; _local6.doSend = function (args, cbobj, cbfn) { if (this._endpoint == null) { var _local4 = []; var _local3 = 0; while (_local3 < arguments.length) { _local4.push(arguments[_local3]); _local3++; } this._queue.push(_local4); return(undefined); } this._id = this._id + 1; var _local5 = this._id; if ((cbfn === undefined) || (cbfn === null)) { cbfn = cbobj; } this._callbacks[_local5] = [cbobj, cbfn]; var _local7 = new LocalConnection(); var _local9 = _local7.send(this._endpoint, "rpc", _local5, args); }; _local6._callbacks = {}; _local6._callbacks[0] = [_local6, "_didConnect"]; _local11.st = getTimer(); _local11.loadMovie(_local21 + ".swf", "POST"); return(_local6); } static function fetchHighScores(options, callbackObj, callbackMethod) { var _local1 = _loadCommunicator({id:options.id}); if (!_local1) { return(false); } var _local4 = ["fetchHighScores", options]; _local1.doSend(["fetchHighScores", options], callbackObj, callbackMethod); return(true); } static function sendHighScore(options, callbackObj, callbackMethod) { var _local1 = _loadCommunicator({id:options.id}); if (!_local1) { return(false); } var _local4 = ["sendHighScore", options]; _local1.doSend(["sendHighScore", options], callbackObj, callbackMethod); return(true); } static function load(options) { var _local13 = {clip:_root, server:"http://x.mochiads.com/srv/1/", method:"load", depth:10333, id:"_UNKNOWN_"}; options = _parseOptions(options, _local13); options.swfv = options.clip.getSWFVersion() || 6; options.mav = getVersion(); var _local9 = options.clip; if (!_isNetworkAvailable()) { return(null); } if (_local9._mochiad_loaded) { return(null); } var _local12 = options.depth; delete options.depth; var _local6 = _local9.createEmptyMovieClip("_mochiad", _local12); var _local11 = _getRes(options); options.res = (_local11[0] + "x") + _local11[1]; options.server = options.server + options.id; delete options.id; _local9._mochiad_loaded = true; var _local4 = _local6.createEmptyMovieClip("_mochiad_ctr", 1); for (var _local7 in options) { _local4[_local7] = options[_local7]; } var _local10 = _local4.server; delete _local4.server; var _local14 = _allowDomains(_local10); _local6.onEnterFrame = function () { if (this._mochiad_ctr._url != this._url) { this.onEnterFrame = function () { if (!this._mochiad_ctr) { delete this.onEnterFrame; MochiAd.unload(this._parent); } }; } }; var _local5 = new LocalConnection(); var _local8 = ["", Math.floor(new Date().getTime()), random(999999)].join("_"); _local5.mc = _local6; _local5.name = _local8; _local5.hostname = _local14; _local5.allowDomain = function (d) { return(true); }; _local5.allowInsecureDomain = _local5.allowDomain; _local5.connect(_local8); _local6.lc = _local5; _local4.lc = _local8; _local4.st = getTimer(); _local4.loadMovie(_local10 + ".swf", "POST"); return(_local6); } static function unload(clip) { if (typeof(clip) == "undefined") { clip = _root; } if (clip.clip && (clip.clip._mochiad)) { clip = clip.clip; } if (!clip._mochiad) { return(false); } clip._mochiad.removeMovieClip(); delete clip._mochiad_loaded; delete clip._mochiad; return(true); } static function _isNetworkAvailable() { if (System.security) { var _local1 = System.security; if (_local1.sandboxType == "localWithFile") { return(false); } } return(true); } static function _getRes(options) { var _local3 = options.clip.getBounds(); var _local2 = 0; var _local1 = 0; if (typeof(options.res) != "undefined") { var _local4 = options.res.split("x"); _local2 = parseFloat(_local4[0]); _local1 = parseFloat(_local4[1]); } else { _local2 = _local3.xMax - _local3.xMin; _local1 = _local3.yMax - _local3.yMin; } if ((_local2 == 0) || (_local1 == 0)) { _local2 = Stage.width; _local1 = Stage.height; } return([_local2, _local1]); } static function _parseOptions(options, defaults) { var _local4 = {}; for (var _local8 in defaults) { _local4[_local8] = defaults[_local8]; } if (options) { for (var _local8 in options) { _local4[_local8] = options[_local8]; } } if (_root.mochiad_options) { var _local5 = _root.mochiad_options.split("&"); var _local2 = 0; while (_local2 < _local5.length) { var _local3 = _local5[_local2].split("="); _local4[unescape(_local3[0])] = unescape(_local3[1]); _local2++; } } if (_local4.id == "test") { trace("[MochiAd] WARNING: Using the MochiAds test identifier, make sure to use the code from your dashboard, not this example!"); } return(_local4); } }
Symbol 77 MovieClip Frame 100
stop();
Symbol 85 MovieClip Frame 200
stop();

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:3
Symbol 3 MovieClip [redFlash]Uses:2
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClip [edge]Uses:4
Symbol 6 FontUsed by:7 23 40 43 45 49 62 63 64 67 75 80 81 87 88 90 91 92 93 95 96 97
Symbol 7 TextUses:6Used by:10
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:10 46 89
Symbol 10 MovieClip [rtm]Uses:7 9Used by:Timeline
Symbol 11 GraphicUsed by:12 57
Symbol 12 MovieClip [bullet]Uses:11Used by:Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:15
Symbol 15 MovieClip [blast]Uses:14Used by:Timeline
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClip [enemy]Uses:16Used by:Timeline
Symbol 18 GraphicUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClip [aim]Uses:18 19Used by:Timeline
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:24
Symbol 23 TextUses:6Used by:24
Symbol 24 MovieClip [mg]Uses:22 23Used by:Timeline
Symbol 25 FontUsed by:26 27 28 58 59 62 63 64 93
Symbol 26 TextUses:25Used by:29
Symbol 27 TextUses:25Used by:29
Symbol 28 TextUses:25Used by:29
Symbol 29 MovieClip [portalstrike]Uses:26 27 28Used by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 GraphicUsed by:34
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:34
Symbol 34 MovieClipUses:31 33Used by:Timeline
Symbol 35 GraphicUsed by:38
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClipUses:36Used by:38
Symbol 38 MovieClipUses:35 37Used by:Timeline
Symbol 98 MovieClip [__Packages.MochiAd]
Symbol 39 GraphicUsed by:Timeline
Symbol 40 TextUses:6Used by:Timeline
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:44
Symbol 43 TextUses:6Used by:44
Symbol 44 MovieClipUses:42 43Used by:Timeline
Symbol 45 TextUses:6Used by:46
Symbol 46 MovieClipUses:9 45Used by:Timeline
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:47Used by:50
Symbol 49 TextUses:6Used by:50
Symbol 50 MovieClipUses:48 49Used by:Timeline
Symbol 51 GraphicUsed by:Timeline
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:Timeline
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:Timeline
Symbol 56 GraphicUsed by:Timeline
Symbol 57 MovieClipUses:11Used by:Timeline
Symbol 58 TextUses:25Used by:Timeline
Symbol 59 TextUses:25Used by:Timeline
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:Timeline
Symbol 62 EditableTextUses:6 25Used by:Timeline
Symbol 63 EditableTextUses:6 25Used by:Timeline
Symbol 64 EditableTextUses:6 25Used by:Timeline
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:76  Timeline
Symbol 67 TextUses:6Used by:76  Timeline
Symbol 68 GraphicUsed by:74
Symbol 69 FontUsed by:70 71 72 73
Symbol 70 TextUses:69Used by:74
Symbol 71 TextUses:69Used by:74
Symbol 72 TextUses:69Used by:74
Symbol 73 TextUses:69Used by:74
Symbol 74 MovieClipUses:68 70 71 72 73Used by:76  Timeline
Symbol 75 TextUses:6Used by:76  Timeline
Symbol 76 MovieClipUses:66 67 74 75Used by:77
Symbol 77 MovieClipUses:76Used by:Timeline
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:84  Timeline
Symbol 80 TextUses:6Used by:84  Timeline
Symbol 81 TextUses:6Used by:84  Timeline
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:84  Timeline
Symbol 84 MovieClipUses:79 80 81 83Used by:85
Symbol 85 MovieClipUses:84Used by:Timeline
Symbol 86 Sound [night.mp3]Used by:Timeline
Symbol 87 TextUses:6Used by:Timeline
Symbol 88 TextUses:6Used by:89
Symbol 89 MovieClipUses:88 9Used by:Timeline
Symbol 90 TextUses:6Used by:Timeline
Symbol 91 EditableTextUses:6Used by:Timeline
Symbol 92 TextUses:6Used by:Timeline
Symbol 93 EditableTextUses:6 25Used by:Timeline
Symbol 94 GraphicUsed by:Timeline
Symbol 95 TextUses:6Used by:Timeline
Symbol 96 TextUses:6Used by:Timeline
Symbol 97 TextUses:6Used by:Timeline

Instance Names

"inder"Frame 1Symbol 34 MovieClip
"playbtn"Frame 2Symbol 44 MovieClip
"ins"Frame 2Symbol 46 MovieClip
"hs"Frame 2Symbol 50 MovieClip
"mg"Frame 2Symbol 24 MovieClip [mg]
"aim"Frame 2Symbol 20 MovieClip [aim]
"side"Frame 3Symbol 53 MovieClip
"cannon"Frame 3Symbol 55 MovieClip
"aim"Frame 3Symbol 20 MovieClip [aim]
"ball"Frame 3Symbol 57 MovieClip
"line"Frame 3Symbol 61 MovieClip
"rtm"Frame 4Symbol 10 MovieClip [rtm]
"ss"Frame 4Symbol 89 MovieClip
"aim"Frame 4Symbol 20 MovieClip [aim]
"bb"Symbol 10 MovieClip [rtm] Frame 1Symbol 9 MovieClip
"bb"Symbol 24 MovieClip [mg] Frame 1Symbol 22 MovieClip
"bb"Symbol 44 MovieClip Frame 1Symbol 42 MovieClip
"bb"Symbol 46 MovieClip Frame 1Symbol 9 MovieClip
"bb"Symbol 50 MovieClip Frame 1Symbol 48 MovieClip
"bb"Symbol 89 MovieClip Frame 1Symbol 9 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 3 as "redFlash"
ExportAssets (56)Timeline Frame 1Symbol 5 as "edge"
ExportAssets (56)Timeline Frame 1Symbol 10 as "rtm"
ExportAssets (56)Timeline Frame 1Symbol 12 as "bullet"
ExportAssets (56)Timeline Frame 1Symbol 15 as "blast"
ExportAssets (56)Timeline Frame 1Symbol 17 as "enemy"
ExportAssets (56)Timeline Frame 1Symbol 20 as "aim"
ExportAssets (56)Timeline Frame 1Symbol 24 as "mg"
ExportAssets (56)Timeline Frame 1Symbol 29 as "portalstrike"
ExportAssets (56)Timeline Frame 1Symbol 98 as "__Packages.MochiAd"
ExportAssets (56)Timeline Frame 3Symbol 86 as "night.mp3"

Dynamic Text Variables

scoretxtSymbol 62 EditableText"<p align="left"><font face="BankGothic Md BT" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">000000</font></p>"
lives1txtSymbol 63 EditableText"<p align="left"><font face="BankGothic Md BT" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">00</font></p>"
lives2txtSymbol 64 EditableText"<p align="left"><font face="BankGothic Md BT" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">00</font></p>"
nameSymbol 91 EditableText""
scoretxtSymbol 93 EditableText"<p align="left"><font face="BankGothic Md BT" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">00000</font></p>"




http://swfchan.com/14/67911/info.shtml
Created: 11/4 -2019 07:49:26 Last modified: 11/4 -2019 07:49:26 Server time: 19/05 -2024 01:20:35