=================================================================================================== LayerManager: ------------- public function loadModule(module:String, args:Object):Void public function registerModule(module:Object):Void [Called by Module class] public function removeModule(module:Object, args:Object):Void public function clearToMain():Void args:Object Properties: ----------------------- skipTransition:Boolean true == Don't use TransitionManager. popup:Boolean true == Close when a module loads over it. noAutoClose:Boolean true == ? allowMultiple:Boolean true == Means more than one instance of a module may exist. group:String Such as "main" for the main module and control panel. Or a module and it's popups. moduleArgs:Object Data to pass to the module being loaded. clearModules:Array Array of modules to clear if this modules is loaded. alwaysOnTop:Boolean true == this module should swapDepths with any module that tries to load above it. For ads and such. // Potential Methods // public function getActiveModule():Object public function getModuleName(module:Object):String public function getModuleObj(module:String):Array // Array of module objects. Layer Types: ------------ modules -- Generic module. popups -- Opened by other modules typically with a see through background and close box in the upper right corner. angels -- Help angels =================================================================================================== SystemManager: -------------- public function delete(fileName:String):Boolean // true == success public function download(url:String, listener:Object):DownloadObject public function read(fileName:String):String public function write(fileName:String, data:String):Boolean // true == success =================================================================================================== DownloadObject: --------------- public function onLoad(event:Object):Void public function onProgress(event:Object):Void public function onStart(event:Object):Void public function onStatus(event:Object):Void