this is the code i’m using now for my up scroll bar:
on (press, release, keyPress “<Up>”) {
currentScroll = scrollableText.scroll;
if (Number(currentScroll)>1) {
scrollableText.scroll = currentScroll-1;
}
}
and i was wondering if you can make it so if you hold down the mouse, it will continue to scroll down. Will you be able to change the scroll speed? thx