Foros del Web » Creando para Internet » Flash y Actionscript »

el texto se superpone cuando pongo el scroll

Estas en el tema de el texto se superpone cuando pongo el scroll en el foro de Flash y Actionscript en Foros del Web. tengo una barra de scroll y tengo mucho texto metido dentro, pero en flash, no es un txt, y cuando lo pruebo aparecen los ultimos ...
  #1 (permalink)  
Antiguo 12/05/2006, 17:23
 
Fecha de Ingreso: abril-2006
Mensajes: 28
Antigüedad: 18 años
Puntos: 0
el texto se superpone cuando pongo el scroll

tengo una barra de scroll y tengo mucho texto metido dentro, pero en flash, no es un txt, y cuando lo pruebo aparecen los ultimos texxtos superpuestos encima de los primeros parrafos. No es que yo sepa hacer muy bien la bara de scroll pero me he bajado dos de internet, y cuando le meto mi texto siempre ocurre igual, hay algun limite de caracteres? os voy a decir el codigo que venia dentro de la barra, vale?

onClipEvent(load){
var objetivo:String = _parent.mi_objetivo;//entre comillas aquí escribe
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, 0, this._parent.barra._y,0, this._parent.barra._y + this._parent.barra._height - this._height);
this.sostenido = true;
}

on(release){
stopDrag();
this.sostenido = false;
}

on(releaseOutside){
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;
}
}

muchas gracias a todos
Lidia
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 23:10.