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/47447827?noj=FRM47447827-19DC" width="1" height="1"></div>

spiderman-similarities.swf

This is the info page for
Flash #113587

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


Text
Real gaming challenge

Similarities

Instructions

Identify the similarities in the
two different images and click
the similar object to get it
confirmed. You get 50 points for
every click that is correct and
lose 25 points for every click
that is wrong. All the Best!
Use Mouse to interact.
Click on MUTE button to mute
the sound.

ok

<p align="center"><font face="Lynda Cursive" size="27" color="#000000" letterSpacing="0.000000" kerning="1">00:00</font></p>

<p align="center"></p>

FIVE

Score

Level :

<p align="center"></p>

Level-up

Level Score

Game score

Next level

Congratulations

Your game score

More Games

Connecting Please
Wait...

ActionScript [AS3]

Section 1
//MochiCoins (mochi.as3.MochiCoins) package mochi.as3 { public class MochiCoins { public static const STORE_HIDE:String = "StoreHide"; public static const NO_USER:String = "NoUser"; public static const IO_ERROR:String = "IOError"; public static const ITEM_NEW:String = "ItemNew"; public static const ITEM_OWNED:String = "ItemOwned"; public static const STORE_ITEMS:String = "StoreItems"; public static const ERROR:String = "Error"; public static const STORE_SHOW:String = "StoreShow"; public static var _inventory:MochiInventory; public static function triggerEvent(_arg1:String, _arg2:Object):void{ MochiSocial.triggerEvent(_arg1, _arg2); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ MochiSocial.removeEventListener(_arg1, _arg2); } public static function addEventListener(_arg1:String, _arg2:Function):void{ MochiSocial.addEventListener(_arg1, _arg2); } public static function getStoreItems():void{ MochiServices.send("coins_getStoreItems"); } public static function get inventory():MochiInventory{ return (_inventory); } public static function showStore(_arg1:Object=null):void{ MochiServices.bringToTop(); MochiServices.send("coins_showStore", {options:_arg1}, null, null); } public static function showItem(_arg1:Object=null):void{ if (((!(_arg1)) || (!((typeof(_arg1.item) == "string"))))){ trace("ERROR: showItem call must pass an Object with an item key"); return; }; MochiServices.bringToTop(); MochiServices.send("coins_showItem", {options:_arg1}, null, null); } public static function getVersion():String{ return (MochiServices.getVersion()); } public static function showVideo(_arg1:Object=null):void{ if (((!(_arg1)) || (!((typeof(_arg1.item) == "string"))))){ trace("ERROR: showVideo call must pass an Object with an item key"); return; }; MochiServices.bringToTop(); MochiServices.send("coins_showVideo", {options:_arg1}, null, null); } MochiSocial.addEventListener(MochiSocial.LOGGED_IN, function (_arg1:Object):void{ _inventory = new MochiInventory(); }); MochiSocial.addEventListener(MochiSocial.LOGGED_OUT, function (_arg1:Object):void{ _inventory = null; }); } }//package mochi.as3
Section 2
//MochiDigits (mochi.as3.MochiDigits) package mochi.as3 { public final class MochiDigits { private var Sibling:MochiDigits; private var Fragment:Number; private var Encoder:Number; public function MochiDigits(_arg1:Number=0, _arg2:uint=0):void{ Encoder = 0; setValue(_arg1, _arg2); } public function set value(_arg1:Number):void{ setValue(_arg1); } public function reencode():void{ var _local1:uint; _local1 = int((2147483647 * Math.random())); Fragment = (Fragment ^ (_local1 ^ Encoder)); Encoder = _local1; } public function toString():String{ var _local1:String; _local1 = String.fromCharCode((Fragment ^ Encoder)); if (Sibling != null){ _local1 = (_local1 + Sibling.toString()); }; return (_local1); } public function get value():Number{ return (Number(this.toString())); } public function setValue(_arg1:Number=0, _arg2:uint=0):void{ var _local3:String; _local3 = _arg1.toString(); var _temp1 = _arg2; _arg2 = (_arg2 + 1); Fragment = (_local3.charCodeAt(_temp1) ^ Encoder); if (_arg2 < _local3.length){ Sibling = new MochiDigits(_arg1, _arg2); } else { Sibling = null; }; reencode(); } public function addValue(_arg1:Number):void{ value = (value + _arg1); } } }//package mochi.as3
Section 3
//MochiEventDispatcher (mochi.as3.MochiEventDispatcher) package mochi.as3 { public class MochiEventDispatcher { private var eventTable:Object; public function MochiEventDispatcher():void{ eventTable = {}; } public function triggerEvent(_arg1:String, _arg2:Object):void{ var _local3:Object; if (eventTable[_arg1] == undefined){ return; }; for (_local3 in eventTable[_arg1]) { var _local6 = eventTable[_arg1]; _local6[_local3](_arg2); }; } public function removeEventListener(_arg1:String, _arg2:Function):void{ var _local3:Object; if (eventTable[_arg1] == undefined){ eventTable[_arg1] = []; return; }; for (_local3 in eventTable[_arg1]) { if (eventTable[_arg1][_local3] != _arg2){ } else { eventTable[_arg1].splice(Number(_local3), 1); }; }; } public function addEventListener(_arg1:String, _arg2:Function):void{ removeEventListener(_arg1, _arg2); eventTable[_arg1].push(_arg2); } } }//package mochi.as3
Section 4
//MochiEvents (mochi.as3.MochiEvents) package mochi.as3 { import flash.display.*; public class MochiEvents { public static const ALIGN_BOTTOM_LEFT:String = "ALIGN_BL"; public static const FORMAT_LONG:String = "LongForm"; public static const ALIGN_BOTTOM:String = "ALIGN_B"; public static const ACHIEVEMENT_RECEIVED:String = "AchievementReceived"; public static const FORMAT_SHORT:String = "ShortForm"; public static const ALIGN_TOP_RIGHT:String = "ALIGN_TR"; public static const ALIGN_BOTTOM_RIGHT:String = "ALIGN_BR"; public static const ALIGN_TOP:String = "ALIGN_T"; public static const ALIGN_LEFT:String = "ALIGN_L"; public static const ALIGN_RIGHT:String = "ALIGN_R"; public static const ALIGN_TOP_LEFT:String = "ALIGN_TL"; public static const ALIGN_CENTER:String = "ALIGN_C"; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); private static var gameStart:Number; private static var levelStart:Number; public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } public static function startSession(_arg1:String):void{ MochiServices.send("events_beginSession", {achievementID:_arg1}, null, null); } public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function setNotifications(_arg1:MovieClip, _arg2:Object):void{ var _local3:Object; var _local4:Object; _local3 = {}; for (_local4 in _arg2) { _local3[_local4] = _arg2[_local4]; }; _local3.clip = _arg1; MochiServices.send("events_setNotifications", _local3, null, null); } public static function endGame():void{ var _local1:Number; _local1 = (new Date().time - gameStart); trigger("end_game", {time:_local1}); } public static function startGame():void{ gameStart = new Date().time; trigger("start_game"); } public static function trigger(_arg1:String, _arg2:Object=null):void{ if (_arg2 == null){ _arg2 = {}; } else { if (_arg2["kind"] != undefined){ trace("WARNING: optional arguments package contains key 'id', it will be overwritten"); _arg2["kind"] = _arg1; }; }; MochiServices.send("events_triggerEvent", {eventObject:_arg2}, null, null); } public static function getVersion():String{ return (MochiServices.getVersion()); } public static function startLevel():void{ levelStart = new Date().time; trigger("start_level"); } public static function endLevel():void{ var _local1:Number; _local1 = (new Date().time - levelStart); trigger("end_level", {time:_local1}); } } }//package mochi.as3
Section 5
//MochiInventory (mochi.as3.MochiInventory) package mochi.as3 { import flash.events.*; import flash.utils.*; public dynamic class MochiInventory extends Proxy { private var _timer:Timer; private var _names:Array; private var _consumableProperties:Object; private var _syncID:Number; private var _storeSync:Object; private var _outstandingID:Number; private var _syncPending:Boolean; public static const READY:String = "InvReady"; public static const ERROR:String = "Error"; public static const IO_ERROR:String = "IoError"; private static const KEY_SALT:String = " syncMaint"; public static const WRITTEN:String = "InvWritten"; public static const NOT_READY:String = "InvNotReady"; public static const VALUE_ERROR:String = "InvValueError"; private static const CONSUMER_KEY:String = "MochiConsumables"; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); public function MochiInventory():void{ MochiCoins.addEventListener(MochiCoins.ITEM_OWNED, itemOwned); MochiCoins.addEventListener(MochiCoins.ITEM_NEW, newItems); MochiSocial.addEventListener(MochiSocial.LOGGED_IN, loggedIn); MochiSocial.addEventListener(MochiSocial.LOGGED_OUT, loggedOut); _storeSync = new Object(); _syncPending = false; _outstandingID = 0; _syncID = 0; _timer = new Timer(1000); _timer.addEventListener(TimerEvent.TIMER, sync); _timer.start(); if (MochiSocial.loggedIn){ loggedIn(); } else { loggedOut(); }; } private function newItems(_arg1:Object):void{ if (!this[(_arg1.id + KEY_SALT)]){ this[(_arg1.id + KEY_SALT)] = 0; }; if (!this[_arg1.id]){ this[_arg1.id] = 0; }; this[(_arg1.id + KEY_SALT)] = (this[(_arg1.id + KEY_SALT)] + _arg1.count); this[_arg1.id] = (this[_arg1.id] + _arg1.count); if (_arg1.privateProperties.consumable){ if (!this[_arg1.privateProperties.tag]){ this[_arg1.privateProperties.tag] = 0; }; this[_arg1.privateProperties.tag] = (this[_arg1.privateProperties.tag] + (_arg1.privateProperties.inc * _arg1.count)); }; } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function getProperty(_arg1){ if (_consumableProperties == null){ triggerEvent(ERROR, {type:NOT_READY}); return (-1); }; if (_consumableProperties[_arg1]){ return (MochiDigits(_consumableProperties[_arg1]).value); }; return (undefined); } public function release():void{ MochiCoins.removeEventListener(MochiCoins.ITEM_NEW, newItems); MochiSocial.removeEventListener(MochiSocial.LOGGED_IN, loggedIn); MochiSocial.removeEventListener(MochiSocial.LOGGED_OUT, loggedOut); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function hasProperty(_arg1):Boolean{ if (_consumableProperties == null){ triggerEvent(ERROR, {type:NOT_READY}); return (false); }; if (_consumableProperties[_arg1] == undefined){ return (false); }; return (true); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function nextNameIndex(_arg1:int):int{ return (((_arg1)>=_names.length) ? 0 : (_arg1 + 1)); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function setProperty(_arg1, _arg2):void{ var _local3:MochiDigits; if (_consumableProperties == null){ triggerEvent(ERROR, {type:NOT_READY}); return; }; if (!(_arg2 is Number)){ triggerEvent(ERROR, {type:VALUE_ERROR, error:"Invalid type", arg:_arg2}); return; }; if (_consumableProperties[_arg1]){ _local3 = MochiDigits(_consumableProperties[_arg1]); if (_local3.value == _arg2){ return; }; _local3.value = _arg2; } else { _names.push(_arg1); _consumableProperties[_arg1] = new MochiDigits(_arg2); }; _syncID++; } private function sync(_arg1:Event=null):void{ var _local2:Object; var _local3:String; if (((_syncPending) || ((_syncID == _outstandingID)))){ return; }; _outstandingID = _syncID; _local2 = {}; for (_local3 in _consumableProperties) { _local2[_local3] = MochiDigits(_consumableProperties[_local3]).value; }; MochiUserData.put(CONSUMER_KEY, _local2, putConsumableBag); _syncPending = true; } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function nextName(_arg1:int):String{ return (_names[(_arg1 - 1)]); } private function loggedIn(_arg1:Object=null):void{ MochiUserData.get(CONSUMER_KEY, getConsumableBag); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function deleteProperty(_arg1):Boolean{ if (!_consumableProperties[_arg1]){ return (false); }; _names.splice(_names.indexOf(_arg1), 1); delete _consumableProperties[_arg1]; return (true); } private function itemOwned(_arg1:Object):void{ _storeSync[_arg1.id] = {properties:_arg1.properties, count:_arg1.count}; } private function putConsumableBag(_arg1:MochiUserData):void{ _syncPending = false; if (_arg1.error){ triggerEvent(ERROR, {type:IO_ERROR, error:_arg1.error}); _outstandingID = -1; }; triggerEvent(WRITTEN, {}); } private function getConsumableBag(_arg1:MochiUserData):void{ var _local2:String; var _local3:Number; if (_arg1.error){ triggerEvent(ERROR, {type:IO_ERROR, error:_arg1.error}); return; }; _consumableProperties = {}; _names = new Array(); if (_arg1.data){ for (_local2 in _arg1.data) { _names.push(_local2); _consumableProperties[_local2] = new MochiDigits(_arg1.data[_local2]); }; }; for (_local2 in _storeSync) { _local3 = _storeSync[_local2].count; if (_consumableProperties[(_local2 + KEY_SALT)]){ _local3 = (_local3 - _consumableProperties[_local2]); }; if (_local3 == 0){ } else { newItems({id:_local2, count:_local3, properties:_storeSync[_local2].properties}); }; }; triggerEvent(READY, {}); } private function loggedOut(_arg1:Object=null):void{ _consumableProperties = null; } public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } } }//package mochi.as3
Section 6
//MochiScores (mochi.as3.MochiScores) package mochi.as3 { import flash.display.*; import flash.text.*; public class MochiScores { private static var boardID:String; public static var onErrorHandler:Object; public static var onCloseHandler:Object; public static function showLeaderboard(_arg1:Object=null):void{ var n:Number; var options = _arg1; if (options != null){ delete options.clip; MochiServices.setContainer(); MochiServices.bringToTop(); if (options.name != null){ if ((options.name is TextField)){ if (options.name.text.length > 0){ options.name = options.name.text; }; }; }; if (options.score != null){ if ((options.score is TextField)){ if (options.score.text.length > 0){ options.score = options.score.text; }; } else { if ((options.score is MochiDigits)){ options.score = options.score.value; }; }; n = Number(options.score); if (isNaN(n)){ trace((("ERROR: Submitted score '" + options.score) + "' will be rejected, score is 'Not a Number'")); } else { if ((((n == Number.NEGATIVE_INFINITY)) || ((n == Number.POSITIVE_INFINITY)))){ trace((("ERROR: Submitted score '" + options.score) + "' will be rejected, score is an infinite")); } else { if (Math.floor(n) != n){ trace((("WARNING: Submitted score '" + options.score) + "' will be truncated")); }; options.score = n; }; }; }; if (options.onDisplay != null){ options.onDisplay(); } else { if (MochiServices.clip != null){ if ((MochiServices.clip is MovieClip)){ MochiServices.clip.stop(); } else { trace("Warning: Container is not a MovieClip, cannot call default onDisplay."); }; }; }; } else { options = {}; if ((MochiServices.clip is MovieClip)){ MochiServices.clip.stop(); } else { trace("Warning: Container is not a MovieClip, cannot call default onDisplay."); }; }; if (options.onClose != null){ onCloseHandler = options.onClose; } else { onCloseHandler = function ():void{ if ((MochiServices.clip is MovieClip)){ MochiServices.clip.gotoAndStop("start"); } else { trace("Warning: Container is not a MovieClip, cannot call default onClose."); }; }; }; if (options.onError != null){ onErrorHandler = options.onError; } else { onErrorHandler = null; }; if (options.boardID == null){ if (MochiScores.boardID != null){ options.boardID = MochiScores.boardID; }; }; MochiServices.warnID(options.boardID, true); trace("[MochiScores] NOTE: Security Sandbox Violation errors below are normal"); MochiServices.send("scores_showLeaderboard", {options:options}, null, onClose); } public static function closeLeaderboard():void{ MochiServices.send("scores_closeLeaderboard"); } public static function getPlayerInfo(_arg1:Object, _arg2:Object=null):void{ MochiServices.send("scores_getPlayerInfo", null, _arg1, _arg2); } public static function requestList(_arg1:Object, _arg2:Object=null):void{ MochiServices.send("scores_requestList", null, _arg1, _arg2); } public static function scoresArrayToObjects(_arg1:Object):Object{ var _local2:Object; var _local3:Number; var _local4:Number; var _local5:Object; var _local6:Object; var _local7:String; var _local8:String; _local2 = {}; for (_local7 in _arg1) { if (typeof(_arg1[_local7]) == "object"){ if (((!((_arg1[_local7].cols == null))) && (!((_arg1[_local7].rows == null))))){ _local2[_local7] = []; _local5 = _arg1[_local7]; _local4 = 0; while (_local4 < _local5.rows.length) { _local6 = {}; _local3 = 0; while (_local3 < _local5.cols.length) { _local6[_local5.cols[_local3]] = _local5.rows[_local4][_local3]; _local3++; }; _local2[_local7].push(_local6); _local4++; }; } else { _local2[_local7] = {}; for (_local8 in _arg1[_local7]) { _local2[_local7][_local8] = _arg1[_local7][_local8]; }; }; } else { _local2[_local7] = _arg1[_local7]; }; }; return (_local2); } public static function submit(_arg1:Number, _arg2:String, _arg3:Object=null, _arg4:Object=null):void{ _arg1 = Number(_arg1); if (isNaN(_arg1)){ trace((("ERROR: Submitted score '" + String(_arg1)) + "' will be rejected, score is 'Not a Number'")); } else { if ((((_arg1 == Number.NEGATIVE_INFINITY)) || ((_arg1 == Number.POSITIVE_INFINITY)))){ trace((("ERROR: Submitted score '" + String(_arg1)) + "' will be rejected, score is an infinite")); } else { if (Math.floor(_arg1) != _arg1){ trace((("WARNING: Submitted score '" + String(_arg1)) + "' will be truncated")); }; _arg1 = Number(_arg1); }; }; MochiServices.send("scores_submit", {score:_arg1, name:_arg2}, _arg3, _arg4); } public static function onClose(_arg1:Object=null):void{ if (((((_arg1) && ((_arg1.error == true)))) && (onErrorHandler))){ if (_arg1.errorCode == null){ _arg1.errorCode = "IOError"; }; onErrorHandler(_arg1.errorCode); MochiServices.doClose(); return; }; onCloseHandler(); MochiServices.doClose(); } public static function setBoardID(_arg1:String):void{ MochiServices.warnID(_arg1, true); MochiScores.boardID = _arg1; MochiServices.send("scores_setBoardID", {boardID:_arg1}); } } }//package mochi.as3
Section 7
//MochiServices (mochi.as3.MochiServices) package mochi.as3 { import flash.display.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.system.*; import flash.geom.*; public class MochiServices { private static var _container:Object; private static var _connected:Boolean = false; private static var _swfVersion:String; private static var _preserved:Object; public static var netupAttempted:Boolean = false; private static var _sendChannel:LocalConnection; public static var servicesSync:MochiSync = new MochiSync(); private static var _clip:MovieClip; private static var _id:String; private static var _services:String = "services.swf"; private static var _servURL:String = "http://www.mochiads.com/static/lib/services/"; public static var widget:Boolean = false; private static var _timer:Timer; private static var _sendChannelName:String; private static var _loader:Loader; private static var _connecting:Boolean = false; private static var _mochiLocalConnection:MovieClip; private static var _listenChannelName:String = "__ms_"; public static var onError:Object; public static var netup:Boolean = true; private static var _mochiLC:String = "MochiLC.swf"; public static function isNetworkAvailable():Boolean{ return (!((Security.sandboxType == "localWithFile"))); } public static function get connected():Boolean{ return (_connected); } private static function onReceive(_arg1:Object):void{ var cb:String; var cblst:Object; var method:*; var methodName:String; var obj:Object; var pkg = _arg1; cb = pkg.callbackID; cblst = _clip._callbacks[cb]; if (!cblst){ return; }; method = cblst.callbackMethod; methodName = ""; obj = cblst.callbackObject; if (((obj) && ((typeof(method) == "string")))){ methodName = method; if (obj[method] != null){ method = obj[method]; } else { trace((("Error: Method " + method) + " does not exist.")); }; }; if (method != undefined){ try { method.apply(obj, pkg.args); } catch(error:Error) { trace(((("Error invoking callback method '" + methodName) + "': ") + error.toString())); }; } else { if (obj != null){ try { obj(pkg.args); } catch(error:Error) { trace(("Error invoking method on object: " + error.toString())); }; }; }; delete _clip._callbacks[cb]; } public static function get childClip():Object{ return (_clip); } public static function send(_arg1:String, _arg2:Object=null, _arg3:Object=null, _arg4:Object=null):void{ if (_connected){ _mochiLocalConnection.send(_sendChannelName, "onReceive", {methodName:_arg1, args:_arg2, callbackID:_clip._nextcallbackID}); } else { if ((((_clip == null)) || (!(_connecting)))){ trace(("Error: MochiServices not connected. Please call MochiServices.connect(). Function: " + _arg1)); handleError(_arg2, _arg3, _arg4); flush(true); return; }; _clip._queue.push({methodName:_arg1, args:_arg2, callbackID:_clip._nextcallbackID}); }; if (_clip != null){ if (((!((_clip._callbacks == null))) && (!((_clip._nextcallbackID == null))))){ _clip._callbacks[_clip._nextcallbackID] = {callbackObject:_arg3, callbackMethod:_arg4}; _clip._nextcallbackID++; }; }; } private static function init(_arg1:String, _arg2:Object):void{ _id = _arg1; if (_arg2 != null){ _container = _arg2; loadCommunicator(_arg1, _container); }; } private static function clickMovie(_arg1:String, _arg2:Function):MovieClip{ var _local3:Array; var _local4:int; var _local5:Array; var _local6:Array; var _local7:MovieClip; var _local8:LocalConnection; var _local9:String; var _local10:ByteArray; var _local11:ByteArray; var _local12:uint; var _local13:uint; var _local14:Loader; _local3 = [150, 21, 0, 7, 1, 0, 0, 0, 0, 98, 116, 110, 0, 7, 2, 0, 0, 0, 0, 116, 104, 105, 115, 0, 28, 150, 22, 0, 0, 99, 114, 101, 97, 116, 101, 69, 109, 112, 116, 121, 77, 111, 118, 105, 101, 67, 108, 105, 112, 0, 82, 135, 1, 0, 0, 23, 150, 13, 0, 4, 0, 0, 111, 110, 82, 101, 108, 101, 97, 115, 101, 0, 142, 8, 0, 0, 0, 0, 2, 42, 0, 114, 0, 150, 17, 0, 0, 32, 0, 7, 1, 0, 0, 0, 8, 0, 0, 115, 112, 108, 105, 116, 0, 82, 135, 1, 0, 1, 23, 150, 7, 0, 4, 1, 7, 0, 0, 0, 0, 78, 150, 8, 0, 0, 95, 98, 108, 97, 110, 107, 0, 154, 1, 0, 0, 150, 7, 0, 0, 99, 108, 105, 99, 107, 0, 150, 7, 0, 4, 1, 7, 1, 0, 0, 0, 78, 150, 27, 0, 7, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 76, 111, 99, 97, 108, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 0, 64, 150, 6, 0, 0, 115, 101, 110, 100, 0, 82, 79, 150, 15, 0, 4, 0, 0, 95, 97, 108, 112, 104, 97, 0, 7, 0, 0, 0, 0, 79, 150, 23, 0, 7, 0xFF, 0, 0xFF, 0, 7, 1, 0, 0, 0, 4, 0, 0, 98, 101, 103, 105, 110, 70, 105, 108, 108, 0, 82, 23, 150, 25, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 109, 111, 118, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 100, 0, 0, 0, 7, 0, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 100, 0, 0, 0, 7, 100, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 0, 0, 0, 0, 7, 100, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 16, 0, 7, 0, 0, 0, 0, 4, 0, 0, 101, 110, 100, 70, 105, 108, 108, 0, 82, 23]; _local5 = [104, 0, 31, 64, 0, 7, 208, 0, 0, 12, 1, 0, 67, 2, 0xFF, 0xFF, 0xFF, 63, 3]; _local6 = [0, 64, 0, 0, 0]; _local7 = new MovieClip(); _local8 = new LocalConnection(); _local9 = ((("_click_" + Math.floor((Math.random() * 999999))) + "_") + Math.floor(new Date().time)); _local8 = new LocalConnection(); _local7.lc = _local8; _local7.click = _arg2; _local8.client = _local7; _local8.connect(_local9); _local10 = new ByteArray(); _local11 = new ByteArray(); _local11.endian = Endian.LITTLE_ENDIAN; _local11.writeShort(1); _local11.writeUTFBytes(((_arg1 + " ") + _local9)); _local11.writeByte(0); _local12 = ((_local3.length + _local11.length) + 4); _local13 = (_local12 + 35); _local10.endian = Endian.LITTLE_ENDIAN; _local10.writeUTFBytes("FWS"); _local10.writeByte(8); _local10.writeUnsignedInt(_local13); for each (_local4 in _local5) { _local10.writeByte(_local4); }; _local10.writeUnsignedInt(_local12); _local10.writeByte(136); _local10.writeShort(_local11.length); _local10.writeBytes(_local11); for each (_local4 in _local3) { _local10.writeByte(_local4); }; for each (_local4 in _local6) { _local10.writeByte(_local4); }; _local14 = new Loader(); _local14.loadBytes(_local10); _local7.addChild(_local14); return (_local7); } public static function stayOnTop():void{ _container.addEventListener(Event.ENTER_FRAME, MochiServices.bringToTop, false, 0, true); if (_clip != null){ _clip.visible = true; }; } public static function addLinkEvent(_arg1:String, _arg2:String, _arg3:DisplayObjectContainer, _arg4:Function=null):void{ var vars:Object; var avm1Click:DisplayObject; var s:String; var i:Number; var x:String; var req:URLRequest; var loader:Loader; var setURL:Function; var err:Function; var complete:Function; var url = _arg1; var burl = _arg2; var btn = _arg3; var onClick = _arg4; vars = new Object(); vars["mav"] = getVersion(); vars["swfv"] = "9"; vars["swfurl"] = btn.loaderInfo.loaderURL; vars["fv"] = Capabilities.version; vars["os"] = Capabilities.os; vars["lang"] = Capabilities.language; vars["scres"] = ((Capabilities.screenResolutionX + "x") + Capabilities.screenResolutionY); s = "?"; i = 0; for (x in vars) { if (i != 0){ s = (s + "&"); }; i = (i + 1); s = (((s + x) + "=") + escape(vars[x])); }; req = new URLRequest("http://x.mochiads.com/linkping.swf"); loader = new Loader(); setURL = function (_arg1:String):void{ var _local2:Rectangle; if (avm1Click){ btn.removeChild(avm1Click); }; avm1Click = clickMovie(_arg1, onClick); _local2 = btn.getBounds(btn); btn.addChild(avm1Click); avm1Click.x = _local2.x; avm1Click.y = _local2.y; avm1Click.scaleX = (0.01 * _local2.width); avm1Click.scaleY = (0.01 * _local2.height); }; err = function (_arg1:Object):void{ netup = false; _arg1.target.removeEventListener(_arg1.type, arguments.callee); setURL(burl); }; complete = function (_arg1:Object):void{ _arg1.target.removeEventListener(_arg1.type, arguments.callee); }; if (netup){ setURL((url + s)); } else { setURL(burl); }; if (!((netupAttempted) || (_connected))){ netupAttempted = true; loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, err); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, complete); loader.load(req); }; } public static function warnID(_arg1:String, _arg2:Boolean):void{ var _local3:Number; _arg1 = _arg1.toLowerCase(); if (_arg1.length != 16){ trace((("WARNING: " + (_arg2) ? "board" : "game") + " ID is not the appropriate length")); return; } else { if (_arg1 == "1e113c7239048b3f"){ if (_arg2){ trace("WARNING: Using testing board ID"); } else { trace("WARNING: Using testing board ID as game ID"); }; return; } else { if (_arg1 == "84993a1de4031cd8"){ if (_arg2){ trace("WARNING: Using testing game ID as board ID"); } else { trace("WARNING: Using testing game ID"); }; return; }; }; }; _local3 = 0; while (_local3 < _arg1.length) { switch (_arg1.charAt(_local3)){ case "0": case "1": case "2": case "3": case "4": case "5": case "6": case "7": case "8": case "9": case "a": case "b": case "c": case "d": case "e": case "f": break; default: trace(("WARNING: Board ID contains illegal characters: " + _arg1)); return; }; _local3++; }; } public static function disconnect():void{ if (((_connected) || (_connecting))){ if (_clip != null){ if (_clip.parent != null){ if ((_clip.parent is Sprite)){ Sprite(_clip.parent).removeChild(_clip); _clip = null; }; }; }; _connecting = (_connected = false); flush(true); try { _mochiLocalConnection.close(); } catch(error:Error) { }; }; if (_timer != null){ try { _timer.stop(); } catch(error:Error) { }; }; } public static function allowDomains(_arg1:String):String{ var _local2:String; if (Security.sandboxType != "application"){ Security.allowDomain("*"); Security.allowInsecureDomain("*"); }; if (_arg1.indexOf("http://") != -1){ _local2 = _arg1.split("/")[2].split(":")[0]; if (Security.sandboxType != "application"){ Security.allowDomain(_local2); Security.allowInsecureDomain(_local2); }; }; return (_local2); } public static function getVersion():String{ return ("3.7 as3"); } public static function doClose():void{ _container.removeEventListener(Event.ENTER_FRAME, MochiServices.bringToTop); } private static function flush(_arg1:Boolean):void{ var _local2:Object; var _local3:Object; if (((_clip) && (_clip._queue))){ while (_clip._queue.length > 0) { _local2 = _clip._queue.shift(); _local3 = null; if (_local2 != null){ if (_local2.callbackID != null){ _local3 = _clip._callbacks[_local2.callbackID]; }; delete _clip._callbacks[_local2.callbackID]; if (((_arg1) && (!((_local3 == null))))){ handleError(_local2.args, _local3.callbackObject, _local3.callbackMethod); }; }; }; }; } public static function get id():String{ return (_id); } private static function onEvent(_arg1:Object):void{ var _local2:String; var _local3:String; _local2 = _arg1.target; _local3 = _arg1.event; switch (_local2){ case "events": MochiEvents.triggerEvent(_arg1.event, _arg1.args); break; case "coins": MochiCoins.triggerEvent(_arg1.event, _arg1.args); break; case "sync": servicesSync.triggerEvent(_arg1.event, _arg1.args); break; }; } private static function urlOptions(_arg1:Object):Object{ var _local2:Object; var _local3:String; var _local4:Array; var _local5:Number; var _local6:Array; _local2 = {}; if (_arg1.stage){ _local3 = _arg1.stage.loaderInfo.parameters.mochiad_options; } else { _local3 = _arg1.loaderInfo.parameters.mochiad_options; }; if (_local3){ _local4 = _local3.split("&"); _local5 = 0; while (_local5 < _local4.length) { _local6 = _local4[_local5].split("="); _local2[unescape(_local6[0])] = unescape(_local6[1]); _local5++; }; }; return (_local2); } public static function setContainer(_arg1:Object=null, _arg2:Boolean=true):void{ if (_arg1 != null){ if ((_arg1 is Sprite)){ _container = _arg1; }; }; if (_arg2){ if ((_container is Sprite)){ Sprite(_container).addChild(_clip); }; }; } private static function handleError(_arg1:Object, _arg2:Object, _arg3:Object):void{ var args = _arg1; var callbackObject = _arg2; var callbackMethod = _arg3; if (args != null){ if (args.onError != null){ args.onError.apply(null, ["NotConnected"]); }; if (((!((args.options == null))) && (!((args.options.onError == null))))){ args.options.onError.apply(null, ["NotConnected"]); }; }; if (callbackMethod != null){ args = {}; args.error = true; args.errorCode = "NotConnected"; if (((!((callbackObject == null))) && ((callbackMethod is String)))){ try { var _local5 = callbackObject; _local5[callbackMethod](args); } catch(error:Error) { }; } else { if (callbackMethod != null){ try { callbackMethod.apply(args); } catch(error:Error) { }; }; }; }; } private static function loadError(_arg1:Object):void{ _clip._mochiad_ctr_failed = true; trace("MochiServices could not load."); MochiServices.disconnect(); MochiServices.onError("IOError"); } private static function initComChannels():void{ if (!_connected){ trace("[SERVICES_API] connected!"); _connecting = false; _connected = true; _mochiLocalConnection.send(_sendChannelName, "onReceive", {methodName:"handshakeDone"}); _mochiLocalConnection.send(_sendChannelName, "onReceive", {methodName:"registerGame", preserved:_preserved, id:_id, version:getVersion(), parentURL:_container.loaderInfo.loaderURL}); _clip.onReceive = onReceive; _clip.onEvent = onEvent; _clip.onError = function ():void{ MochiServices.onError("IOError"); }; while (_clip._queue.length > 0) { _mochiLocalConnection.send(_sendChannelName, "onReceive", _clip._queue.shift()); }; }; } private static function loadLCBridge(_arg1:Object):void{ var loader:Loader; var mochiLCURL:String; var req:URLRequest; var complete:Function; var clip = _arg1; loader = new Loader(); mochiLCURL = (_servURL + _mochiLC); req = new URLRequest(mochiLCURL); complete = function (_arg1:Object):void{ _mochiLocalConnection = MovieClip(loader.content); listen(); }; loader.contentLoaderInfo.addEventListener(Event.COMPLETE, complete); loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError); loader.load(req); clip.addChild(loader); } private static function listen():void{ _mochiLocalConnection.connect(_listenChannelName); _clip.handshake = function (_arg1:Object):void{ MochiServices.comChannelName = _arg1.newChannel; }; trace("Waiting for MochiAds services to connect..."); } public static function get clip():Object{ return (_container); } public static function set comChannelName(_arg1:String):void{ if (_arg1 != null){ if (_arg1.length > 3){ _sendChannelName = (_arg1 + "_fromgame"); initComChannels(); }; }; } private static function loadCommunicator(_arg1:String, _arg2:Object):MovieClip{ var _local3:String; var _local4:String; var _local5:URLRequest; var _local6:URLVariables; _local3 = ("_mochiservices_com_" + _arg1); if (_clip != null){ return (_clip); }; if (!MochiServices.isNetworkAvailable()){ return (null); }; if (urlOptions(_arg2).servURL){ _servURL = urlOptions(_arg2).servURL; }; _local4 = (_servURL + _services); if (urlOptions(_arg2).servicesURL){ _local4 = urlOptions(_arg2).servicesURL; }; _listenChannelName = (_listenChannelName + ((Math.floor(new Date().time) + "_") + Math.floor((Math.random() * 99999)))); MochiServices.allowDomains(_local4); _clip = createEmptyMovieClip(_arg2, _local3, 10336, false); loadLCBridge(_clip); _loader = new Loader(); _loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError); _local5 = new URLRequest(_local4); _local6 = new URLVariables(); _local6.listenLC = _listenChannelName; _local6.mochiad_options = _arg2.loaderInfo.parameters.mochiad_options; _local6.api_version = getVersion(); if (widget){ _local6.widget = true; }; _local5.data = _local6; _loader.load(_local5); _clip.addChild(_loader); _clip._mochiservices_com = _loader; _sendChannel = new LocalConnection(); _clip._queue = []; _clip._nextcallbackID = 0; _clip._callbacks = {}; _timer = new Timer(10000, 1); _timer.addEventListener(TimerEvent.TIMER, connectWait); _timer.start(); return (_clip); } public static function connect(_arg1:String, _arg2:Object, _arg3:Object=null):void{ var id = _arg1; var clip = _arg2; var onError = _arg3; warnID(id, false); if ((clip is DisplayObject)){ if (clip.stage == null){ trace("MochiServices connect requires the containing clip be attached to the stage"); }; if (((!(_connected)) && ((_clip == null)))){ trace("MochiServices Connecting..."); _connecting = true; init(id, clip); }; } else { trace("Error, MochiServices requires a Sprite, Movieclip or instance of the stage."); }; if (onError != null){ MochiServices.onError = onError; } else { if (MochiServices.onError == null){ MochiServices.onError = function (_arg1:String):void{ trace(_arg1); }; }; }; } public static function createEmptyMovieClip(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Boolean=true):MovieClip{ var mc:MovieClip; var parent = _arg1; var name = _arg2; var depth = _arg3; var doAdd = _arg4; mc = new MovieClip(); if (doAdd){ if (((false) && (depth))){ parent.addChildAt(mc, depth); } else { parent.addChild(mc); }; }; try { parent[name] = mc; } catch(e:Error) { throw (new Error("MochiServices requires a clip that is an instance of a dynamic class. If your class extends Sprite or MovieClip, you must make it dynamic.")); }; mc["_name"] = name; return (mc); } public static function bringToTop(_arg1:Event=null):void{ var e = _arg1; if (((!((MochiServices.clip == null))) && (!((MochiServices.childClip == null))))){ try { if (MochiServices.clip.numChildren > 1){ MochiServices.clip.setChildIndex(MochiServices.childClip, (MochiServices.clip.numChildren - 1)); }; } catch(errorObject:Error) { trace("Warning: Depth sort error."); _container.removeEventListener(Event.ENTER_FRAME, MochiServices.bringToTop); }; }; } public static function connectWait(_arg1:TimerEvent):void{ if (!_connected){ _clip._mochiad_ctr_failed = true; trace("MochiServices could not load. (timeout)"); MochiServices.disconnect(); MochiServices.onError("IOError"); }; } } }//package mochi.as3
Section 8
//MochiSocial (mochi.as3.MochiSocial) package mochi.as3 { public class MochiSocial { public static const LOGGED_IN:String = "LoggedIn"; public static const PROFILE_HIDE:String = "ProfileHide"; public static const NO_USER:String = "NoUser"; public static const PROPERTIES_SIZE:String = "PropertiesSize"; public static const IO_ERROR:String = "IOError"; public static const PROPERTIES_SAVED:String = "PropertySaved"; public static const WIDGET_LOADED:String = "WidgetLoaded"; public static const USER_INFO:String = "UserInfo"; public static const ERROR:String = "Error"; public static const LOGIN_SHOW:String = "LoginShow"; public static const LOGGED_OUT:String = "LoggedOut"; public static const PROFILE_SHOW:String = "ProfileShow"; public static const LOGIN_SHOWN:String = "LoginShown"; public static const LOGIN_HIDE:String = "LoginHide"; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); public static var _user_info:Object = null; public static function getVersion():String{ return (MochiServices.getVersion()); } public static function saveUserProperties(_arg1:Object):void{ MochiServices.send("coins_saveUserProperties", _arg1); } public static function get loggedIn():Boolean{ return (!((_user_info == null))); } public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } public static function getUserInfo():void{ MochiServices.send("coins_getUserInfo"); } public static function showLoginWidget(_arg1:Object=null):void{ MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("coins_showLoginWidget", {options:_arg1}); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } public static function requestLogin():void{ MochiServices.send("coins_requestLogin"); } public static function getAPIURL():String{ if (!_user_info){ return (null); }; return (_user_info.api_url); } public static function hideLoginWidget():void{ MochiServices.send("coins_hideLoginWidget"); } public static function getAPIToken():String{ if (!_user_info){ return (null); }; return (_user_info.api_token); } MochiSocial.addEventListener(MochiSocial.LOGGED_IN, function (_arg1:Object):void{ _user_info = _arg1; }); MochiSocial.addEventListener(MochiSocial.LOGGED_OUT, function (_arg1:Object):void{ _user_info = null; }); } }//package mochi.as3
Section 9
//MochiSync (mochi.as3.MochiSync) package mochi.as3 { import flash.utils.*; public dynamic class MochiSync extends Proxy { private var _syncContainer:Object; public static var SYNC_PROPERTY:String = "UpdateProperty"; public static var SYNC_REQUEST:String = "SyncRequest"; public function MochiSync():void{ _syncContainer = {}; } public function triggerEvent(_arg1:String, _arg2:Object):void{ switch (_arg1){ case SYNC_REQUEST: MochiServices.send("sync_syncronize", _syncContainer); break; case SYNC_PROPERTY: _syncContainer[_arg2.name] = _arg2.value; break; }; } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function getProperty(_arg1){ return (_syncContainer[_arg1]); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function setProperty(_arg1, _arg2):void{ var _local3:String; if (_syncContainer[_arg1] == _arg2){ return; }; _local3 = _arg1.toString(); _syncContainer[_local3] = _arg2; MochiServices.send("sync_propUpdate", {name:_local3, value:_arg2}); } } }//package mochi.as3
Section 10
//MochiUserData (mochi.as3.MochiUserData) package mochi.as3 { import flash.events.*; import flash.utils.*; import flash.net.*; public class MochiUserData extends EventDispatcher { public var callback:Function;// = null public var error:Event;// = null public var key:String;// = null public var operation:String;// = null public var data;// = null public var _loader:URLLoader; public function MochiUserData(_arg1:String="", _arg2:Function=null){ key = null; data = null; error = null; operation = null; callback = null; super(); this.key = _arg1; this.callback = _arg2; } public function securityErrorHandler(_arg1:SecurityErrorEvent):void{ errorHandler(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, ("security error: " + _arg1.toString()))); } public function putEvent(_arg1):void{ request("put", serialize(_arg1)); } public function request(_arg1:String, _arg2:ByteArray):void{ var api_url:String; var api_token:String; var args:URLVariables; var req:URLRequest; var _operation = _arg1; var _data = _arg2; operation = _operation; api_url = MochiSocial.getAPIURL(); api_token = MochiSocial.getAPIToken(); if ((((api_url == null)) || ((api_token == null)))){ errorHandler(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, "not logged in")); return; }; _loader = new URLLoader(); args = new URLVariables(); args.op = _operation; args.key = key; req = new URLRequest((((MochiSocial.getAPIURL() + "/") + "MochiUserData?") + args.toString())); req.method = URLRequestMethod.POST; req.contentType = "application/x-mochi-userdata"; req.requestHeaders = [new URLRequestHeader("x-mochi-services-version", MochiServices.getVersion()), new URLRequestHeader("x-mochi-api-token", api_token)]; req.data = _data; _loader.dataFormat = URLLoaderDataFormat.BINARY; _loader.addEventListener(Event.COMPLETE, completeHandler); _loader.addEventListener(IOErrorEvent.IO_ERROR, errorHandler); _loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler); try { _loader.load(req); } catch(e:SecurityError) { errorHandler(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, ("security error: " + e.toString()))); }; } public function performCallback():void{ try { callback(this); } catch(e:Error) { trace(("[MochiUserData] exception during callback: " + e)); }; } public function serialize(_arg1):ByteArray{ var _local2:ByteArray; _local2 = new ByteArray(); _local2.objectEncoding = ObjectEncoding.AMF3; _local2.writeObject(_arg1); _local2.compress(); return (_local2); } public function errorHandler(_arg1:IOErrorEvent):void{ data = null; error = _arg1; if (callback != null){ performCallback(); } else { dispatchEvent(_arg1); }; close(); } public function completeHandler(_arg1:Event):void{ var event = _arg1; try { if (_loader.data.length){ data = deserialize(_loader.data); } else { data = null; }; } catch(e:Error) { errorHandler(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, ("deserialize error: " + e.toString()))); return; }; if (callback != null){ performCallback(); } else { dispatchEvent(event); }; close(); } public function getEvent():void{ request("get", serialize(null)); } override public function toString():String{ return ((((((((("[MochiUserData operation=" + operation) + " key=\"") + key) + "\" data=") + data) + " error=\"") + error) + "\"]")); } public function close():void{ if (_loader){ _loader.removeEventListener(Event.COMPLETE, completeHandler); _loader.removeEventListener(IOErrorEvent.IO_ERROR, errorHandler); _loader.removeEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler); _loader.close(); _loader = null; }; error = null; callback = null; } public function deserialize(_arg1:ByteArray){ _arg1.objectEncoding = ObjectEncoding.AMF3; _arg1.uncompress(); return (_arg1.readObject()); } public static function get(_arg1:String, _arg2:Function):void{ var _local3:MochiUserData; _local3 = new MochiUserData(_arg1, _arg2); _local3.getEvent(); } public static function put(_arg1:String, _arg2, _arg3:Function):void{ var _local4:MochiUserData; _local4 = new MochiUserData(_arg1, _arg3); _local4.putEvent(_arg2); } } }//package mochi.as3
Section 11
//asDSsndButtoncopy_66 (spiderman_fla.asDSsndButtoncopy_66) package spiderman_fla { import flash.display.*; public dynamic class asDSsndButtoncopy_66 extends MovieClip { public var sndon:SimpleButton; public var sndoff:MovieClip; public function asDSsndButtoncopy_66(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ stop(); } } }//package spiderman_fla
Section 12
//asDSsound_but_village_70 (spiderman_fla.asDSsound_but_village_70) package spiderman_fla { import flash.display.*; public dynamic class asDSsound_but_village_70 extends MovieClip { public var Line:MovieClip; } }//package spiderman_fla
Section 13
//Symbol1_101 (spiderman_fla.Symbol1_101) package spiderman_fla { import flash.display.*; public dynamic class Symbol1_101 extends MovieClip { public function Symbol1_101(){ addFrameScript(12, frame13); } function frame13(){ stop(); } } }//package spiderman_fla
Section 14
//BgSound1 (BgSound1) package { import flash.media.*; public dynamic class BgSound1 extends Sound { } }//package
Section 15
//BgSound2 (BgSound2) package { import flash.media.*; public dynamic class BgSound2 extends Sound { } }//package
Section 16
//BgSound3 (BgSound3) package { import flash.media.*; public dynamic class BgSound3 extends Sound { } }//package
Section 17
//CongratsSound (CongratsSound) package { import flash.media.*; public dynamic class CongratsSound extends Sound { } }//package
Section 18
//CorrectSound (CorrectSound) package { import flash.media.*; public dynamic class CorrectSound extends Sound { } }//package
Section 19
//lense (lense) package { import flash.display.*; public dynamic class lense extends MovieClip { } }//package
Section 20
//LevelUpSound (LevelUpSound) package { import flash.media.*; public dynamic class LevelUpSound extends Sound { } }//package
Section 21
//Minus (Minus) package { import flash.display.*; public dynamic class Minus extends MovieClip { public function Minus(){ addFrameScript(13, frame14); } function frame14(){ stop(); } } }//package
Section 22
//MochiBot (MochiBot) package { import flash.display.*; import flash.net.*; import flash.system.*; public dynamic class MochiBot extends Sprite { public static function track(_arg1:Sprite, _arg2:String):MochiBot{ var _local3:MochiBot; var _local4:String; var _local5:URLVariables; var _local6:String; var _local7:URLRequest; var _local8:Loader; if (Security.sandboxType == "localWithFile"){ return (null); }; _local3 = new (MochiBot); _arg1.addChild(_local3); Security.allowDomain("*"); Security.allowInsecureDomain("*"); _local4 = "http://core.mochibot.com/my/core.swf"; _local5 = new URLVariables(); _local5["sb"] = Security.sandboxType; _local5["v"] = Capabilities.version; _local5["swfid"] = _arg2; _local5["mv"] = "8"; _local5["fv"] = "9"; _local6 = _local3.root.loaderInfo.loaderURL; if (_local6.indexOf("http") == 0){ _local5["url"] = _local6; } else { _local5["url"] = "local"; }; _local7 = new URLRequest(_local4); _local7.contentType = "application/x-www-form-urlencoded"; _local7.method = URLRequestMethod.POST; _local7.data = _local5; _local8 = new Loader(); _local3.addChild(_local8); _local8.load(_local7); return (_local3); } } }//package
Section 23
//RightAnimation (RightAnimation) package { import flash.display.*; public dynamic class RightAnimation extends MovieClip { } }//package
Section 24
//Similarities (Similarities) package { import flash.display.*; import flash.events.*; import mochi.as3.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.text.*; import flash.ui.*; public dynamic class Similarities extends MovieClip { public var backBut:SimpleButton; var secs1:String; public var timeCount:Number;// = 0 public var sc:SoundChannel; var mins:Number; public var gameScorText5:TextField; var i:Number; public var minus:Minus; public var moreGames:SimpleButton; public var o:Object; public var timingScore:Number;// = 0 var secs:Number; public var wrongSnd:WrongSound; public var gameCompleted:Boolean;// = false public var boardID:String; public var countArray:Array; public var nextBut:SimpleButton; public var levelSoundChannel:SoundChannel; public var percentage:TextField; public var correctSnd:CorrectSound; public var contestMenu:ContextMenu; public var playBut:SimpleButton; public var bgSoundArray:Array; public var correctCount:Number;// = 0 public var loaders:MovieClip; public var rightAnimation:RightAnimation; public var countText:TextField; public var scoreText:TextField; public var soundBut:MovieClip; public var lens:lense; public var left2:MovieClip; public var left4:MovieClip; public var left5:MovieClip; public var levelUpSound:LevelUpSound; public var left3:MovieClip; public var totalItems:Number;// = 5 public var logoload:SimpleButton; public var left1:MovieClip; var winDelay:Number; public var cars:MovieClip; public var scoreText2:TextField; public var level_txt:TextField; public var congratsSound:CongratsSound; public var animationArray:Array; public var timer:Timer; public var scoreText3:TextField; public var pauseBoolean:Boolean;// = false public var soundToggle:Boolean;// = true public var wrongCount:Number;// = 0 public var levelScore:Number;// = 0 public var right1:MovieClip; public var right3:MovieClip; public var right4:MovieClip; public var right5:MovieClip; public var timeText:TextField; public var right2:MovieClip; public var spotFound:Boolean;// = false public var bgSound1:BgSound1; public var bgSound2:BgSound2; public var bgSound3:BgSound3; public var logo:SimpleButton; public var gameScore:Number;// = 0 public var contextmenuItem:ContextMenuItem; public var levelNumber:Number;// = 1 var mins1:String; public function Similarities(){ levelNumber = 1; totalItems = 5; correctCount = 0; wrongCount = 0; sc = new SoundChannel(); timeCount = 0; timingScore = 0; levelScore = 0; gameScore = 0; timer = new Timer(1000, 0); pauseBoolean = false; soundToggle = true; gameCompleted = false; spotFound = false; animationArray = new Array(); countArray = ["", "One", "Two", "Three", "Four", "Five"]; bgSound1 = new BgSound1(); bgSound2 = new BgSound2(); bgSound3 = new BgSound3(); bgSoundArray = ["", bgSound1, bgSound2, bgSound3]; correctSnd = new CorrectSound(); wrongSnd = new WrongSound(); super(); addFrameScript(0, frame1, 2, frame3, 4, frame5, 8, frame9, 9, frame10, 10, frame11, 14, frame15, 18, frame19); addEventListener("gameCode", gameFun); } public function moregmbtfn(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.123chase.com"), "_blank"); } private function gameFun(_arg1:Event):void{ init(); timer.addEventListener(TimerEvent.TIMER, getTime); timer.start(); logo.addEventListener(MouseEvent.CLICK, gotoSite); stage.addEventListener(MouseEvent.CLICK, clickHandler); stage.addEventListener(MouseEvent.MOUSE_MOVE, moveLens); soundBut.addEventListener(MouseEvent.CLICK, muteSound); } public function gotoNextLevel(_arg1:MouseEvent):void{ reset(); levelSoundChannel.stop(); this.gotoAndStop(("l" + levelNumber)); } public function loading123chase(_arg1:Event):void{ var _local2:Number; var _local3:Number; var _local4:Number; _local2 = loaderInfo.bytesLoaded; _local3 = loaderInfo.bytesTotal; _local4 = Math.round(((_local2 / _local3) * 100)); trace(_local4); percentage.text = (_local4.toString() + "%"); cars.gotoAndStop((_local4 * 3)); if (_local2 == _local3){ stage.removeEventListener(Event.ENTER_FRAME, loading123chase); stage.removeEventListener(MouseEvent.CLICK, chase); gotoAndStop("start"); }; } function frame10(){ stop(); level_txt.text = levelNumber.toString(); dispatchEvent(new Event("gameCode")); } function frame15(){ stop(); levelNumber = (levelNumber + 1); scoreText2.selectable = false; scoreText2.text = levelScore.toString(); gameScorText5.selectable = false; gameScorText5.text = gameScore.toString(); nextBut.addEventListener(MouseEvent.CLICK, gotoNextLevel); levelSoundChannel = new SoundChannel(); levelUpSound = new LevelUpSound(); if (soundToggle){ levelSoundChannel = levelUpSound.play(0, 1); }; } function frame1(){ stop(); contestMenu = new ContextMenu(); contestMenu.hideBuiltInItems(); logoload.addEventListener(MouseEvent.CLICK, logofnload); stage.addEventListener(MouseEvent.CLICK, chase); contextmenuItem = new ContextMenuItem("www.123chase.com"); contextmenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, Site); contestMenu.customItems.push(contextmenuItem); this.contextMenu = contestMenu; stage.addEventListener(Event.ENTER_FRAME, loading123chase); } function frame3(){ stop(); stage.focus = this; playBut.addEventListener(MouseEvent.CLICK, clickStart); } public function clickback(_arg1:MouseEvent):void{ this.gotoAndStop("l1"); } public function moveLens(_arg1:MouseEvent):void{ _arg1.updateAfterEvent(); lens.y = mouseY; if (mouseX > 316){ lens.x = (mouseX - 316); } else { lens.x = (mouseX + 316); }; if (mouseY > 420){ lens.y = 418; }; } function frame9(){ MochiBot.track(this, "3bd0c200"); stop(); level_txt.text = levelNumber.toString(); dispatchEvent(new Event("gameCode")); } function frame19(){ stop(); scoreText3.selectable = false; scoreText3.text = gameScore.toString(); congratsSound = new CongratsSound(); if (soundToggle){ congratsSound.play(0, 1); }; MochiServices.connect("00100fc430ee078e", root); o = {n:[5, 3, 9, 11, 1, 10, 0, 6, 8, 4, 9, 4, 0, 3, 10, 2], f:function (_arg1:Number, _arg2:String):String{ if (_arg2.length == 16){ return (_arg2); }; return (this.f((_arg1 + 1), (_arg2 + this.n[_arg1].toString(16)))); }}; boardID = o.f(0, ""); MochiScores.showLeaderboard({boardID:boardID, score:gameScore.toString()}); moreGames.addEventListener(MouseEvent.CLICK, moregmbtfn); } function frame5(){ stop(); backBut.addEventListener(MouseEvent.CLICK, clickback); } public function muteSound(_arg1:MouseEvent):void{ if (pauseBoolean == false){ if (soundToggle){ soundBut.gotoAndStop(2); sc.stop(); soundToggle = false; } else { soundBut.gotoAndStop(1); sc = bgSoundArray[levelNumber].play(0, int.MAX_VALUE); soundToggle = true; }; }; } public function addListeners(){ timer.start(); logo.addEventListener(MouseEvent.CLICK, gotoSite); timer.addEventListener(TimerEvent.TIMER, getTime); stage.addEventListener(MouseEvent.CLICK, clickHandler); stage.addEventListener(MouseEvent.MOUSE_MOVE, moveLens); } public function clickHandler(_arg1:MouseEvent):void{ trace(_arg1.target.name); i = 1; while (i <= totalItems) { trace(("vvvvv" + _arg1.target.name)); if ((((_arg1.target.name == String(("right" + i)))) || ((_arg1.target.name == String(("left" + i)))))){ this[("right" + i)].mouseEnabled = false; this[("left" + i)].mouseEnabled = false; this[("right" + i)].mouseEnabled = false; this[("left" + i)].mouseEnabled = false; if (soundToggle){ correctSnd.play(0, 1); }; spotFound = true; correctCount++; levelScore = (levelScore + 50); if ((totalItems - correctCount) > 0){ countText.text = countArray[(totalItems - correctCount)]; } else { countText.text = ""; }; rightAnimation = new RightAnimation(); addChildAt(rightAnimation, (getChildIndex(lens) - 1)); rightAnimation.x = this[("right" + i)].x; rightAnimation.y = this[("right" + i)].y; animationArray.push(rightAnimation); rightAnimation = new RightAnimation(); addChildAt(rightAnimation, (getChildIndex(lens) - 1)); rightAnimation.x = this[("left" + i)].x; rightAnimation.y = this[("left" + i)].y; animationArray.push(rightAnimation); break; }; i++; }; if (spotFound == false){ if (mouseY < 420){ if (levelScore > 0){ levelScore = (levelScore - 25); }; if (soundToggle){ wrongSnd.play(0, 1); }; minus = new Minus(); addChild(minus); minus.x = mouseX; minus.y = mouseY; }; }; if (correctCount == totalItems){ remove(); winDelay = setInterval(gameWon, 2000); }; scoreText.text = levelScore.toString(); spotFound = false; } function frame11(){ stop(); level_txt.text = levelNumber.toString(); dispatchEvent(new Event("gameCode")); } public function remove(){ timer.stop(); sc.stop(); lens.parent.removeChild(lens); logo.removeEventListener(MouseEvent.CLICK, gotoSite); timer.removeEventListener(TimerEvent.TIMER, getTime); stage.removeEventListener(MouseEvent.CLICK, clickHandler); stage.removeEventListener(MouseEvent.MOUSE_MOVE, moveLens); } public function init():void{ soundBut.mouseChildren = false; soundBut.buttonMode = true; timeText.selectable = false; scoreText.selectable = false; countText.selectable = false; timeText.text = "00:00"; scoreText.text = "0"; countText.text = "Five"; if (soundToggle){ sc = bgSoundArray[levelNumber].play(0, int.MAX_VALUE); soundBut.gotoAndStop(1); } else { soundBut.gotoAndStop(2); }; } public function logofnload(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.123chase.com"), "_blank"); } public function gameWon():void{ i = 0; while (i < animationArray.length) { animationArray[i].parent.removeChild(animationArray[i]); i++; }; animationArray = []; soundBut.removeEventListener(MouseEvent.CLICK, muteSound); timingScore = ((10 / timingScore) * 500); levelScore = (levelScore + (Math.round((timingScore / 10)) * 10)); gameScore = (gameScore + levelScore); clearInterval(winDelay); if (levelNumber < 3){ trace("levelup"); this.gotoAndPlay("levelUp"); } else { trace("gameover"); gameCompleted = true; this.gotoAndPlay("gameOver"); }; } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123chase.com"); navigateToURL(_local2, "_blank"); } function getTime(_arg1:TimerEvent):void{ timeCount = (timeCount + 1); timingScore++; secs = Math.floor((timeCount % 60)); mins = Math.floor((timeCount / 60)); if (String(secs).length == 1){ secs1 = ("0" + secs); } else { secs1 = String(secs); }; if (String(mins).length == 1){ mins1 = ("0" + mins); } else { mins1 = String(mins); }; timeText.text = ((mins1 + ":") + secs1); } public function reset(){ correctCount = 0; wrongCount = 0; levelScore = 0; timeCount = 0; timingScore = 0; gameCompleted = false; spotFound = false; pauseBoolean = false; } public function gotoSite(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.123chase.com"), "_blank"); } public function clickStart(_arg1:MouseEvent):void{ this.gotoAndStop("inst"); } public function chase(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.123chase.com"), "_blank"); } } }//package
Section 25
//WrongSound (WrongSound) package { import flash.media.*; public dynamic class WrongSound extends Sound { } }//package

Library Items

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

Instance Names

"logoload"Frame 1Symbol 56 Button
"loaders"Frame 1Symbol 73 MovieClip
"cars"Frame 1Symbol 119 MovieClip
"percentage"Frame 1Symbol 121 EditableText
"playBut"Frame 3Symbol 130 Button
"backBut"Frame 5Symbol 148 Button
"right4"Frame 9Symbol 153 MovieClip
"left4"Frame 9Symbol 153 MovieClip
"left1"Frame 9Symbol 155 MovieClip
"right1"Frame 9Symbol 155 MovieClip
"right2"Frame 9Symbol 157 MovieClip
"left2"Frame 9Symbol 157 MovieClip
"left5"Frame 9Symbol 159 MovieClip
"right5"Frame 9Symbol 159 MovieClip
"left3"Frame 9Symbol 161 MovieClip
"right3"Frame 9Symbol 161 MovieClip
"timeText"Frame 9Symbol 165 EditableText
"scoreText"Frame 9Symbol 166 EditableText
"countText"Frame 9Symbol 168 EditableText
"soundBut"Frame 9Symbol 178 MovieClip {spiderman_fla.asDSsndButtoncopy_66}
"logo"Frame 9Symbol 189 Button
"level_txt"Frame 9Symbol 193 EditableText
"lens"Frame 9Symbol 30 MovieClip {lense}
"left1"Frame 10Symbol 198 MovieClip
"left4"Frame 10Symbol 200 MovieClip
"right4"Frame 10Symbol 200 MovieClip
"right3"Frame 10Symbol 202 MovieClip
"right2"Frame 10Symbol 204 MovieClip
"left2"Frame 10Symbol 204 MovieClip
"left5"Frame 10Symbol 206 MovieClip
"right1"Frame 10Symbol 198 MovieClip
"left3"Frame 10Symbol 202 MovieClip
"right5"Frame 10Symbol 206 MovieClip
"left5"Frame 11Symbol 212 MovieClip
"right5"Frame 11Symbol 212 MovieClip
"right2"Frame 11Symbol 215 MovieClip
"left2"Frame 11Symbol 215 MovieClip
"right4"Frame 11Symbol 217 MovieClip
"left4"Frame 11Symbol 217 MovieClip
"right3"Frame 11Symbol 220 MovieClip
"left3"Frame 11Symbol 220 MovieClip
"right1"Frame 11Symbol 222 MovieClip
"left1"Frame 11Symbol 222 MovieClip
"nextBut"Frame 15Symbol 235 Button
"scoreText2"Frame 15Symbol 236 EditableText
"gameScorText5"Frame 15Symbol 237 EditableText
"moreGames"Frame 19Symbol 249 Button
"scoreText3"Frame 19Symbol 252 EditableText
"Line"Symbol 177 MovieClip {spiderman_fla.asDSsound_but_village_70} Frame 1Symbol 176 MovieClip
"sndon"Symbol 178 MovieClip {spiderman_fla.asDSsndButtoncopy_66} Frame 1Symbol 174 Button
"sndoff"Symbol 178 MovieClip {spiderman_fla.asDSsndButtoncopy_66} Frame 2Symbol 177 MovieClip {spiderman_fla.asDSsound_but_village_70}

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata not present, AS3.

Labels

"loader"Frame 1
"start"Frame 3
"inst"Frame 5
"l1"Frame 9
"l2"Frame 10
"l3"Frame 11
"levelUp"Frame 15
"gameOver"Frame 19




http://swfchan.com/23/113587/info.shtml
Created: 11/3 -2019 13:51:52 Last modified: 11/3 -2019 13:51:52 Server time: 19/05 -2024 02:57:55