Konstantin Djenkov
Konstantin Djenkov

Reputation: 51

Fonts are blured in fullscreen Flash as3

I'm having the following problem. when I switch to fullscreen - all my fonts are blurred. I use the following code to enter fullscreen:

stage.fullScreenSourceRect = new Rectangle( ... );

stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

I've tried with embed fonts, with antialiastype = advanced but there was no difference.

When I right-click and choose Zoom In the fonts are not blurred - can I achieve the same effect - no blurred fonts in fullscreen mode?

Here are some images:

img1.jpg - original

img2.jpg - fullscreen - blured fonts

img3.jpg - Zoom in - the fonts are ok

enter image description here

Upvotes: 3

Views: 69

Answers (1)

Neal Davis
Neal Davis

Reputation: 2008

Try using advanced settings. Set the textFields antiAliasType to flash.text.AntiAliasType.ADVANCED. And then set the textField sharpness property to 400. See the documentation here.

And I would say yes, use embedFonts = true

Upvotes: 1

Related Questions