Originariamente inviato da dioz
prova così:

//Pulsante UP
on (press, release, keyPress "<Up>") {
if(testo._y < 100){
testo._y += 10;
}
}

//Pulsante DOWN
on (press, release, keyPress "<Up>") {
if(testo._y > 0){
testo._y -= 10;
}
}


scusa dioz non avevo visto