estoy tratando de hacer un campo de texto que contenga imgenes, como dice el ejemplo que trae el flash mx 04 pro,(el archivo TextEnhancements.fla). Lo unico que hice fue cambiar el script que era:
var ss:TextField.StyleSheet = new TextField.StyleSheet();
ss.load("sample.css");
content.styleSheet = ss;
content.multiline= true;
content.wordWrap = true;
content.html = true;
story = new XML();
story.ignoreWhite = true;
story.load("sample.html");
story.onLoad = function () {
content.htmlText = story;
}
por este:
stop();
var ss:TextField.StyleSheet = new TextField.StyleSheet();
ss.load("sample.css");
content.styleSheet = ss;
content.multiline= true;
content.wordWrap = true;
content.html = true;
story = new XML();
story.ignoreWhite = true;
story.load("juveniles.html");
story.onLoad = function () {
content.htmlText = story;
}
Pero no me parece nada, ni siquiera el texto.
Aca les dejos los archivos (.fla, .css, .html, jpg) para que lo vean y puedan ayudarme desde ya muchas gracias.
http://lbd-ht.webcindario.com/prueba.zip

