Pues tengo un problema con este código, pincha bien pero no como espero...
Prueben esto y verán que pincha bien, sin embeber texto se diferencia la negrita del otro texto:
Código :
this.createTextField("text_txt", 0, 10, 10, 400, 350);
text_txt.html = true;
text_txt.htmlText = "<b>Con embedFonts se ve mal</b>, y sin embedFonts se ve bien.";
Pero con este otro, no se diferencia la negrita del otro texto (hay que meter la fuente en la biblioteca)Código :
this.createTextField("text_txt", 0, 10, 10, 400, 350);
text_txt.embedFonts = true;
text_txt.html = true;
text_txt.htmlText = "<b>Con embedFonts se ve mal</b>, y sin embedFonts se ve bien.";
text_txt.setTextFormat(new TextFormat("fuente"));
Estoy enloqueciendo, he probado 1001 maneras diferentes, but Without Any Possitive Results!!!!!
