home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / controls / ProgressBarLabelPlacement.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  612 b   |  28 lines

  1. package mx.controls
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class ProgressBarLabelPlacement
  8.    {
  9.       mx_internal static const VERSION:String = "3.0.0.0";
  10.       
  11.       public static const BOTTOM:String = "bottom";
  12.       
  13.       public static const CENTER:String = "center";
  14.       
  15.       public static const LEFT:String = "left";
  16.       
  17.       public static const RIGHT:String = "right";
  18.       
  19.       public static const TOP:String = "top";
  20.       
  21.       public function ProgressBarLabelPlacement()
  22.       {
  23.          super();
  24.       }
  25.    }
  26. }
  27.  
  28.