1  /**
     2   * com.sekati.load.LoaderEvent
     3   * @version 1.0.0
     4   * @author jason m horwitz | sekati.com | tendercreative.com
     5   * Copyright (C) 2007  jason m horwitz, Sekat LLC. All Rights Reserved.
     6   * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
     7   */
     8   
     9  import com.sekati.events.Event;
    10  
    11  /**
    12   * LoaderEvent
    13   */
    14  class com.sekati.load.LoaderEvent extends Event {
    15  
    16  	public static var READY:String = "onLoadInit";
    17  	public static var ERROR:String = "onLoadError";
    18  	public static var PROGRESS:String = "onLoadProgress";
    19  	public static var RETRY:String = "onRetry";
    20  
    21  	/**
    22  	 * Constructor
    23  	 */
    24  	public function LoaderEvent(type:String, target:Object, data:Object) {
    25  		super( type, target, data );
    26  	}
    27  }