Set horizontal scroll value : Scroll « TextField « Flash / Flex / ActionScript






Set horizontal scroll value

 
package {

  import flash.display.Sprite;
  import flash.text.TextField;
  public class Main extends Sprite {
    public function Main(  ) {
        var field:TextField = new TextField(  );
                       
        field.scrollH = 0;                      // Scroll to the far left
        field.scrollH += 1;                     // Scroll to the right 1 pixel
        field.scrollH = field.maxScrollH;       // Scroll to the far right
        
        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 the scroll related properties
3.Responding to Scroll Events
4.Using the Scroll Properties