Hola a todos, mi problema es que he creado un scroll con easing pero no soy capaz de que cuando llega a un numero de caracteres en el texto se muestre todo entero, el código es este:
var posy:Number = 5;
izquierda = dragger._x;
superior = 0;
derecha = dragger._x;
inferior = mascara._height - dragger._height;
dragger.onPress = function(){
startDrag(this,false,izquierda,superior,derecha,in ferior);
}
dragger.onRelease = function(){
stopDrag();
}
dragger.onRollOut = function(){
this._alpha = 100;
}
dragger.onReleaseOutside = function(){
this.onRollOut();
this.onRelease();
}
txt.setMask(mascara);
txt.onEnterFrame = function(){
scrolled = (this._height - (mascara._height /1.3)) / (mascara._height - dragger._height);
//nueva posicion en y
posy = -dragger._y * scrolled;
this._y -= (this._y - posy) /6;
}
a partir de 1600 de altura del cuadro de texto se deja de leer lo siguiente, pq puede ser??
Gracias por vuestra ayuda
Saludos