If i want to scroll a multiline Text on flash, i use something like this:
var myTextField:TextField = new TextField();
myTextField.text = “Super long text here…”;
myTextField.multiline=true;
myTextField.wordWrap=true;
then, i just increase or decrease the property “scrollV” like this:
myTextField.scrollV+=1;
This works on flash, but it does not work on android…
am i missing something or is it a bug?
regards