home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / containers / HBox.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  456 b   |  23 lines

  1. package mx.containers
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class HBox extends Box
  8.    {
  9.       mx_internal static const VERSION:String = "3.5.0.12683";
  10.       
  11.       public function HBox()
  12.       {
  13.          super();
  14.          mx_internal::layoutObject.direction = BoxDirection.HORIZONTAL;
  15.       }
  16.       
  17.       override public function set direction(param1:String) : void
  18.       {
  19.       }
  20.    }
  21. }
  22.  
  23.