home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / core / ScrollPolicy.as < prev    next >
Text File  |  2008-09-02  |  432b  |  23 lines

  1. package mx.core
  2. {
  3.    use namespace mx_internal;
  4.    
  5.    public final class ScrollPolicy
  6.    {
  7.       
  8.       public static const AUTO:String = "auto";
  9.       
  10.       public static const ON:String = "on";
  11.       
  12.       mx_internal static const VERSION:String = "2.0.1.0";
  13.       
  14.       public static const OFF:String = "off";
  15.        
  16.       
  17.       public function ScrollPolicy()
  18.       {
  19.          super();
  20.       }
  21.    }
  22. }
  23.