Ask a Question related to Macromedia Flash Sitedesign, Design and Development.

  1. #1

    Default Anti Aliased text

    Hi

    Simple question. I was just wondering how Macromedia would've gone about making the text on their Flash navigation non-anti aliased because I have text that small on my flash menu and it looks blurry and not very neat.

    Thanks

    Len



    ImageGroup webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Anti-aliased dynamic text problems
      Hey all, my dynamicly loaded text wont anti-alias characters like "é" and "ü", they just dissappear from the text. I tried embedding font...
    2. Anti aliased not working on italic text
      Hi, I have a problem that I can't find the solution for. I have checked the newsgroups and support forums but didn't find anything. I have a...
    3. Anti-aliased text without embedding fonts?
      Hi, I've a text field which I'm allowing the user to dynamically change it's colour, text, font etc. using a palette. Trouble is that the text is...
    4. Anti-Aliased HTML Text?
      Hi All, Im using HTML in my text boxes for bold, undeline etc and was wondering if there is a way to make it also anti-aliased? It doesnt seem...
    5. changing text chunk color, anti-aliased?
      Hello - I can't figure out how to get text chunks (lines, specifically) to change color dynamically within a movie through Lingo and be...
  3. #2

    Default Re: Anti Aliased text

    hi

    try this, use Dynamic text not Symple text or use a pixelate font


    nardove webforumsuser@macromedia.com Guest

  4. #3

    Default Re: Anti Aliased text

    hi,
    Here are the basic rules to follow to keep text from anti-aliasing (ie. getting
    fuzzy, unclear, blurred). I've also included a few notes that could be useful
    when manipulating text with actionscript.

    Know the 'Size Intended'

    The first bit of info you will need is the size that the font was intended to be
    set at. Most fonts are between 8-12 pt fonts. In the case of the popular
    miniml fonts they are 8. Contact the creator of the font if you can't determine
    the correct size.

    RULE #1:

    Be sure that the font being used is only set to multiples of the size intended.
    For example, miniml fonts should only be size 8,16,32,40, etc. If you try
    other sizes the flash anti-aliasing will kick in and they will blur.

    RULE #2:

    Adjust placement of text so that it rests on integer (ie 1,2,3,4.. not
    1.1,2.5,1.2,5.6, etc.) x and y values. If the text is placed on say x:1.4 y:2.3
    the text will anti-alias and blur. The exact position of text is easily changed
    by selecting it and opening the info box in flash. Simply type in the rounded
    x and y values.

    Those are the two basic rules. Here are a few
    notes/tricks for other situations:

    NOTE #1:

    A lot of times you will have text within a movie clip. Even though the x and y
    values may be integers it may still look blurry. This is because the movieclip
    that it resides in is not on integer values. It's generally good practice to
    manually adjust movieclips via the info box whenever they contain text.

    NOTE #2:

    You will run into a problem with the aliasing when you scroll or manipulate
    the location of the text via actionscript. This is obviously due to the text
    being moved between integer values. The solution is to modify the
    actionscript so that when it determines the x and y position of the text you
    include a Math.round () argument.

    AMENDMENT #1:

    You must left justify the text for it to remain clear. If it's centered
    or right justified it will alias and blur.

    AMENDMENT #2:

    The movie that the text resides in must be published with a set
    size (i.e. x:300 pixels, y:400 pixels). If it gets published with as a resizable movie it will also resize the fonts and they will fall apart.

    I hope this helps. If you have any questions, feel free to ask!


    [email]thebhushu@hotmail.com[/email]




    the_bhushu webforumsuser@macromedia.com Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139