home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / events / DynamicEvent.as < prev    next >
Text File  |  2008-09-02  |  568b  |  25 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 dynamic class DynamicEvent extends Event
  9.    {
  10.       
  11.       mx_internal static const VERSION:String = "2.0.1.0";
  12.        
  13.       
  14.       public function DynamicEvent(param1:String, param2:Boolean = false, param3:Boolean = false)
  15.       {
  16.          super(param1,param2,param3);
  17.       }
  18.       
  19.       override public function clone() : Event
  20.       {
  21.          return new DynamicEvent(type,bubbles,cancelable);
  22.       }
  23.    }
  24. }
  25.