I have a text field on a layer using dynamic text and html. My 2 buttons on a 2nd layer with this AS:
Up Button:
on (release) {
scrollText.scroll +=2 ;
}
Down Button:
on (release) {
scrollText.scroll -=2 ;
}
I don’t like the choppy action you get with this method (by simply changing the +=2 to +=1.3.4. etc.) Is there AS that will scroll the text continuously when the button is pressed? I don’t want a scroll BAR, I need my 2 seperate buttons positioned on stage where I want them. Thanks for any suggestions.