For a large project I have the following setup:

  • a content editor made with Flex SDK 3.5
  • a content viewer made with Flex SDK 4.1

Both need to work with dynamically loaded fonts as the user can use the fonts he wants.

So we used this approach:

  • convert the font files with Flash Professional to SWF-files (Creating a Font SWF)
  • editor: load the fonts with Loader (Loading a SWF font)
  • the fonts can then be perfectly used within the application to generate htmlText
  • viewer: the same approach to load the fonts + register them with Font.registerFont (Flex 4 Embed font from swf)

Now the problems: although the loaded fonts are listed when you trace Font.enumerateFonts(false), they are not used in the textarea. There the text is shown with the default font.

Maybe the problem is the fonts are loaded as embedAsCFF for the Text Layout Framework, and that way are not usable in an mx.controls.TextArea? But as I can not change that to a spark TextArea for multiple reasons, I need a solution to use the loaded fonts in that mx.controls.TextArea.

Any ideas? Thanks a lot in advance!

Frank

link|improve this question

75% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Apparantly the problem was located in the project properties.

In "Flex Compiler" settings, the checkbox "Use Flash Text Engine in MX components" must be unchecked!

link|improve this answer
feedback

I'm not sure why you're using Flash Pro to create a font swf. You could just as easily done it using CSS by embedding the fonts and compiling it as a themed swf which could be loaded on runtime.

This should work for both Flex 3 and Flex 4 (with TLF).

link|improve this answer
feedback

This CSS code effectively retrofits mx textarea to accept CFF fonts:

mx|global{
    textFieldClass:         ClassReference("mx.core.UIFTETextField");
}

from the docs: "When MX components use FTE, they can use the same embedded fonts as Spark components, which always use FTE. Otherwise, a font must be embedded with embedAsCFF="false" for use by TextField-based components, and with embedAsCFF="true" for use by FTE-based components." http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/core/UIFTETextField.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.