Embedded fonts not used in all components

If I use a font by setting the global & Application selector to have that font-family, everything works fine:
     global, Application
         font-family: "Bauhaus 93";   
Thing is though, some people might not have this font, so I tried to embed it as in:
     @font-face
          src:local("Bauhaus 93");
          fontFamily: Bauhaus
     global, Application
         font-family: Bauhaus;   
Most text has the desired font, but buttons and some other components still have the default font.  What can I do?

Check out this thread:
http://discussions.apple.com/click.jspa?searchID=4541194&messageID=5729015

Similar Messages

  • Embedded fonts not displaying Correctly

    I have exported a 100+ page document from InDesign CS5.5 All fonts not in the system fonts are displaying as Minion Pro.
    The fonts are listed as embedded (subset) and the fonts allow for embedding.
    View the original discussion as necessary in InDesign forum, http://forums.adobe.com/message/4126902#4126902
    The incorrect display seen in Reader 8.3 and AA Pro 9.4.7
    I have toggled Use Local Fonts without change.

    I'm not doing anything to scale the movieClip.  I press CMD and enter and thats what comes out.  When I CMD + I zoom in and thats the second picture.
    Regarding font embedding, I've enabled linkage and created a new class of it in my AS3 class file.  Is there anything else I should do?
    Oh..may be worth mentioning, all the text is actually Label components. 

  • How can I create a PDF with embedded fonts (not a subset of the font) from Excel?

    I need to create PDF's from Excel spreadsheets. The PDF needs to have embedded fonts but every time I create one it only has a subset of the embedded font.  I have tried setting preferences in the Acrobat add in (unchecked the "Subset Embedded Fonts" option and also tried with the Subset Embedded Fonts checked but the percentage set to only 1% in an attempt to force full font to be embedded.)
    I also tried opening the resulting PDF with Acrobat Pro XI but could not figure out how to add the font in.
    A method to accomplish the results from either tool would be great.

    Anna;
    Unless you can add those fonts to your system via the Font book and then substitute them in iPhoto, you'll have to either user the available fonts or create your own pages, 8.5 x 11, in an image editor like Photoshop Elements and use them on pages that are one photo per page. Other's have done that with some success.
    If you has PS or PSE create an 8.5 x 11" canvas at 300 dpi. Then you can add your photos, add text (if PS can use the text), and create your own layout.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • A font not used in an MS Word doc is showing up in the PDF properties and won't embed

    A friend needed a new manuscript uploaded to a publishing site. I retyped it in MS Word (2007) using NO formatting shortcuts and using only ONE font (Georgia)  for both body and headers/footers. Placed all the jpg illustrations on the pages. Then saved it in the required PDF format for the publisher's system to use. They also require that ALL fonts/symbols are embedded. Even ONE character that is not embedded will void the file. I'm now on attempt 17.
    When I checked the properties on this PDF file, the font I used, including italics, symbols and bolding, are noted as embedded. However, it also says that there is ARIEL font (which I did not use) that is NOT embedded. AARRGGHH.
    This gal wants her book ready in two weeks. HOW can I resolve this? Any ideas? I saved it once through MS Word using the PDF option, but also tried it through my Photoshop Elements. Same result. My PC uses Windows 8 (NOT 8.1) and the Adobe Reader XI.0.7. The Java files are the most current update as of yesterday.

    It seems to me to be a problem of MS Word, not Adobe Reader.
    Also, I don't know how you can convert a Word doc to PDF with Photoshop Elements.

  • Embedded font not working in Spark Label control?

    Hi,
    I'm trying to use embedded fonts with the Spark Label (formerly SimpleText) control. I'm using SDK 4 build 10485 now, but I could not manage it in Beta 1 neither.
    I'v been playing with cff: true/false, embedAsCFF:true/false but no results.
    I've added my test application where it does work with the Halo <mx:Label> control, but not with the Spark <s:Label> control.
    So, no compiler errors, but the Spark label control shows a serif (Helvetia?) font where it should be sans as does the Halo control.
    Can anybody help me out here?
    Thanks
    Jan
    As I get the message 'the content type of this attachment is not allowed' on uploading the MXML file, here is the code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/halo"
        minWidth="1014" minHeight="768"
        backgroundColor="#7B7374">
        <s:layout>
            <s:VerticalLayout paddingBottom="8" paddingLeft="8" paddingRight="8" paddingTop="8" />
        </s:layout>
        <fx:Style>
            @namespace mx "library://ns.adobe.com/flex/halo";
            @namespace s "library://ns.adobe.com/flex/spark";
            @font-face {
                src: url("project/assets/thesans/THSP____.TTF");
                fontFamily: HaloSans;
                fontWeight: normal;
                advancedAntiAliasing: true;
                unicode-range: U+0021-U+007B;
            @font-face {
                src: url("project/assets/thesans/THSP____.TTF");
                fontFamily: SparkSans;
                fontWeight: normal;
                advancedAntiAliasing: true;
                unicode-range: U+0021-U+007B;
                embedAsCFF: true;
            .mySparkSans {
                fontFamily: SparkSans;
                fontSize: 24;
            .myHaloSans {
                fontFamily: HaloSans;
                fontSize: 24;
        </fx:Style>
        <s:SkinnableContainer>
            <s:Label styleName="mySparkSans" text="This should be TheSans but it is not...., notice the characters 'ag'"/>
            <mx:Label styleName="myHaloSans" text="This is TheSans, notice the characters 'ag'" top="100"/>
        </s:SkinnableContainer>
    </s:Application>

    Hi,
    I'm trying to use embedded fonts with the Spark Label (formerly SimpleText) control. I'm using SDK 4 build 10485 now, but I could not manage it in Beta 1 neither.
    I'v been playing with cff: true/false, embedAsCFF:true/false but no results.
    I've added my test application where it does work with the Halo <mx:Label> control, but not with the Spark <s:Label> control.
    So, no compiler errors, but the Spark label control shows a serif (Helvetia?) font where it should be sans as does the Halo control.
    Can anybody help me out here?
    Thanks
    Jan
    As I get the message 'the content type of this attachment is not allowed' on uploading the MXML file, here is the code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/halo"
        minWidth="1014" minHeight="768"
        backgroundColor="#7B7374">
        <s:layout>
            <s:VerticalLayout paddingBottom="8" paddingLeft="8" paddingRight="8" paddingTop="8" />
        </s:layout>
        <fx:Style>
            @namespace mx "library://ns.adobe.com/flex/halo";
            @namespace s "library://ns.adobe.com/flex/spark";
            @font-face {
                src: url("project/assets/thesans/THSP____.TTF");
                fontFamily: HaloSans;
                fontWeight: normal;
                advancedAntiAliasing: true;
                unicode-range: U+0021-U+007B;
            @font-face {
                src: url("project/assets/thesans/THSP____.TTF");
                fontFamily: SparkSans;
                fontWeight: normal;
                advancedAntiAliasing: true;
                unicode-range: U+0021-U+007B;
                embedAsCFF: true;
            .mySparkSans {
                fontFamily: SparkSans;
                fontSize: 24;
            .myHaloSans {
                fontFamily: HaloSans;
                fontSize: 24;
        </fx:Style>
        <s:SkinnableContainer>
            <s:Label styleName="mySparkSans" text="This should be TheSans but it is not...., notice the characters 'ag'"/>
            <mx:Label styleName="myHaloSans" text="This is TheSans, notice the characters 'ag'" top="100"/>
        </s:SkinnableContainer>
    </s:Application>

  • Embedded fonts not working in Air for ios

    hi
    am building an ActionScript mobile project 4.6 for ios and want to use embedded fonts for my app.
    we are using the swf method for embedding the fonts , after loading the xml and even got the embedded resourses from swf , the output is not showing the exact font used , instread it is displaying one of default ios fonts in place of it...
    here is the code of my embedded fonts and we are using TLF for text output:
    ....inside my loaded swf: -
    package
        import flash.display.Sprite;
    import flashx.textLayout.compose.ISWFContext;
    public class Slide1 extends Sprite implements ISWFContext
            [Embed(source="C:/WINDOWS/FONTS/ariblk.TTF", fontName="Arial Black", embedAsCFF = "true", unicodeRange="U+0041,U+0072,U+0069,U+0061,U+006C,U+0020,U+0062,U+006F,U+0064", mimeType="application/x-font")]
            public function callInContext(fn:Function, thisArg:Object, argsArray:Array, returns:Boolean=true):*
                  if (returns)
                          return fn.apply(thisArg, argsArray);
                  fn.apply(thisArg, argsArray);
    please help asap!
    thanks

    hi
    am building an ActionScript mobile project 4.6 for ios and want to use embedded fonts for my app.
    we are using the swf method for embedding the fonts , after loading the xml and even got the embedded resourses from swf , the output is not showing the exact font used , instread it is displaying one of default ios fonts in place of it...
    here is the code of my embedded fonts and we are using TLF for text output:
    ....inside my loaded swf: -
    package
        import flash.display.Sprite;
    import flashx.textLayout.compose.ISWFContext;
    public class Slide1 extends Sprite implements ISWFContext
            [Embed(source="C:/WINDOWS/FONTS/ariblk.TTF", fontName="Arial Black", embedAsCFF = "true", unicodeRange="U+0041,U+0072,U+0069,U+0061,U+006C,U+0020,U+0062,U+006F,U+0064", mimeType="application/x-font")]
            public function callInContext(fn:Function, thisArg:Object, argsArray:Array, returns:Boolean=true):*
                  if (returns)
                          return fn.apply(thisArg, argsArray);
                  fn.apply(thisArg, argsArray);
    please help asap!
    thanks

  • Embedded fonts not displaying when building project via mxmlc

    I have a flex 3 project and I'm trying to upgrade it to flex 4.6 sdk. I have a number of embedded fonts in my application. These display fine when I build via Eclipse/Flash builder. When I build using mxmlc the embedded fonts are not being used. I build the fonts in the same way for both so I am assuming there is some compiler option which I am missing, or which I have that is causing the problem. I've tried every compiler option I can think of and now I'm at a dead end...
    <target name="compile" depends="getswcs, compilemodules"> 
         <echo message="mxmlc=${mxmlc}"/>
         <echo message="flex.lib.dir=${flex.lib.dir}"/>
         <echo message="flex.extlib.dir=${flex.extlib.dir}"/>
         <echo message="flex.locale=${flex.locale}"/>
         <echo message="flex.locale.dir=${flex.locale.dir}"/> 
         <exec executable="${mxmlc}" dir="${basedir}" failonerror="true">
              <arg line="'src/${main}'" />
              <arg line="-o 'bin/${component.lowercase.name}.swf'" />
              <arg line="-l+='${flex.lib.dir}'" />
              <arg line="-sp src" /> <arg line="-accessible" />
              <arg line="-strict" />
              <arg line="-el '${flex.extlib.dir}'" />
              <arg line="-compatibility-version=3.0.0" />
              <arg line="-target-player '11.1'" />
              <arg line="-include-libraries+=lib" />
              <arg line="-locale ${flex.locale}" />
              <arg line="-l+='${flex.locale.dir}'" />
         </exec> 
    </target>
    The compileModules builds my fonts, for example:
    <exec executable="${mxmlc}" dir="${basedir}" failonerror="true">
         <arg line="fonts/OCRAEXT.as" />
         <arg line="-static-link-runtime-shared-libraries" />
         <arg line="-o bin/lib/OCRAEXT.swf" />
    </exec>`
    as file:
    public class OCRAEXT extends Sprite {
         [Embed(source='OCRAEXT.TTF', fontName='_OCRAEXT', embedAsCFF='false', unicodeRange='U+0030-U+0039,U+002E,U+002F,U+20AC')]
    public static var font:Class; }
    I don't think there's an issue here, since the fonts are already built via my compileModules before building the application in Eclipse, where the fonts display correctly.

    Try comparing SWF sizes and link-reports.

  • Fonts not appearing under all users

    I have recently performed a clean install on one of our G5s. When I installed the our corporate fonts, the only appear in Font Book under the admin account and not the other user account.
    Whenever I try to add them to Font Book in the other user account, they still don't appear.
    I have installed them in /Library/Fonts folder, so assumed they would be available to all users.
    I'd appreciate any ideas.

    Hi, Maff. Welcome to the Discussions.
    1. Double-check that they are not in the Home > Library > Fonts folder of the Admin account on the affected Mac.
    Font Book's preferences specify by default that fonts installed via Font Book are saved in the User collection, i.e. the Home > Library > Fonts folder of the user installing the fonts. If one wants to use Font Book to install the fonts in the Computer collection, i.e. the Macintosh HD > Library > Fonts folder, one must change this in Font Book's preferences.
    2. If you did not use Font Book but placed the fonts in Macintosh HD > Library > Fonts folder of the affected Mac yourself, assure that:
    • The permissions for Others on that folder permits Read Only.
    • The permissions for Others on the fonts in question are at least Read Only.
    Check the permissions using the Details sub-panel of the Ownership & Permissions panel of the Get Info window of that folder or the fonts in question. If the permissions are incorrect, make changes accordingly using the Others pop-up menu.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Embedded font not appearing...

    If you run the following code provided you have a MC on stage
    with "ball" as instance name, the text appears as intended. However
    if you uncomment the line that embeds the font, it does not display
    at all. I have a Font symbol in my library with the same name as
    you see in the Text Format object "Verdana" and it's been checked
    for export for AS. Do I have to do something else? Is the order of
    the code affecting the result?

    I figured it out. I had set the alpha to 0. Dugh!

  • Unable to load project after delete some path with files but not used at all

    Im using the demo of Premiere Pro CC last demo download today.
    All the fuc**ng day editing some videos, and saved, then I deleted som efolder containing some video files (almost not used) then when I try to open premiere the project I were working, premiere opens, load and freezes and nothing happens, it keeps on the main area withouht any windows, and I cant get my 10 hours of work What happening with thei premiere ? And Im unable to open the project in Premiere CC 7.0 from another computer as saif it was done using new version.
    I NEED A SOLUTION !
    Or never never more use premiere

    I NEED A SOLUTION !
    Don't do this mid stream in EDIT
    ... I deleted som efolder containing some video files (almost not used)...
    TRY  - Go to you Back Up project file or an Auto save and hope that recovers some of your work afterrestoring what you deleted.

  • Embedded fonts not working

    embedded fonts aren't working for me in TextFlow. The non-embedded/pre-included fonts are working fine but if i try to add my own font, it doesn't work.
    i have the font set to DF4 and i have it exported for ActionScript with a class name.
    the font i'm using specificaly is Kozuka Gothic Pro L, which is OpenType.
    any ideas what's wrong here?
    if you need me to provide any more data pls let me know.

    pertinent as code:
              private function startLoadingXML():void {     
                   titleLdr = new URLLoader();
                   titleLdr.addEventListener(Event.COMPLETE, loadComplete);
                   titleLdr.addEventListener(IOErrorEvent.IO_ERROR, loadError);
                   titleContent = new String();
                   titleContainer = new Sprite();
                   this.addChild(titleContainer);
                   titleContainer.x = 40;
                   titleContainer.y = 837;
                   titleFlow = new TextFlow();
                   titleLdr.load(new URLRequest("XML/titleLdr.txt"));
                   titleTxtOutput.text="Loading an external file...";
                   trace("Loading an external file...");
              public function loadComplete(e:Event):void {
                   titleContent = titleLdr.data;
                   titleTxtOutput.text="An external text file, markup.txt, was loaded.";
                   trace("An external text file, markup.txt, was loaded.");
                   titleLdr.removeEventListener(Event.COMPLETE, loadComplete);
                          titleLdr.removeEventListener(IOErrorEvent.IO_ERROR, loadError);
                   placeIconTitle();
              function loadError(e:IOErrorEvent):void {
                   titleTxtOutput.text = "Error loading an external file.";
                   trace("Error loading an external file.");
              private function placeIconTitle():void {
                   titleFlow = TextConverter.importToFlow(titleContent, TextConverter.TEXT_LAYOUT_FORMAT);
                   titleFlow.flowComposer.addController(new ContainerController(titleContainer, 400, 400));
                   titleFlow.flowComposer.updateAllControllers();
                   //titleFlow.fontLookup = FontLookup.EMBEDDED_CFF;
    which leads to the text:
    <TextFlow color="#FFFFFF" columnCount="0" columnGap="0" columnWidth="0" fontFamily="Meiryo" fontSize="14" lineBreak="toFit" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0" paragraphSpaceAfter="0" paragraphSpaceBefore="0" verticalAlign="top" whiteSpaceCollapse="preserve" textAlpha="1" xmlns="http://ns.adobe.com/textLayout/2008">
         <p color="#FFFFFF" fontSize="18" trackingRight="2" fontWeight="normal">
              <span>subTitle</span>
         </p>
         <p fontSize="40" fontFamily="Kozuka" textAlpha=".2" baselineShift="85">
              <span fontWeight="bold">main</span><span fontWeight="normal">title</span>
         </p>
    </TextFlow>

  • Embedded fonts not showing?

    I've embedded fonts in my swf for users. On my computer, which contains the font, it works locally and online as it shoud. However, on user's computers without the font it defaults to the device font, why? Isn't the font supposed to be embedded in the file? Thanks...

    Using this global custom style
    package com.rg.Misc{
    // import classes
    import flash.display.Sprite;
    import fl.controls.listClasses.CellRenderer;
    import fl.controls.ComboBox;
    import fl.managers.StyleManager;
    import fl.controls.TextInput;
    import flash.text.TextFormat;
    // initialize class
    public class ComboCustomStyle extends Sprite{
      // formats
      private var upFormat:TextFormat;
      private var overFormat:TextFormat;
      // main constructor
      public function ComboCustomStyle() {
       upFormat = new TextFormat();
       upFormat.font = new DoctorSoos().fontName;
       upFormat.color = 0x666666;
       upFormat.size = 16;
       upFormat.letterSpacing = .5;
       StyleManager.setStyle("upFormat",upFormat);
       overFormat = new TextFormat();
       overFormat.font = new DoctorSoos().fontName;
       overFormat.color = 0x666666;
       overFormat.size = 16;
       overFormat.letterSpacing = .5;
       StyleManager.setStyle("overFormat",overFormat);
       StyleManager.setComponentStyle(ComboBox,"textFormat",StyleManager.getStyle("upFormat"));
       StyleManager.setComponentStyle(TextInput,"textFormat",StyleManager.getStyle("upFormat"));
       StyleManager.setComponentStyle(CellRenderer,"textFormat",StyleManager.getStyle("overForma t"));

  • Correct font not used

    The drop-down menu at the top of the noted site does not display correctly in Firefox 8.01. I does display correctly in IE, Chrome, and Opera. It looks to me like Firefox does not use the correct font for the display, which causes the list to wrap rather than to display in one line.

    If you have increased the minimum font size then try the default setting "none" as a high value can cause such issues.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow websites to choose their fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced > [X] "Allow pages to choose their own fonts, instead of my selections above"
    Also make sure that the <b>gfx.downloadable_fonts.enabled</b> pref is set to true on the <b>about:config</b> page.
    *http://kb.mozillazine.org/about:config

  • Flash animation in Captivate - Embedded fonts not displaying.

    I'm in Captivate 5 creating a lesson, I have made a simple animation in Flash 5 that contains one word in the animation. I output it from Flash to a .swf. Before I output it I set the font (Arial) to embed. It previews fine, when I view the small library review animation in C5 it appears fine. When I F10 to preview the slides, the font has reverted to a default system font. Any idea why the embedded font would not display properly when I do a 5 slide preview in Captivate?
    Best, Steve

    Check out this thread:
    http://discussions.apple.com/click.jspa?searchID=4541194&messageID=5729015

  • Google API font not working in all places

    Hi guys,
    I'm working on a site and on one of my pages, google's api font will only work on one header (I have them as a paragraphs) in safari. I've only checked firefox and they look fine there. I'm unable to find a fix or a discussion about this issue and I was hoping someone here could take a look. On my index page, it works fine with two headers and I have it done on other pages as well. I'm only having problems with my FAQ page. I have tried a couple different ways to achieve this with my css but I keep getting the same problem and I'm sure you know how frustrating it can get.
    Maybe a fresh set of eyes will see the problem.
    http://huntingtonbbq.com/New/faq.html
    Thanks in advance.

    Hi
    A lot has to do with how the css file is parsed, I normally include the @font-face with the h1 declarations first, (or whichever is the highest in the document) and get this working. One must remember that the font-family rule in the @font-face must also be included in the font-family for, (say) the h1, exactly as given, (I have also found that using double quotes where necessary in the h1's font-family works better).
    If you are updating a page from the old none web fonts to use the @font-face it is often necessary to at least reload the page, also watch the linking to the various font files as the download links often require changing, (hopefully cs6 will have the use of @font-face built-in and correctly functioning).
    It does take some practice, especially when updating an old css file to get the @font-face working correctly, (like finding the more specific rules that are overwriting the one you have modified!!) but once you have done this two or three times you will wonder what the problem was.
    If you wish to look at an example of the @font-face rule in operation view the code on any of the pages of my site at - http://www.pziecina.com. The homepage has it on the actual html page.
    PZ

Maybe you are looking for

  • Can't open pdf with Adobe reader 11.0

    2009 24" iMac G5 OSX 10.8.2 After downloading pdfs, even Apple's iPhone manual and saving it to my hard drive, I cannot reopen it. The Adobe Reader error message says that the file is damaged and cannot be opened. I tried reinstalling 11.0 but to to

  • OC4J 11 with ADF Runtime does not start.

    When starting OC4J 11 I get this error. Error initializing server: Shared library "oracle.fabric.runtime" could not be found. Fatal error: server exiting I downloaded OC4J 11 (11.1.1.0.0) Standalone. Then I was running "ADF Runtime Installer" in JDev

  • TypeError: menuFn.match(searchPatt) has no properties

    When I insert a Fireworks .jsp file into my Dreamweaver document, I get an error message: 'While executing onClick in Fireworks HTML.htm, the following JavaScript error(s) occurred: At line 438 of file "F:\Program Files\Macromedia\Dreamweaver MX 2004

  • Sales order stock not taken into consideration when GR is posted.

    Hello All, I had a scenario in which, I have created a MTO sales order. I have created a PO from the PR. I did the GR for the PO quantity. The plant and storage location are warehouse managed.(The storage location is HU managed) I created an inbound

  • DNG Converter 5.6 crashes

    I just downloaded the DNG Converter 5.6 Release Candidate for Mac.  I have been trying to convert photo files from my Canon EOS 7D and the application crashes every time I try to convert.  I tried converting them right from a Firewire 800 card reader