home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / core / UIComponentGlobals.as < prev    next >
Text File  |  2008-09-02  |  743b  |  31 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.       
  25.       public function UIComponentGlobals()
  26.       {
  27.          super();
  28.       }
  29.    }
  30. }
  31.