home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / events / MetadataEvent.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  1008 b   |  37 lines

  1. package mx.events
  2. {
  3.    import flash.events.Event;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class MetadataEvent extends Event
  9.    {
  10.       mx_internal static const VERSION:String = "3.5.0.12683";
  11.       
  12.       public static const METADATA_RECEIVED:String = "metadataReceived";
  13.       
  14.       public static const CUE_POINT:String = "cuePoint";
  15.       
  16.       mx_internal static const NAVIGATION:String = "navigation";
  17.       
  18.       mx_internal static const EVENT:String = "event";
  19.       
  20.       public static const ACTION_SCRIPT:String = "actionscript";
  21.       
  22.       public var info:Object;
  23.       
  24.       public function MetadataEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:Object = null)
  25.       {
  26.          super(param1,param2,param3);
  27.          this.info = param4;
  28.       }
  29.       
  30.       override public function clone() : Event
  31.       {
  32.          return new MetadataEvent(type,bubbles,cancelable,info);
  33.       }
  34.    }
  35. }
  36.  
  37.