I hate to ask a stupid question, but are you sure the entire font (or at least the Latin characters) is embedded? How are you embedding the font?
- Dan On 1/23/07, polestar11 <[EMAIL PROTECTED]> wrote:
Hi there I'm getting a strange error when dynamically adding a TF and turning on the embedFonts property. Without the property turned on, all the text is displayed, but with embedFonts set to true I only see the text up to 'ABCDEFGH'. This is very odd behavior, am I missing something blatantly obvious? Code: var fmt:TextFormat = new TextFormat() fmt.font = "Verdana" fmt.color = 0x999999 var toc:TextField = new TextField() toc.antiAliasType = AntiAliasType.NORMAL toc.autoSize = TextFieldAutoSize.LEFT toc.selectable = false toc.multiline = true toc.defaultTextFormat = fmt toc.embedFonts = true Tracy

