Okay, I could scroll my dynamic text box up and down. But I have to click on the scroll buttons to scroll, if i press and hold down on the left mouse button, it wont scroll. I wanna make the scroll buttons like a regular window scroll, holding the button still scrolls.
The code wich I got from here.
on (press, release, keyPress “<Up>”) {
currentScroll = inspiration.scroll;
if (Number(currentScroll)>1) {
inspiration.scroll = currentScroll-1;
}
}