Anti aliased not working on italic text

Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default 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 text box that contains anti-aliased text. It renders correctly,
    but the portions of the text that are italicized do not look anti-aliased.

    I'm using 8.5.1 on Windows XP. I remember having this problem before and
    managing to fix it, but I don't remember how!

    Thanks in advance,
    Chris


    Chris 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 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...
    3. 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...
    4. 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...
    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 not working on italic text

    Hi all,

    I made some progress, but I'm still struggling with this one.

    I opened up all of the text members, changed their font to something random,
    then changed it back to Arial. This corrected the problem, and the italic
    text now renders anti-aliased.

    The problem is when I view the movie in Director, the text reders correctly,
    but when I publish it to the web, the italic text is still aliased (crunchy)

    Any ideas on how to fix this?

    Chris


    Chris Guest

  4. #3

    Default Re: Anti aliased not working on italic text

    Ok, I figured it out. When you set the HTML of a text member, the font name
    must be capitalized.

    Chris








    "Chris" <noemail@uuyyyyyuuuuuyyyyuuiu.com> wrote in message
    news:c4s8ac$7pb$1@forums.macromedia.com...
    > Hi all,
    >
    > I made some progress, but I'm still struggling with this one.
    >
    > I opened up all of the text members, changed their font to something
    random,
    > then changed it back to Arial. This corrected the problem, and the italic
    > text now renders anti-aliased.
    >
    > The problem is when I view the movie in Director, the text reders
    correctly,
    > but when I publish it to the web, the italic text is still aliased
    (crunchy)
    >
    > Any ideas on how to fix this?
    >
    > Chris
    >
    >

    Chris Guest

  5. #4

    Default Re: Anti aliased not working on italic text

    That sounds like one for the quirk list at [url]www.updatestage.com[/url] as well as
    letting Macromedia know about it:-
    [url]http://www.macromedia.com/support/director/ts/documents/bug_submit.htm[/url]

    Andrew

    Andrew Morton Guest

  6. #5

    Default Re: Anti aliased not working on italic text

    Would somebody who has d8.5.1, D9 or MX be willing to see if they can repro
    the bug and post the results here? Just make a text member called
    "Narration Text", then set it's HTML property using this code:



    Here's the code that doesn't work (note lower case a in 'arial')
    tText = "<html>" & RETURN

    tText = tText & "<head>" & RETURN

    tText = tText & "<title>Untitled</title>" & RETURN

    tText = tText & "</head>" & RETURN

    tText = tText & "<body bgcolor=#FFFFFF>" & RETURN

    tText = tText & "<font size=4 color=#000000 face=" & QUOTE & "arial" & QUOTE
    & ">" & "This is <I>italic</I> text" & RETURN

    tText = tText & "</html>" & RETURN


    member("Narration Text").html = tText



    Here's the code that DOES work (note Uppercase A in Arial)

    tText = "<html>" & RETURN

    tText = tText & "<head>" & RETURN

    tText = tText & "<title>Untitled</title>" & RETURN

    tText = tText & "</head>" & RETURN

    tText = tText & "<body bgcolor=#FFFFFF>" & RETURN

    tText = tText & "<font size=4 color=#000000 face=" & QUOTE & "Arial" & QUOTE
    & ">" & "This is <I>italic</I> text" & RETURN

    tText = tText & "</html>" & RETURN


    member("Narration Text").html = tText



    "Andrew Morton" <akm@in-press.co.uk.invalid> wrote in message
    news:c4tq63$9ng$1@forums.macromedia.com...
    > That sounds like one for the quirk list at [url]www.updatestage.com[/url] as well as
    > letting Macromedia know about it:-
    > [url]http://www.macromedia.com/support/director/ts/documents/bug_submit.htm[/url]
    >
    > Andrew
    >

    Chris Guest

  7. #6

    Default Re: Anti aliased not working on italic text

    I see no difference using D8.5.1 on W2000 SP4. Maybe there's an operating system
    setting in XP for it? I know there's a setting that's supposed to make text
    easier to read on an LCD.

    Andrew

    Andrew Morton 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