Si algo encontre sobre esto pero sinceramente no supe como hacerlo...

realmente quisiera me pudieran ayudar con un ejemplo, no pude crear el codigo,,, pues el que tengo es el siguiente:
on (release) {
miLV.onLoad = function(exito:Boolean) {
if (exito) {
informacion.htmlText = miLV.info;
titulo.htmlText = miLV.titulo;
} else {
informacion.text = "ERROR AL CARGAR!!!";
}
};
var miEstilo:TextField.StyleSheet = new TextField.StyleSheet();
miEstilo.load("stilo.css");
miEstilo.onLoad = function(exito:Boolean) {
if (exito) {
informacion.styleSheet = miEstilo;
titulo.styleSheet = miEstilo;
miLV.load("resumen/panorama.txt");
} else {
informacion.text = "Error cargando la CSS";
}
};
}
me carga bien las imagenes y el txt, pero los titulos no aparecen completos y necesito la descripcion de cada foto con su respectiva imagen...
el txt es:
titulo=<span class="titulo"> PANORAMA FOTOGRAFICO (VISTAS A HOMECENTER) </span>
&info=<span class="sub_foto">HOMECENTER LOS MOLINOS EN CONSTRUCCION</span>
<img src="resumen/img_panorama/pano_1.jpg" align="center" width="500" height="300" ></img>
<br><br><br><br><br><br><br><br>
<span class="sub_foto">NOR-OCCIDENTAL </span>
<img src="resumen/img_panorama/pano_2.jpg" align="center" width="500" height="300" >
<br><br><br><br><br><br><br><br>
<span class="sub_foto">OCCIDENTAL </span>
<img src="resumen/img_panorama/pano_3.jpg" align="center" width="500" height="300" ></img>
<br><br><br><br><br><br><br><br>
<span class="sub_foto">SUR </span>
<img src="resumen/img_panorama/pano_4.jpg" align="center" width="500" height="300" ></img>
<br><br><br><br><br><br><br><br>
<span class="sub_foto">SUR-ORIENTE </span>
<img src="resumen/img_panorama/pano_5.jpg" align="center" width="500" height="300" ></img>
<br><br><br><br><br><br><br><br>
<span class="sub_foto">NORTE </span>
<img src="resumen/img_panorama/pano_6.jpg" align="center" width="500" height="300" ></img>
<br><br><br><br><br><br><br><br>
<span class="sub_foto">NORTE-ORIENTE </span>
<img src="resumen/img_panorama/pano_7.jpg" align="center" width="500" height="300" ></img>
<br><br><br><br><br><br><br><br>
<span class="sub_foto">ORIENTAL </span>
<img src="resumen/img_panorama/pano_8.jpg" align="center" width="500" height="300" ></img>
<br><br><br><br><br><br><br><br>
<span class="sub_foto">SUR OCCIDENTAL </span>
<img src="resumen/img_panorama/pano_9.jpg" align="center" width="500" height="300" ></img>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
quisiera poder volver links los titulos y que las imagenes cargen en un mc para que no se vean esas imagenes montadas ya que flash no recibe etiquetas que me permitan organizar mejor la información dentro de esta zona que es un texto dinamico(es decir que este txt se carga desde un texto dinamico)
Gracias... Muchas gracias por la ayuda