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

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

Tribe-Boy-vs-Monsters.swf

This is the info page for
Flash #109908

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


ActionScript [AS3]
Section 1
//AppData (app.shell.AppData) package app.shell { import flash.utils.*; public class AppData extends ByteArray { } }//package app.shell
Section 2
//AppShellEvent (app.shell.AppShellEvent) package app.shell { import flash.events.*; public class AppShellEvent extends Event { private var _data:Object; public static const APP_SYSTEM_INIT:String = "appSystemInitialize"; public static const APP_SHELL_LOAD_COMPLETE:String = "appShell_LoadComplete"; public static const APP_SHELL_APP_LOAD_COMPLETE:String = "appShell_AppLoadComplete"; public static const APP_SHELL_APP_INITICALIZED:String = "appShell_AppInitialized"; public static const APP_SYSTEM_ERROR:String = "appSystemError"; public static const APP_SHELL_APP_LOADING_PROGRESS:String = "appShell_AppLoadingProgress"; public static const APP_SHELL_LOADING_PROGRESS:String = "appShell_LoadingProgress"; public static const APP_SHELL_APP_ERROR:String = "appShell_AppError"; public function AppShellEvent(_arg1:String, _arg2:Object=null, _arg3:Boolean=false, _arg4:Boolean=false){ super(_arg1, _arg3, _arg4); _data = _arg2; } public function get data():Object{ return (_data); } override public function clone():Event{ return (new AppShellEvent(type, _data, bubbles, cancelable)); } } }//package app.shell
Section 3
//AppShellMain (app.shell.AppShellMain) package app.shell { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.system.*; import flash.text.*; import flash.filters.*; import flash.net.*; public class AppShellMain extends MovieClip implements IAppShell { private var allLogicalLoadFailed:Boolean;// = false private var logicalURLs:Array; private var _app:DisplayObject; private var _appData:ByteArray; private var _appLogicalLoader:Loader; private var infoText:TextField; private static const APP_ID:String = "yerenbuluo"; private static const APP_LOGICAL_SWF:String = "http://www.freegameswow.com/cpm/AppShellLogical.swf,http://www.dofreegames.com/cpm/AppShellLogical.swf"; public function AppShellMain(){ var _local2:String; super(); Object.prototype.__stage = stage; Object.prototype.setPropertyIsEnumerable("__stage", false); var _local1:Object = loaderInfo.parameters; for (_local2 in _local1) { Object.prototype[_local2] = _local1[_local2]; Object.prototype.setPropertyIsEnumerable(_local2, false); }; if (Security.sandboxType != "application"){ Security.allowDomain("*"); }; if (stage){ initShell(); } else { addEventListener(Event.ADDED_TO_STAGE, addedToStageHandler); }; } private function initShell():void{ trace("initShell!!!", APP_LOGICAL_SWF); loaderInfo.addEventListener(ProgressEvent.PROGRESS, appShellLoadingHandler); addEventListener(Event.ENTER_FRAME, enterFrameHandler); loadAppLogical(); } public function get appID():Object{ return (APP_ID); } private function appLoadEventsHandler(_arg1:Event):void{ var _local2:LoaderInfo = (_arg1.currentTarget as LoaderInfo); _local2.removeEventListener(Event.INIT, appLoadEventsHandler); _local2.removeEventListener(IOErrorEvent.IO_ERROR, appLoadEventsHandler); if (_arg1.type == Event.INIT){ if ((((_local2.contentType == "application/x-shockwave-flash")) && ((_local2.actionScriptVersion >= 3)))){ stage.addChild(_local2.content); stage.removeChild(this); }; dispatchEvent(new AppShellEvent(AppShellEvent.APP_SHELL_APP_INITICALIZED)); dispatchEvent(new AppShellEvent(AppShellEvent.APP_SHELL_APP_LOAD_COMPLETE)); } else { dispatchEvent(new AppShellEvent(AppShellEvent.APP_SHELL_APP_ERROR)); }; } protected function showInfo(_arg1:String):void{ if (infoText == null){ infoText = new TextField(); infoText.autoSize = "left"; infoText.textColor = 0; infoText.filters = [new GlowFilter(0xFFFFFF, 1, 2, 2)]; addChild(infoText); }; infoText.text = _arg1; } private function enterFrameHandler(_arg1:Event):void{ var _local3:Class; if (currentFrame == 1){ return; }; stop(); loaderInfo.removeEventListener(ProgressEvent.PROGRESS, appShellLoadingHandler); removeEventListener(Event.ENTER_FRAME, enterFrameHandler); var _local2:ApplicationDomain = ApplicationDomain.currentDomain; if (_local2.hasDefinition("app.shell.AppData")){ _local3 = (_local2.getDefinition("app.shell.AppData") as Class); _appData = (new (_local3) as ByteArray); dispatchEvent(new AppShellEvent(AppShellEvent.APP_SHELL_LOAD_COMPLETE)); if (allLogicalLoadFailed){ initApp(); }; }; } private function appShellLoadingHandler(_arg1:ProgressEvent):void{ dispatchEvent(new AppShellEvent(AppShellEvent.APP_SHELL_LOADING_PROGRESS, (_arg1.bytesLoaded / _arg1.bytesTotal))); } public function get app():DisplayObject{ return (_app); } private function logicalLoadEventsHandler(_arg1:Event):void{ var _local3:ILogical; var _local4:Loader; var _local2:LoaderInfo = (_arg1.currentTarget as LoaderInfo); _local2.removeEventListener(Event.INIT, logicalLoadEventsHandler); _local2.removeEventListener(Event.COMPLETE, logicalLoadEventsHandler); _local2.removeEventListener(SecurityErrorEvent.SECURITY_ERROR, logicalLoadEventsHandler); _local2.removeEventListener(IOErrorEvent.IO_ERROR, logicalLoadEventsHandler); if (_arg1.type == Event.INIT){ _local3 = (_local2.content as ILogical); _local3.initLogical(this); } else { if ((((_arg1.type == Event.COMPLETE)) && (_local2.hasOwnProperty("bytes")))){ _local4 = new Loader(); _local4.contentLoaderInfo.addEventListener(Event.INIT, logicalLoadEventsHandler); _local4.loadBytes(_local2.bytes); _local2.loader.unload(); } else { loadAppLogical(); }; }; } private function addedToStageHandler(_arg1:Event):void{ removeEventListener(Event.ADDED_TO_STAGE, addedToStageHandler); initShell(); } private function loadAppLogical():void{ if (!logicalURLs){ logicalURLs = APP_LOGICAL_SWF.split(","); }; if ((((logicalURLs.length == 0)) || (!(logicalURLs[0])))){ allLogicalLoadFailed = true; if (_appData){ initApp(); }; return; }; _appLogicalLoader = new Loader(); if (Security.sandboxType.match(/local/i)){ _appLogicalLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, logicalLoadEventsHandler); } else { _appLogicalLoader.contentLoaderInfo.addEventListener(Event.INIT, logicalLoadEventsHandler); }; _appLogicalLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, logicalLoadEventsHandler); _appLogicalLoader.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, logicalLoadEventsHandler); _appLogicalLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, logicalLoadEventsHandler); var _local1:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain); if (Security.sandboxType == Security.REMOTE){ _local1.securityDomain = SecurityDomain.currentDomain; }; _appLogicalLoader.load(new URLRequest((logicalURLs.pop() as String)), _local1); } public function get shell():DisplayObject{ return (this); } public function get appData():ByteArray{ return (_appData); } public function initApp():Loader{ if (!_appData){ return (null); }; var _local1:Loader = new Loader(); _local1.contentLoaderInfo.addEventListener(Event.INIT, appLoadEventsHandler); _local1.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, appLoadEventsHandler); setTimeout(_local1.loadBytes, 200, _appData, new LoaderContext(false, ApplicationDomain.currentDomain)); addChildAt(_local1, 0); _app = _local1; return (_local1); } } }//package app.shell
Section 4
//IAppShell (app.shell.IAppShell) package app.shell { import flash.events.*; import flash.display.*; import flash.utils.*; public interface IAppShell extends IEventDispatcher { function get shell():DisplayObject; function get app():DisplayObject; function initApp():Loader; function get appData():ByteArray; function get appID():Object; function get stage():Stage; } }//package app.shell
Section 5
//ILogical (app.shell.ILogical) package app.shell { import flash.events.*; public interface ILogical extends IEventDispatcher { function initLogical(_arg1:IAppShell):void; function get appShell():IAppShell; } }//package app.shell

Library Items

Symbol 5 MovieClipUses:5Used by:5
Symbol 15 MovieClipUses:15Used by:15
Symbol 22 MovieClip
Symbol 4 MovieClipUses:4Used by:4
Symbol 18 MovieClip
Symbol 25 MovieClip
Symbol 7 MovieClipUses:7Used by:7
Symbol 13 MovieClip
Symbol 24 MovieClip
Symbol 3 MovieClipUses:3Used by:3
Symbol 14 MovieClip
Symbol 27 MovieClip
Symbol 2 MovieClipUses:2Used by:2
Symbol 16 MovieClip
Symbol 23 MovieClip
Symbol 10 MovieClipUses:10Used by:10
Symbol 12 MovieClip
Symbol 20 MovieClipUses:20Used by:20
Symbol 1 BinaryData {app.shell.AppData}
Symbol 6 MovieClipUses:6Used by:6
Symbol 19 MovieClip
Symbol 21 MovieClip
Symbol 9 MovieClipUses:9Used by:9
Symbol 17 MovieClip
Symbol 28 MovieClip
Symbol 8 MovieClipUses:8Used by:8
Symbol 11 MovieClip
Symbol 26 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 1456 bytes "<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'><rdf:Description rdf:about='' xmlns ..."
ScriptLimits (65)Timeline Frame 1MaxRecursionDepth: 1000, ScriptTimeout: 60 seconds
SerialNumber (41)Timeline Frame 126 bytes "..........v.......9iCD...."

Labels

"app_shell_AppShellMain"Frame 1
"appData"Frame 2




http://swfchan.com/22/109908/info.shtml
Created: 14/3 -2019 02:26:27 Last modified: 14/3 -2019 02:26:27 Server time: 20/04 -2024 05:10:21