/** * VERSION: 1.87 * DATE: 2011-07-30 * AS3 * UPDATES AND DOCS AT: http://www.greensock.com/loadermax/ **/ package com.greensock.events { import flash.events.Event; /** * An Event dispatched by one of the loaders in the LoaderMax system. *

* * Copyright 2011, GreenSock. All rights reserved. This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership. * * @author Jack Doyle, jack@greensock.com */ public class LoaderEvent extends Event { /** Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children begins loading. **/ public static const CHILD_OPEN:String="childOpen"; /** Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children dispatches a PROGRESS Event. **/ public static const CHILD_PROGRESS:String="childProgress"; /** Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children aborts its loading. This can happen when the loader fails, when cancel() is manually called, or when another loader is prioritized in the loading queue. **/ public static const CHILD_CANCEL:String="childCancel"; /** Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children finishes loading. **/ public static const CHILD_COMPLETE:String="childComplete"; /** Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children fails to load. **/ public static const CHILD_FAIL:String="childFail"; /** Dispatched when the loader begins loading, like when its load() method is called. **/ public static const OPEN:String="open"; /** Dispatched when the loader's bytesLoaded changes. **/ public static const PROGRESS:String="progress"; /** Dispatched when the loader aborts its loading. This can happen when the loader fails, when cancel() is manually called, or when another loader is prioritized in the loading queue. **/ public static const CANCEL:String="cancel"; /** Dispatched when the loader fails. **/ public static const FAIL:String="fail"; /** Dispatched when the loader initializes which means different things for different loaders. For example, a SWFLoader dispatches INIT when it downloads enough of the swf to render the first frame. When a VideoLoader receives MetaData, it dispatches its INIT event, as does an MP3Loader when it receives ID3 data. See the docs for each class for specifics. **/ public static const INIT:String="init"; /** Dispatched when the loader finishes loading. **/ public static const COMPLETE:String="complete"; /** Dispatched when the loader (or one of its children) receives an HTTP_STATUS event (see Adobe docs for specifics). **/ public static const HTTP_STATUS:String="httpStatus"; /** When script access is denied for a particular loader (like if an ImageLoader or SWFLoader tries loading from another domain and the crossdomain.xml file is missing or doesn't grant permission properly), a SCRIPT_ACCESS_DENIED LoaderEvent will be dispatched. **/ public static const SCRIPT_ACCESS_DENIED:String="scriptAccessDenied"; /** Dispatched when the loader (or one of its children) throws any error, like an IO_ERROR or SECURITY_ERROR. **/ public static const ERROR:String="error"; /** Dispatched when the the loader (or one of its children) encounters an IO_ERROR (typically when it cannot find the file at the specified url). **/ public static const IO_ERROR:String="ioError"; /** Dispatched when the loader (or one of its children) encounters a SECURITY_ERROR (see Adobe's docs for details). **/ public static const SECURITY_ERROR:String="securityError"; /** Dispatched when a swf that's loaded by a SWFLoader encounters an UncaughtErrorEvent which is basically any Error that gets thrown outside of a try...catch statement. This can be useful when subloading swfs from a 3rd party that may contain errors. However, UNCAUGHT_ERROR events will only be dispatched if the parent swf is published for Flash Player 10.1 or later! See SWFLoader's suppressUncaughtErrors special property if you'd like to have it automatically suppress these errors. The original UncaughtErrorEvent is stored in the LoaderEvent's data property. So, for example, if you'd like to call preventDefault() on that event, you'd do myLoaderEvent.data.preventDefault(). **/ public static const UNCAUGHT_ERROR:String="uncaughtError"; /** * Dispatched when the loader unloads (which happens when either unload() or dispose(true) is called * or if a loader is canceled while in the process of loading). This can be particularly useful to listen for in a swf that was * subloaded by a SWFLoader so that it can get notified when the parent has requested an unload. For example, in the subloaded swf, * you could do:

* * var curParent:DisplayObjectContainer = this.parent;
* while (curParent) {
* if (curParent.hasOwnProperty("rawContent") && curParent.hasOwnProperty("loader")) {
* Object(curParent).loader.addEventListener("unload", dispose, false, 0, true);
* }
* curParent = curParent.parent;
* }
* function dispose(event:Event):void {
* //do cleanup stuff here like removing event listeners, stopping sounds, closing NetStreams, etc...
* }
**/ public static const UNLOAD:String="unload"; /** @private **/ protected var _target:Object; /** @private **/ protected var _ready:Boolean; /** For ERROR, FAIL, and CHILD_FAIL events, this text will give more details about the error or failure. **/ public var text:String; /** Event-related data which varies based on the type of event. For example, VideoLoader dispatches a VIDEO_CUE_POINT event containing data about the cue point. A SWFLoader dispatches an UNCAUGHT_ERROR event containing the original UncaughtErrorEvent instance. **/ public var data:*; /** * Constructor * * @param type Type of event * @param target Target * @param text Error text (if any) */ public function LoaderEvent(type:String, target:Object, text:String="", data:*=null){ super(type, false, false); _target = target; this.text = text; this.data = data; } /** @inheritDoc **/ public override function clone():Event{ return new LoaderEvent(this.type, _target, this.text, this.data); } /** * The loader associated with the LoaderEvent. This may be different than the currentTarget. * The target always refers to the originating loader, so if there is an ImageLoader nested inside * a LoaderMax instance and you add an event listener to the LoaderMax, if the ImageLoader dispatches an error * event, the event's target will refer to the ImageLoader whereas the currentTarget will * refer to the LoaderMax instance that is currently processing the event. **/ override public function get target():Object { if (_ready) { return _target; } else { //when the event is re-dispatched, Flash's event system checks to see if the target has been set and if it has, Flash will clone() and reset the target so we need to report the target as null the first time and then on subsequent calls, report the real target. _ready = true; } return null; } } }