Set the scroll related properties : Scroll « TextField « Flash / Flex / ActionScript






Set the scroll related properties

 
package {

  import flash.display.Sprite;
  import flash.text.TextField;
  public class Main extends Sprite {
    public function Main(  ) {
      var field:TextField = new TextField(  );
  
        field.scrollV = field.bottomScrollV;
        field.scrollV = field.bottomScrollV + 1;
        
        field.autoSize = flash.text.TextFieldAutoSize.LEFT;
        field.wordWrap = true;
        field.text = "AAA BBB CCC DDD AAA BBB CCC DDD AAA BBB CCC DDD AAA BBB CCC DDD";
        addChild(field);
    }
  }
}

        








Related examples in the same category

1.Scrolling Text Programmatically
2.Set horizontal scroll value
3.Responding to Scroll Events
4.Using the Scroll Properties