Ciao a tutti!

ho un text scroller modificato con un movimento "elastico" ma ho problemi con il pixelfont che sto usando. Il testo scrolla in alto ed in basso OK ma non si ferma in una posizione Y INTERA. Per spiegarmi se il testo é su Y=153.6 non si vede bene. . .mentre se é su Y=153.00 va benissimo!!

Allora ecco il codice:

onClipEvent (enterFrame) {
_root.oldy = ((this.drag._y-20)*4)*-1;
}
onClipEvent (enterFrame) {
if (up and this.drag._y>=7) {
this.drag._y -= 3;
}
else if (down and this.drag._y<=114) {
this.drag._y += 3;
}
}


C'é una maniera di inserire MATH.ROUND per far "fermare" il movieclip su un numero INTERO?

Vi ringrazio per eventuali idee.

Ciao
Nando