Currently, I have arrow buttons that scroll the text field when they are clicked. What script do I use to scroll the textfield as the button is held down? As opposed to clicking it each time to go down or up. Even to mouse over the arrow buttons to scroll would be nice.
Here is my current script:
on(press){
form.body_txt.scroll++;
}
I am currently using VARs (to dynamically load external data) on my dyn text boxes so it would have to be something that calls the instance name of the dyn text box.
Excellent code Claudio. I implemented it and its functional. However, it is choppy and not smooth scrolling. I changed the scroll speed to 150 and then 200 because at 80 it is way too fast. Can you assist me with getting it to scroll smooth?
If you scroll using the textfield.scroll property, it will be hard to achieve a slower smooth scroll, since you can only increment or decrement the scroll position by integers.
There are other methods, here i attached an example: http://www.kirupaforum.com/forums/showthread.php?s=&threadid=27214