vote up 2 vote down star
3

Hi guys, I'm looking for the right textfield parameters or work-around for my latest problem here dealing with Flash fonts & text fields.

I have a textFormat and textField generation some text using the Font: Franklin Gothic Book point size 8. Currently this is how the font will look when I run the movie:

alt text

The bottom ®MYLOGO is a jpg from Photoshop, clean and how it should look. Next up is the font directly typed on the stage in Flash, and the very top ®MYLOGO is generated from my code.

What parameters am I missing to make the code generated copy look as close as possible to the Jpeg?

My Code below:

var tsFont = new TextFormat();
    tsFont.font = FranklinGothic;
    tsFont.size = 8;
    tsFont.color = 0xFFFFFF;
    tsFont.align = TextFormatAlign.LEFT;

var tsLogo:TextField = new TextField();
    tsLogo.defaultTextFormat = tsFont;
    tsLogo.selectable = false;
    tsLogo.mouseEnabled = false;
    tsLogo.x = 18;
    tsLogo.y = 98;
    tsLogo.width = 64;
    tsLogo.height = 16;
    tsLogo.text = "®MYLOGO";

    addChild(tsLogo);

You guys may remember this code from my last question X_x


FIXED WORKING CORE: thx to Andy Li

var tsFont = new TextFormat();
    tsFont.font = (new FranklinGothic() as Font).fontName;
    tsFont.size = 8;
    tsFont.color = 0xFFFFFF;
    tsFont.align = TextFormatAlign.LEFT;

var tsLogo:TextField = new TextField();
    tsLogo.selectable        = false;
    tsLogo.mouseEnabled      = false;
    tsLogo.embedFonts        = true;
    tsLogo.antiAliasType     = flash.text.AntiAliasType.NORMAL;
    tsLogo.gridFitType       = "pixel";
    tsLogo.sharpness         = 400
    tsLogo.x                 = 6;
    tsLogo.y                 = 5;
    tsLogo.width             = 600;
    tsLogo.height            = 40;
    tsLogo.text              = "®MYLOGO";
    tsLogo.setTextFormat(tsFont)
flag

3 Answers

vote up 1 vote down check

Controlling text rendering in Flash is painful sometime...

You need to play around several properties: antiAliasType, gridFitType, sharpness, thickness of the TextField. Try Adobe's example. Or a even more detailed tutorial.

link|flag
hey thx will be trying these out as well.. but just noticed something I increased my font size to 12 and 16 and I can tell it's not Franklin Gothic, but times and it looks much better at a size other then 8 hmm – Leon Gaban Oct 20 at 16:08
1  
Are you sure you embedded and using the embedded font? – Andy Li Oct 20 at 16:11
I imported the font and gave it the class name: FranklinGothic, but I guess that's not all I have to do to embed it correct? :( – Leon Gaban Oct 20 at 16:22
1  
Try this: Change the line tsFont.font = FranklinGothic; to tsFont.font = (new FranklinGothic() as Font).fontName;. And then add tsLogo.embedFonts = true;. – Andy Li Oct 20 at 17:03
Ah sweet that worked! My font's now FranklinGothic and the Aliasing works on it :D... – Leon Gaban Oct 20 at 18:02
vote up 2 vote down

Try to add this code:

tsLogo.antiAliasType = flash.text.AntiAliasType.NORMAL;

or

tsLogo.antiAliasType = flash.text.AntiAliasType.ADVANCED;

link|flag
hmm just tried both, still same result... starting to wonder if its something to do with the actual font Franklin Gothic – Leon Gaban Oct 20 at 16:04
I just realized I have a different problem, emebedding fonts correctly, but your solutions does work for anti aliasing, thx! – Leon Gaban Oct 20 at 16:43
vote up 1 vote down

Yes make sure you check the Aliasing, but if that doesn't do it I would try calling:

tsLogo.setTextFormat(tsFont)

Right after you set the text. That function will apply the font to the text in the field.

link|flag

Your Answer

Get an OpenID
or

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