Thanks for replying Cory.  I am doing that.  I have a TextFormat with an 
embedded font that is displaying correctly.  The issue is these two glyphs of 
that font not showing up.  The rest of the font's characters are there.

Even when I use either of these when building the string, the glyphs don't 
display:
var symbol:String = (i == 0) ? "≤" : "≥";
// or...
var symbol:String = (i == 0) ? "\u2264" : "\u2265";

Also, trace(symbol) traces the glyphs no problem.

I *thought* actionscript is saved as Unicode, or maybe that's just .as files.  
This is script in the .fla itself.  Maybe that has something to do with it?

Still thinking...
- MM


> If you set the embedFonts property to true for a text field, you must
specify a font for that text by using the font property of a
TextFormat object applied to the text field. If the specified font is
not embedded in the SWF file, the text is not displayed.

_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to