tags:

views:

77

answers:

2

Have a textField in which I'm loading HTML formated text into it. This textField sits inside a parent container which has its blendMode property set to BlendMode.LAYER. When I run the movie, the html text doesn't display. Any clues why?

A: 
textField.embedFont = true;
textField.defaultformat = new Format("EmbedFontName");

Do you have something like this?

or embed font characters?

Konrad
A: 

If it doesn't work with normal blend mode either:

  • Does the loaded html contain unsupported html tags? Flash text fields support only a limited subset of html tags.
  • If not, it could be embedded fonts issue as konrad suggested.
Amarghosh