var formato: TextFormat = new TextFormat();
with(formato){
font = "Arial";
size = "11";
align = "left"
}
_root.createTextField ("texto",0,170,90,350,200);
with (texto){
border = false;
wordWrap = 1;
textColor = "000000";
text=" <b>texto en negrita</b> <p aling='left'>nuevo párrafo</p> ";
}
texto.setTextFormat(formato);
Alguien sabe que es lo que estoy haciendo mal¿ porq el texto me sale con <b> y todo eso y no me convierte ningún texto en nebrita ni nada.
Gracias.
