anche se nn posso provare il codice prova

TASTO SU:
on (release, press) {
if (testo.scroll>1) {
testo.scroll = testo.scroll-1;
}
}
TASTO GIU:
on (release, press) {
if (testo.scroll<testo.maxscroll) {
testo.scroll = testo.scroll+1;
}
}