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 / ScrollPolicy.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  311 b   |  18 lines

  1. package fl.controls
  2. {
  3.    public class ScrollPolicy
  4.    {
  5.       public static const ON:String = "on";
  6.       
  7.       public static const AUTO:String = "auto";
  8.       
  9.       public static const OFF:String = "off";
  10.       
  11.       public function ScrollPolicy()
  12.       {
  13.          super();
  14.       }
  15.    }
  16. }
  17.  
  18.