home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2012 April / ME_04_2012.iso / Video-Tutorial / iPhoto / media / player.swf / scripts / mx / containers / VBox.as < prev    next >
Encoding:
Text File  |  2011-11-11  |  454 b   |  23 lines

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