home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / air / update / events / UpdateEvent.as < prev   
Encoding:
Text File  |  2010-06-23  |  930 b   |  34 lines

  1. package air.update.events
  2. {
  3.    import flash.events.Event;
  4.    
  5.    public class UpdateEvent extends Event
  6.    {
  7.       public static const INITIALIZED:String = "initialized";
  8.       
  9.       public static const BEFORE_INSTALL:String = "beforeInstall";
  10.       
  11.       public static const CHECK_FOR_UPDATE:String = "checkForUpdate";
  12.       
  13.       public static const DOWNLOAD_START:String = "downloadStart";
  14.       
  15.       public static const DOWNLOAD_COMPLETE:String = "downloadComplete";
  16.       
  17.       public function UpdateEvent(param1:String, param2:Boolean = false, param3:Boolean = false)
  18.       {
  19.          super(param1,param2,param3);
  20.       }
  21.       
  22.       override public function toString() : String
  23.       {
  24.          return "[UpdateEvent (type=" + type + ")]";
  25.       }
  26.       
  27.       override public function clone() : Event
  28.       {
  29.          return new UpdateEvent(type,bubbles,cancelable);
  30.       }
  31.    }
  32. }
  33.  
  34.