El problema es que hago un autosize para ajustar el texto segun el contenido pero en el scroll solo me baja hasta lo que yo arrastre en flash (el tamaño al crear el cuadro del texto dinámico).
Intento poner en la funcion subir y bajar del scroll situado en el movieclip contentmaun esto para cambiar el tamaño del movie tb pero no me tira.
contentMain._height = this.contentMain.texto._height;
Muchas gracias x su ayuda.
Código:
cargador_lv = new LoadVars(); //Para poner acentos en HTML code //No embeber con puntuacion pq sino no cogera codigo html System.useCodepage = true; // Ponemos la mascara al texto dinamico this.setMask(this._parent.maskedView); //Creamos un nuevo objeto de hoja de estilo var myCSS = new TextField.StyleSheet(); //Especificamos la localización del archivo CSS, que creamos. var cssURL = "miCSS.css"; //Cargamos el archivo de texto cargador_lv.load("bienvenido.txt"); cargador_lv.onLoad = function(exito) { //Si las variables fueron cargadas con exito if (exito) { texto.styleSheet = myCSS; texto.htmlText = this.texto; trace(texto._height); texto.autoSize = true; trace(texto._height); this._height = texto._height; trace(this._height); } else { //Mostrar mensaje de error en el campo de texto texto.htmlText = "Error!! :("; } };