Salve ho creato uno scroll ma il testo, anche se finito, continua ad andare avanti.
come posso fermare l'azione dello scrolling? grazie
sui punsanti ho questa azione
freccia su
on (press) {
su = true;
}
on (release, dragOut) {
su = false;
}

freccia giu
on (press) {
giu = true;
}
on (release, dragOut) {
giu = false;
}

mc del testo
onClipEvent (enterFrame) {
if (_parent.su) {
_parent.testo._y += 5;
_parent.a=_parent.testo.scroll
}}
onClipEvent (enterFrame) {
if (_parent.giu) {
_parent.testo._y -= 5;
_parent.a=_parent.testo.scroll;
}
}