home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Darbas / kidoz_v1.air / kidoz.swf / scripts / mx / containers / BoxDirection.as < prev    next >
Encoding:
Text File  |  2009-05-06  |  432 b   |  22 lines

  1. package mx.containers
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class BoxDirection
  8.    {
  9.       mx_internal static const VERSION:String = "3.2.0.3958";
  10.       
  11.       public static const HORIZONTAL:String = "horizontal";
  12.       
  13.       public static const VERTICAL:String = "vertical";
  14.       
  15.       public function BoxDirection()
  16.       {
  17.          super();
  18.       }
  19.    }
  20. }
  21.  
  22.