home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / HexiomConnect.swf / scripts / mx / core / UIComponentGlobals.as < prev   
Text File  |  2008-08-29  |  1KB  |  53 lines

  1. package mx.core
  2. {
  3.    import flash.display.InteractiveObject;
  4.    import flash.geom.Matrix;
  5.    import mx.managers.ILayoutManager;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class UIComponentGlobals
  10.    {
  11.       
  12.       mx_internal static var callLaterSuspendCount:int = 0;
  13.       
  14.       mx_internal static var layoutManager:ILayoutManager;
  15.       
  16.       mx_internal static var nextFocusObject:InteractiveObject;
  17.       
  18.       mx_internal static var designTime:Boolean = false;
  19.       
  20.       mx_internal static var tempMatrix:Matrix = new Matrix();
  21.       
  22.       mx_internal static var callLaterDispatcherCount:int = 0;
  23.       
  24.       private static var _catchCallLaterExceptions:Boolean = false;
  25.        
  26.       
  27.       public function UIComponentGlobals()
  28.       {
  29.          super();
  30.       }
  31.       
  32.       public static function set catchCallLaterExceptions(param1:Boolean) : void
  33.       {
  34.          _catchCallLaterExceptions = param1;
  35.       }
  36.       
  37.       public static function get designMode() : Boolean
  38.       {
  39.          return mx_internal::designTime;
  40.       }
  41.       
  42.       public static function set designMode(param1:Boolean) : void
  43.       {
  44.          designTime = param1;
  45.       }
  46.       
  47.       public static function get catchCallLaterExceptions() : Boolean
  48.       {
  49.          return _catchCallLaterExceptions;
  50.       }
  51.    }
  52. }
  53.