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

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