home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Livebrush / Install-LivebrushLite.air / livebrush.swf / scripts / fl / controls / ButtonLabelPlacement.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  394 b   |  20 lines

  1. package fl.controls
  2. {
  3.    public class ButtonLabelPlacement
  4.    {
  5.       public static const BOTTOM:String = "bottom";
  6.       
  7.       public static const TOP:String = "top";
  8.       
  9.       public static const LEFT:String = "left";
  10.       
  11.       public static const RIGHT:String = "right";
  12.       
  13.       public function ButtonLabelPlacement()
  14.       {
  15.          super();
  16.       }
  17.    }
  18. }
  19.  
  20.