/** * com.sekati.load.LoaderEvent * @version 1.0.0 * @author jason m horwitz | sekati.com | tendercreative.com * Copyright (C) 2007 jason m horwitz, Sekat LLC. All Rights Reserved. * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php */ import com.sekati.events.Event; /** * LoaderEvent */ class com.sekati.load.LoaderEvent extends Event { public static var READY:String = "onLoadInit"; public static var ERROR:String = "onLoadError"; public static var PROGRESS:String = "onLoadProgress"; public static var RETRY:String = "onRetry"; /** * Constructor */ public function LoaderEvent(type:String, target:Object, data:Object) { super( type, target, data ); } }