Fonts Mangled In Flash CC

I just installed Flash CC eager to try out the features and quickly discovered that any fla that I opened that uses Library embedded fonts completely looks mangled, the font is wrong, kerning gets screwed up, text randomly is cut off. Very dissapointing. Is this something that might get fixed soon.

Here is a quick example:
SWF exported using CS6:
http://terminalvelocity.ca/temp/flashCC/a.png
SWF exported using CC
http://terminalvelocity.ca/temp/flashCC/b.png
(this example only really shows a line spacing problem)
Here is also an example of one of my project FLAs which reveals more issues such as the wrong font variant being used (non bold) and the "height" property of the textfield being wrong which is causing the buttons to misdraw as being too tall (and the input elements being too short)
CS6:
http://terminalvelocity.ca/temp/flashCC/c.png
CC:
http://terminalvelocity.ca/temp/flashCC/d.png
You can download my test FLA here:
http://terminalvelocity.ca/temp/flashCC/test.fla
The font problems seem prevailent in any FLA I open that uses embedded fonts. I am on a Mac running the latest version of Mountain Lion. I suspect this may be caused by a few default params changing in the TextFormat object perhaps? Though if so I won't be happy if I have to go back through every text field in every FLA in order to use the CC version of Flash.

Similar Messages

  • Accessing a non TTF/OTF font embedded in Flash CS5 SWF via Flex

    Hello,
    I'm trying to embed an older Mac font in a Flash Builder application. I need it to be loaded dymanically for size reasons. I am able to do this with TTF and OTF fonts, but I'm having trouble with other formats.
    I embedded the font in a CS5 FLA, but I can't seem to locate the font when I load the SWF into Flash Builder.
    My function is below. I have it enumerating through the variables in the loaded SWF, but the font I need is not coming up as one of them. I tried, in the FLA, to cast the embedded font to a Class in AS because, but when try to access that variable ("font") after it's loaded, I get null. I also tried setting the embedded font to a Font variable in AS, but I still get null on the other side. Does anyone have any suggestions? Alternate solutions are welcome also.. Thanks!!
            private function loadFonts():void{
                var lc:LoaderContext = new LoaderContext();
                lc.securityDomain = SecurityDomain.currentDomain;
                lc.applicationDomain = ApplicationDomain.currentDomain;
                var ldr:Loader = new Loader();
                ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
                ldr.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
                ldr.load(new URLRequest('compatil_bold.swf'),lc);
                function completeHandler(e:Event):void{
                    fontLibrary = e.target.applicationDomain.getDefinition('Compatil') as Class;
                    var varList:XMLList = flash.utils.describeType(fontLibrary)..variable;
                    for (var i:int = 0; i < varList.length(); i++){
                        trace(varList[i].@name+': '+fontLibrary[varList[i].@name]);   
                    Font.registerFont(fontLibrary.font);
                    //Font.registerFont(fontLibrary.CompatilFactBold);
                    trace('font loaded');
                    fontsLoaded = true;
                function ioErrorHandler(e:ErrorEvent):void{
                    trace(e.text);
    in FLA
    var font:Class = new CompatilFactBold() as Class;

    I got it!
    Here is the embedded font in a CS5 FLA:
    That's all you have to do in Flash.
    Here's the function I have in my Flash Builder AS application:
    private function loadFonts():void{
    var lc:LoaderContext = new LoaderContext();
    lc.securityDomain = SecurityDomain.currentDomain;
    lc.applicationDomain = ApplicationDomain.currentDomain;
    var ldr:Loader = new Loader();
    ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
    ldr.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
    ldr.load(new URLRequest('http://some.other.domain/compatil_bold.swf'),lc);
    function completeHandler(e:Event):void{
    fontLibrary = e.target.applicationDomain.getDefinition('CompatilFactBold') as Class;
    Font.registerFont(fontLibrary);
    trace('font loaded');
    fontsLoaded = true;
    function ioErrorHandler(e:ErrorEvent):void{
    trace(e.text);
    Then you reference the font by its name when you want to use it. In this case: 'CompatilFact LT Bold.'
    update: question is answered.

  • Japanese font in a Flash file

    is there anyway of outlining a font in a Flash??? My work around was to copy and paste between Flash and Illustrator replacing the Japanese text with vector elements, in order to meet the vendors spec's. There has to be an easier way of doing this......any ideas appreciated

    I don't know, I always suppress the html output since the
    html it generates isn't W3C-valid in any context I'm designing. I
    use swfobject for my flash files -- thanks for the idea, though!
    Does it enumerate all URLs that are embedded in a flash file's
    actionscript? That seems like it can get rather data-heavy?

  • How to use embedded font (CFF) for Flash CS4?

    Hi,
    I am trying to embed "Arial Unicode MS" for use by TLF in my Flash CS4 project. As I googled around, I am using the "Flex SWC" approach, only not having any luck. Here is what I got:
    //Code in Flex ActionScript project:
    package
        public class FontEmbeds
            [Embed(source='C:/Windows/Fonts/ARIALUNI.TTF',
                    fontFamily='ArialUnicodeMS',
                    embedAsCFF='true'
            public const Font1:Class;
    When I am trying to instantiate this class, I have AS code in my Flash main timeline:
    var font:Font = new FontEmbeds_Font1();
    Flash compiler says: "1067: Implicit coercion of a value of type FontEmbeds_Font1 to an unrelated type flash.text:Font."
    Ok. Now after I changed it to:
    var font:FontEmbeds_Font1 = new FontEmbeds_Font1();
    Flash gives 3 errors:
    "VerifyError: Error #1014: Class mx.core::FontAsset could not be found.
    ReferenceError: Error #1065: Variable TextLayout is not defined.
    ReferenceError: Error #1065: Variable MainTimeline is not defined."
    I am assuming I have to create a Font1 object in order to use the embedded font. Is this assumption correct? As I've tried to use the "fontFamily" directly but Flash didn't seem to find the font at all:
    charFormat.fontFamily = "ArialUnicodeMS";
    Thanks.

    Hi Eric,
    Thanks for the info.
    I've tried to use the "fontFamily" directly but Flash didn't seem to  find the font at all:
    charFormat.fontFamily = "ArialUnicodeMS";
    In one fla where I used pure TFL, nothing gets rendered at all in the container Sprite. Flash doesn't throw any errors either. In another fla where I used a ComboBox, etc. along with TFL, it throws an error says it can't compile since "there is no ActionScript found" and I got a screen where all the Flash components were  flickering. After several attempts, Flash crashed.
    Also as a side note, the swc gets generated by Flash Builder Beta 2, at first it was 18mb and the second time I complied it become 9mb and stayed 9mb afterwards. Not sure if that's a concern.
    Geng

  • Same fonts used in Flash and FLEX are different

    Fonts used in Flash and Flex differs in appearance even though they are same. It lacks the anti alias property and shows pixelated in flex even if it appears normal in flash. Please see attachment.

    There can be several reasons for that.  First make sure the font is embedded properly.  Rotate the object and see how it looks.  It is also possible that in Flex the fonts are being captured as a bitmap which can turn off AA at times.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Automatically loading a new font in a flash

    I was thinking of making my own font for my flash website,
    but the problem is , the users will not have the font, therefore it
    will only show the default font for them.
    There is a flashchat program (web driven) that has new fonts
    on it, that when chosen, you see a small loading bar below and the
    font is automatically loaded somehow. (they used actionscript 2.0
    though)
    Could someone please inform me of such a method? I am using
    flash cs3 pro.

    Hi,
    There is an example in the examples folder ExecutingSequencesInParallel that should help you.
    The first sequence call has been setup to run in a new execution.
    All you would have to do is include the ProcessSetup Callback Sequence in your sequencefile and perform your new sequence call from there.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Fonts missing in Flash CS4 OSX

    Why is it that I see just the basic fonts in Flash and yet in InDesign, PhotoShop and Fireworks I see all the fonts that I have loaded? I have cleaned the font caches with Font Nuke and restarted the whole system and still not showing up.

    A bit of additional information... The Myriad font is a True
    Type. It was installed under C:\Program Files\Common
    Files\Adobe\Fonts so I have installed it under C:\Windows\Fonts and
    restarted Flash, however it still doesn't show up?

  • Help, some font work on flash.text.engine throw Error #2161

    I found some font work on flash.text.engine throw Error #2161
    they are: "Vivaldi","Harlow Solid Italic","Bauhaus 93", "Algerian".
    the error info is:
    Error: Error #2161: 设置文本布局时出现内部错误。
    at flash.text.engine::TextBlock/DoCreateTextLine()
    at flash.text.engine::TextBlock/createTextLine()
    at flashx.tcal.compose::ComposeState/createTextLine()[C:\Development\tcal_core\flashx\tcal\c ompose\ComposeState.as:292]
    at flashx.tcal.compose::ComposeState/composeNextLine()[C:\Development\tcal_core\flashx\tcal\ compose\ComposeState.as:207]
    at flashx.tcal.compose::BaseCompose/composeParagraphElement()[C:\Development\tcal_core\flash x\tcal\compose\BaseCompose.as:238]
    at flashx.tcal.compose::BaseCompose/composeBlockElement()[C:\Development\tcal_core\flashx\tc al\compose\BaseCompose.as:150]
    at flashx.tcal.compose::BaseCompose/composeInternal()[C:\Development\tcal_core\flashx\tcal\c ompose\BaseCompose.as:213]
    at flashx.tcal.compose::ComposeState/composeInternal()[C:\Development\tcal_core\flashx\tcal\ compose\ComposeState.as:120]
    at flashx.tcal.compose::BaseCompose/composeTextFlow()[C:\Development\tcal_core\flashx\tcal\c ompose\BaseCompose.as:194]
    at flashx.tcal.compose::ComposeState/composeTextFlow()[C:\Development\tcal_core\flashx\tcal\ compose\ComposeState.as:89]
    at flashx.tcal.compose::StandardFlowComposer/http://ns.adobe.com/tcal/internal/2008::callThe Composer()[C:\Development\tcal_core\flashx\tcal\compose\StandardFlowComposer.as:383]
    at flashx.tcal.compose::StandardFlowComposer/compose()[C:\Development\tcal_core\flashx\tcal\ compose\StandardFlowComposer.as:434]
    at flashx.tcal.factory::TextLineFactory$/factoryMeasure()[C:\Development\tcal_core\flashx\tc al\factory\TextLineFactory.as:267]
    at flashx.tcal.factory::TextLineFactory$/createTextLinesFromTextFlow()[C:\Development\tcal_c ore\flashx\tcal\factory\TextLineFactory.as:186]
    at mx.graphics.graphicsClasses::TextFlowComposer/composeTextFlow()[E:\dev\trunk\frameworks\p rojects\flex4\src\mx\graphics\graphicsClasses\TextFlowComposer.as:123]
    at mx.graphics::TextGraphic/compose()[E:\dev\trunk\frameworks\projects\flex4\src\mx\graphics \TextGraphic.as:511]
    at mx.graphics::TextGraphic/measure()[E:\dev\trunk\frameworks\projects\flex4\src\mx\graphics \TextGraphic.as:297]
    at mx.graphics.graphicsClasses::GraphicElement/measureSizes()[E:\dev\trunk\frameworks\projec ts\flex4\src\mx\graphics\graphicsClasses\GraphicElement.as:2592]
    at mx.graphics.graphicsClasses::GraphicElement/validateSize()[E:\dev\trunk\frameworks\projec ts\flex4\src\mx\graphics\graphicsClasses\GraphicElement.as:2554]
    at mx.components::Group/validateSize()[E:\dev\trunk\frameworks\projects\flex4\src\mx\compone nts\Group.as:307]
    at mx.managers::LayoutManager/validateClient()[E:\dev\trunk\frameworks\projects\framework\sr c\mx\managers\LayoutManager.as:837]
    at mx.controls::List/makeRowsAndColumns()[E:\dev\trunk\frameworks\projects\framework\src\mx\ controls\List.as:1302]
    at mx.controls.listClasses::ListBase/makeAdditionalRows()[E:\dev\trunk\frameworks\projects\f ramework\src\mx\controls\listClasses\ListBase.as:3901]
    at mx.controls.listClasses::ListBase/updateDisplayList()[E:\dev\trunk\frameworks\projects\fr amework\src\mx\controls\listClasses\ListBase.as:3635]
    at mx.controls::List/updateDisplayList()[E:\dev\trunk\frameworks\projects\framework\src\mx\c ontrols\List.as:1004]
    at mx.controls.listClasses::ListBase/validateDisplayList()[E:\dev\trunk\frameworks\projects\ framework\src\mx\controls\listClasses\ListBase.as:3273]
    at mx.managers::LayoutManager/validateDisplayList()[E:\dev\trunk\frameworks\projects\framewo rk\src\mx\managers\LayoutManager.as:622]
    at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\trunk\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:695]
    at Function/http://adobe.com/AS3/2006/builtin::apply()
    at mx.core::UIComponent/callLaterDispatcher2()[E:\dev\trunk\frameworks\proje

    <div class=Section1><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>xtaotao,<o:p></o:p></span></p> <br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Can<br />you please file a bug in the bug base at <a href="http://bugs.adobe.com/flex/">http://bugs.adobe.com/flex/</a><br />and include a simple test case (and/or a list of fonts not working for you)<br />showing the behavior. If you file against &#8220;Flex SDK&#8221; and the &#8220;Gumbo:<br />TextArea&#8221; it will end up in my queue and I can investigate and transfer<br />to the appropriate team(s) as needed.<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Thanks,<o:p></o:p></span></p>< br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Peter<br />deHaan<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Flex<br />SDK Team | Adobe Systems Inc.<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'><br /><br /><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span<br />style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> xtaotao<br />[mailto:[email protected]] <br><br /><b>Sent:</b> Tuesday, November 04, 2008 4:07 AM<br><br /><b>To:</b> [email protected]<br><br /><b>Subject:</b> Re: Help, some font work on flash.text.engine throw Error #2161<o:p></o:p></span></p><br /><br /></div><br /><br /><p class=MsoNormal><o:p> </o:p></p><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>A new message was posted by<br />xtaotao in <br><br /><br><br /><b>Developers</b> --<br><br />  Help, some font work on flash.text.engine throw Error #2161<br><br /><br><br />and more font work on flash.text.engine do not throw error, but display effect<br />are different with TextField. <o:p></o:p></p><br /><br /><div class=MsoNormal><br /><br /><hr size=2 width=200 style='width:150.0pt' align=left><br /><br /></div><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>View/reply at <a<br />href="http://www.adobeforums.com/webx?13@@.59b6ee06/0">Help, some font work on<br />flash.text.engine throw Error #2161</a><br><br />Replies by email are OK.<br><br />Use the <a<br />href="http://www.adobeforums.com/webx?280@@.59b6ee06!folder=.3c060fa3">unsubscribe</a>< br />form to cancel your email subscription.<o:p></o:p></p><br /><br /></div>

  • FONT issue in flash with Dynamic text

    I dont even know how to start this thread... I am having a
    serious problem with fonts on the flash movie I am Making/
    Modifiying. The Font that is being used is "standard 07_53" and I
    have been trying to understand how flash works with the fonts but
    somethings are just making me scratch my head. First off :
    - I tried using both the anti-alias for readability and the
    anti-alias for animation... the anti-alias for animation seems to
    creat sharper text in most cases.. + I am embedding all charachters
    when I do that (I know this makes my file way too big, but I am
    trying to figure out where I am going wrong)
    - Q1 : I found out changing the position of where my text box
    is on the document changes how clear the text is in the final
    puplication. Now That I have not even the simlest idea why... does
    anyone know?
    - Q2 : The justify problem... whenever I use Justify my text
    is all messed up... I even tried to change the font to Arial for
    example and it still makes some of the text a bit blurry (well it
    is blurry enough that I can notice it right away).. why does this
    happen?? and is there any kind of solution to this problem?? I
    definatly want my text justified
    - Q3 : Do I and why, have to embed the font in each text box,
    wouldnt one embeding be enough if using the same font in all the
    other text boxes?
    - Q4: Why do I see the text differently on different
    computers.. and this realy is in relation to Q1.. on my monitor all
    looks good on the published document, yet on other monitors and
    computers it looks completely fussy untill I change the position of
    that text box.
    -Q5: are there any sites that go in depth about Fonts and
    dynamic text and how they end up rendering in flash?
    you can see my problem with justified text at :
    http://www.alwayscoffee.com/mirror/flash/
    then click on COMPANY and then look at the text under "ABOUT
    US"
    by the way I am using flash 8 and publishing (flash settings
    of:) flash player 8 - action script 2.0 - compress movie option
    CHECKED - and jpeg quality 80
    I apriciate all the help I can get.
    Layth

    Hi,
    as you I don't even know where to start, as it is (as you
    have noticed) quite a complex thing. If you are still interssted in
    the subject, drop me a line, and I try to answer some of your
    questions.
    markusma
    _remove_thieu@macDOTcom

  • Fonts missing in Flash that are installed

    Hi there,
    I've created a layout in Illustrator using Myriad font,
    however when I import into Flash (on the same system) it says the
    font is missing. Sure enough Flash doesn't have Myriad in the font
    drop down, even though it is installed on the machine & visable
    to other apps. What's the problem?!
    Thanks
    Ben

    A bit of additional information... The Myriad font is a True
    Type. It was installed under C:\Program Files\Common
    Files\Adobe\Fonts so I have installed it under C:\Windows\Fonts and
    restarted Flash, however it still doesn't show up?

  • Font Bug in Flash...fonts reverting to system default

    Maybe I am doing something stupid...you never know.
    I typically use a shared lib to embed, then link fonts. I
    have SEVERAL flash files that have suddenly started to do this.
    Fonts that ARE embedded and ARE linked to shared lib swf...suddenly
    stop working and I get a font in parenthesis (which I named and
    embedded) with 'System Default" Even when I re-embed and TRY to
    re-select the new font, it keeps reverting the the bad system
    default.
    If I open a NEW text box it will let me use the RE-embeded
    font. If I try to change the font that won't release it self from
    the "system default" version...it will let me...
    But all the fonts that are in the file already have suddenly
    changed themselves. I was cutting and pasting buttons into other
    files using the same linkages, and everytime I pasted the button
    into a new file, the font automatically changed itself the the
    system default.
    I tried everything I know. I turned on the preferences to
    warn me if a font is missing...and cutting and pasting these
    buttons into a new file (that somehow won't recognize the correct
    font)...THE WARNING is not triggered...though the font will turn
    into a system font...
    I am at a loss..and there is NO WAY to repair this in my
    files without re-creating them all over again fonts., which is
    quite impossible.

    I know this is an old post, but I have a big problem like this.
    I have my web page built in CS3, I used Anna font in static text. I used this font well, no problems. Now I am with CS4, and Flash can read the font well... inside Flash (editor, not player), it shows it in italics (this fonts doesn't have italics), and there is no way to use in regular. If I turn to another font and then, turn back to Anna, neither. And sometimes, automatically turn to Times or another. BUT... sometimes (I don't know how), Flash reads the font. But the static text that doesn't work will never work. And the other yes... AND I CAN MIX BOTH TEXTS IN THE SAME MOVIE! They have exactly the same attributes, but one is working and the other isn't. You can see it in this capture (note that Anna only has Regular Style)
    You can see the page working in http://www.mariomey.com.ar and the now exported with CS4 in http://www.mariomey.com.ar/main2.swf (look all the fonts, it looks the same in Flash editor).
    Anybody...?

  • Font embedding in Flash CS5

    Hi,
    I have 3 swf files: Main, FontLibrary and Graphics.
    Main.swf loads the other two and applies logic.
    Graphics.swf is created in Flash CS5 and contains a dynamic TextField instance, to which I want to apply a font from FontLibrary.swf. To know which font to apply, I apply the same font to textfield when I create it on stage.
    The problem is that the textfField with embedFonts=true searches for glyphs in its own swf file first. I don't want to embed the font in Graphics.swf. I use anti-alias type "Use device fonts". But as size report shows it still embeds the font, with no glyphs though.
    Is there a way to not embed a font into swf file using Flash CS5.5?
    (Buy the way, if I use TLFTextField it doesn't embed the font)
    Or how can I handle the situation from my Main.swf in a way that I get font not from Graphics.swf, but from FontLibrary.swf

    Good tutorial for you:
    http://www.republicofcode.com/tutorials/flash/as3text/
    http://www.republicofcode.com/tutorials/flash/as3css/

  • How to make the font shown in Flash CS5 ?

    The font can not be shown in Flash CS5,
    I download the Meiryo font from internet, and paste it to the font folder in windows7 control panel , when i re-open the flash cs5, it is not shown yet. who can tell me how to solve this problem?

    Thanks for the tip, I did try this, but it didnt work.  It works for Texting, email and other apps, but not the "Music" or itunes app.  thats the frustrating part.

  • Font used in Flash Player

    Hi Folks,
    Need a little help here. I am running OS X 10.6.6 on a newish MacBook Pro. I began experiences some issues with Flash months ago, but didn't think much of it. It always plays video just fine, so no real problems there. However, text is the big problem. For example, on many local news sites, there is a video player with different video links to news stories. While I can see the picture of the video and watch the video, I cannot see any text that describes the video. In many cases, I can't even see the words Play or Pause. I know something should be there, but it never really bothered me until now.
    I signed up for Weight Watchers and they use Flash pretty heavily for their site to record points, track foods, weigh in, etc. The Flash page that comes up for me does not display much text at all. It looks like there are some layout problems too. It is like much of the Flash application is missing. I tried uninstalling Flash Player and reinstalling after restart. No dice. Not only that, but now Safari wouldn't recognize the plug-in. I finally gave up and decided that it must be something in my system. So I restored OS X over the existing install (not a delete and install) and did all the software updates, and once again installed Flash. No dice. Nothing changed. Still blank places where text should be. Even the Global Settings and Settings box were all screwed up.
    So, I headed over here and saw there is a 10.2 beta available. I thought maybe it would help. I installed it, and now there does appear to be more text where there was none before. The layout issues seem to be gone too. However, it still isn't all there. So, while I can see more of the Flash page, I still can't see all of it, just places where I know text should be. I can hover over some of this invisible text and a pop-up appears (apparently with invisible text too), so I know something must be there. Still can't make out the Settings box either. I was about to give up and thought I'd try it on a different account on this same computer.
    Lo and behold, it works fine on the different account. No issues. The entire Flash page loads and looks great. It works without a problem. All of the missing text from the video players are there. The Settings box has all of its text as well.
    I'm pretty convinced now that the issue must be a Font issue in my home folder on my account. This leads to ask the question: What font is used mostly in Flash? Specifically, which font is used mostly in the Settings box, since this is the font that doesn't appear in my user account. It is a sans-serif font. I can see the serif font. I'd like to know so that I can troubleshoot my Fonts folder and try to get this fixed. Anyone have any idea, or can you offer me a different suggestion to fix the issue?
    Thanks!!
    Joe

    Yup,
    I came back here to post that I had fixed the issue, and see your reply. Thank you very much. I had looked for a post just like that, but apparently I didn't look hard enough. So, thanks for replying!
    The fix you linked to is the fix I tried and it does work. In the other user account on my Mac, there were no fonts in the user's fonts folder. There were dozens in my fonts folder. So, I figured that I would just get rid of the whole folder, since it's obviously not necessary. And it worked! There is obviously a conflicting font in the user fonts folder that is causing mayhem.
    As an aside, After I had installed an update to Snow Leopard in the fall of 2010, I began having these problems. I also starting having problems when downloading documents in Microsoft Word around the same time. There was also invisible text there, too. I would have to select all and switch to a different font, which is clearly not a good solution. I was finally able to fix that issue. It too was a conflicting font. Must be a similar issue!  Probably a bug somewhere along the line...
    Have a great day!

  • Fonts in flex/flash

    I posted this question over at actionscript.org but It might suit this forum more:
    I'm trying to create an application with AIR but there is one thing that keeps bugging me and its the vector based fonts, even though I select arial 12px font-weight normal it still look different than the font in the browser and everywhere else.
    In the application I'm building I will have a textarea so I tried to import a html textarea (in flex using <mx:HTML location...) and the font in that textarea look like it should but the flex textarea looks like the flash font, heres two images illustrating my point:
    Is it possible to change the font in flash so that it look and feels like normal or do I have to load an external html textarea every time I need a textarea?

    Сode hinting in Flash Builder 4 code editor for global style, e.g.
    global {
       font-family : Arial;
    works for me.
    Also in @font-family style declarations, I can code hint for "font-family", "embed-as-cff" styles property too.
    Although, it is true you do not get code hints for values for those particular properties, I think that CSS editor could support it too, but it does not.

Maybe you are looking for

  • Connect to SQL Server from Oracle

    Does Oracle offer any connectivity to NON-Oracle databases such as SQL Server from within the Oracle database itself, similar to a database link ?

  • Writing to db more than 4000 characters

    Hi, i want to store a text with more than 4000 characters in an oracle database. i can't use varchar2(4000) what should i use? blob? clob?

  • HTML Complier Erroe

    Hi, I have been trying to import our help project from RoboHelp Classic 9.2 to RoboHelp HTML (version 9.2) everything seems to go smoothly all the correct topics etc are converted over to HTML, the problem is when I compile I get the following error,

  • Closing Illustrator Window!

    Is there ANY keystroke that will send the EMPTY Illustrator window to the dock after you have saved your work?  Can't find a solution to get rid of the darn blank window that obscures other windown behind it - you know like a cmd. W!  so I can work i

  • Connect 4th generation ipod to Kenwood KCA iP200

    I bought a Kenwood CD receiver KDC-W6537U with iPod interface KCA iP200. My understanding was that this combination should give direct access to my 4th generation iPod (version 1.2.1), but it works only partly. The problem is that the Kenwood system