home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / core / EventPriority.as < prev    next >
Encoding:
Text File  |  2008-09-02  |  555 b   |  27 lines

  1. package mx.core
  2. {
  3.    use namespace mx_internal;
  4.    
  5.    public final class EventPriority
  6.    {
  7.       
  8.       public static const DEFAULT:int = 0;
  9.       
  10.       public static const BINDING:int = 100;
  11.       
  12.       public static const DEFAULT_HANDLER:int = -50;
  13.       
  14.       public static const EFFECT:int = -100;
  15.       
  16.       public static const CURSOR_MANAGEMENT:int = 200;
  17.       
  18.       mx_internal static const VERSION:String = "2.0.1.0";
  19.        
  20.       
  21.       public function EventPriority()
  22.       {
  23.          super();
  24.       }
  25.    }
  26. }
  27.