Hola amigos:
a ver.... tengo un problema con un scroll que acabo de realizar.
Resulta que cuando pogo el texto y dicho texto se termina, el scroller sigue bajando aunque la barra de scrool haya terminado.
A ver si me pueden ayudar... por favor, éste es el siguiente códifo de As que he programado en la barra de desplazamiento de dicho scroll.
Por cirto, si alguien me pudiera dar alguna que otra página de tutoriales para hacer scroll que me lo sople, por favor.........muchisimas gracias
onClipEvent(load){
var objetivo:String = _parent.mi_objetivo;/
var sostenido:Boolean = false;
var razon:Number = this._parent._parent[objetivo]._height / this._height;
var deslizar:Number;
razon = int(razon);
}
on(press){
startDrag(this, false, this._parent.barra._x, this._parent.barra._y, this._parent.barra._x + this._parent.barra._width, this._parent.barra._y + this._parent.barra._height - this._height);
this.sostenido = true;
}
on(release){
stopDrag();
this.sostenido = false;
}
onClipEvent(mouseMove){
if(this.sostenido){
deslizar = (this._y - this._parent.barra._y);
deslizar = int(deslizar);
this._parent._parent[objetivo]._y = -(razon * deslizar) / 2;
}
}