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

  1. package mx.controls
  2. {
  3.    import mx.controls.listClasses.TileBase;
  4.    import mx.controls.listClasses.TileBaseDirection;
  5.    import mx.core.ScrollPolicy;
  6.    import mx.core.mx_internal;
  7.    
  8.    use namespace mx_internal;
  9.    
  10.    public class HorizontalList extends TileBase
  11.    {
  12.       mx_internal static const VERSION:String = "3.5.0.12683";
  13.       
  14.       public function HorizontalList()
  15.       {
  16.          super();
  17.          mx_internal::_horizontalScrollPolicy = ScrollPolicy.AUTO;
  18.          mx_internal::_verticalScrollPolicy = ScrollPolicy.OFF;
  19.          direction = TileBaseDirection.VERTICAL;
  20.          maxRows = 1;
  21.          defaultRowCount = 1;
  22.       }
  23.    }
  24. }
  25.  
  26.