A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: Clear Crisp Text

  1. #1
    Junior Member
    Join Date
    Aug 2006
    Posts
    6

    Clear Crisp Text

    Does anyone know how to get clear, crisp, clean looking text?

    Mine looks blurred, usually around the edges. It’s a real shame as it lets the rest of the site down. It seems I’m not alone in this, I would say that for every 10 sites you look at 8
    of them have blurred text.

    Any solutions.

    Many thanks.

  2. #2
    Polak Maly ant_Z's Avatar
    Join Date
    Jul 2006
    Location
    Poland
    Posts
    440
    do you get effect you want if you click right on swf and select quality -> medium?

  3. #3
    up to my .as in code Chris_Seahorn's Avatar
    Join Date
    Dec 2004
    Posts
    4,389
    Does anyone know how to get clear, crisp, clean looking text?
    You have to use either dynamic text or pixel fonts. Static textfields have always been a bit blurry in all versions of flash.

  4. #4
    up to my .as in code Chris_Seahorn's Avatar
    Join Date
    Dec 2004
    Posts
    4,389
    Guess I better add to that. If you use pixel fonts, they must be place on X/Y coordinates without fractional values:

    Not:

    X = 120.2
    Y= 100.5

    But rather whole numbers:

    X= 120
    Y= 100

    The same holds true if it is nested inside a clip...not only does the textfield have to be placed on a whole number value...the clip container must also be placed using the same rule or you will get a bit fuzzy there as well.

    Dynamic textfields are always clear no matter the placement. When using dynamic text that is not meant to be an input field (basically because you want clear text for display only) you should set the options for the field as follows:

    Read Only - Yes
    Selectable - No

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center