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??
Espero que podais ayudarme pq me toy volviendo loco!!
