# Anti Alias problem

**URL:** https://forum.kirupa.com/t/anti-alias-problem/305792
**Category:** Uncategorized
**Created:** [March 3, 2010, 4:10pm UTC](https://forum.kirupa.com/t/anti-alias-problem/305792 "2010-03-03T16:10:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![LS05](https://avatars.discourse-cdn.com/v4/letter/l/e19b73/32.png) [@LS05](https://forum.kirupa.com/u/LS05)
#### Post date: [March 3, 2010, 4:10pm UTC](https://forum.kirupa.com/t/anti-alias-problem/305792/1 "2010-03-03T16:10:56Z")

</div>

Hi,  
i’ve searched a lot in all the forum but i haven’t found my answer.  
My problem is that i’ve this code

```auto
var myFont:Font = new Font1();
var myFormat:TextFormat = new TextFormat();
myFormat.font = myFont.fontName;
myFormat.size = 15;

titolo.defaultTextFormat = myFormat;
titolo.embedFonts = true;
titolo.antiAliasType = AntiAliasType.ADVANCED;
giorno.defaultTextFormat = myFormat;

```

for embedding text. Font1 is the name of my font(Georgia) in the library.

When i run my project the result is:

![](http://img220.imageshack.us/img220/1821/immaginevq.png)

The font is not anti aliased altough the x and y are -81 and 2.

What’s the problem?

Thanks. :geek:
