home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / managers / CursorManagerPriority.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  459 b   |  24 lines

  1. package mx.managers
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class CursorManagerPriority
  8.    {
  9.       mx_internal static const VERSION:String = "3.0.0.0";
  10.       
  11.       public static const HIGH:int = 1;
  12.       
  13.       public static const MEDIUM:int = 2;
  14.       
  15.       public static const LOW:int = 3;
  16.       
  17.       public function CursorManagerPriority()
  18.       {
  19.          super();
  20.       }
  21.    }
  22. }
  23.  
  24.