Hi there guys, I’m wondering if it’s possible to have a continuous scroll with this AS:
Now the scroll works per click, one line per click, but I want to have the button pressed and the thing scrolling, using this script how that can be achieved?
down_btn.onPress = function() {
textField_txt.scroll += 1;
};
up_btn.onPress = function() {
textField_txt.scroll -= 1;
};
Thanks!
A-