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

  1. package
  2. {
  3.    import mx.core.IFlexModuleFactory;
  4.    import mx.styles.CSSStyleDeclaration;
  5.    import mx.styles.StyleManager;
  6.    
  7.    public class _textAreaHScrollBarStyleStyle
  8.    {
  9.        
  10.       
  11.       public function _textAreaHScrollBarStyleStyle()
  12.       {
  13.          super();
  14.       }
  15.       
  16.       public static function init(param1:IFlexModuleFactory) : void
  17.       {
  18.          var style:CSSStyleDeclaration = null;
  19.          var fbs:IFlexModuleFactory = param1;
  20.          style = StyleManager.getStyleDeclaration(".textAreaHScrollBarStyle");
  21.          if(!style)
  22.          {
  23.             style = new CSSStyleDeclaration();
  24.             StyleManager.setStyleDeclaration(".textAreaHScrollBarStyle",style,false);
  25.          }
  26.          if(style.defaultFactory == null)
  27.          {
  28.             style.defaultFactory = function():void
  29.             {
  30.             };
  31.          }
  32.       }
  33.    }
  34. }
  35.