home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / events / InterManagerRequest.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  1.2 KB  |  40 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 InterManagerRequest extends Event
  9.    {
  10.       mx_internal static const VERSION:String = "3.5.0.12683";
  11.       
  12.       public static const CURSOR_MANAGER_REQUEST:String = "cursorManagerRequest";
  13.       
  14.       public static const DRAG_MANAGER_REQUEST:String = "dragManagerRequest";
  15.       
  16.       public static const INIT_MANAGER_REQUEST:String = "initManagerRequest";
  17.       
  18.       public static const SYSTEM_MANAGER_REQUEST:String = "systemManagerRequest";
  19.       
  20.       public static const TOOLTIP_MANAGER_REQUEST:String = "tooltipManagerRequest";
  21.       
  22.       public var value:Object;
  23.       
  24.       public var name:String;
  25.       
  26.       public function InterManagerRequest(param1:String, param2:Boolean = false, param3:Boolean = false, param4:String = null, param5:Object = null)
  27.       {
  28.          super(param1,param2,param3);
  29.          this.name = param4;
  30.          this.value = param5;
  31.       }
  32.       
  33.       override public function clone() : Event
  34.       {
  35.          return new InterManagerRequest(type,bubbles,cancelable,name,value);
  36.       }
  37.    }
  38. }
  39.  
  40.