Embedding fonts and broken up type in PDF's created in MS Word

Win 7, Acrobat 9, MS Word 2010
As we all know, Word by default doesn't embed fonts when saving as a PDF. We usually solve that problem by using the embed font preflight. The problem is that sometimes the paragraph text is broken up into a billion (well maybe a couple dozen) small chunks of text. When you apply the preflight, it can cause the type to shift position as in the sample:
Any idea why Word will sometimes do this and other time will not?
Thanks!
Mike

Thanks, Bill. I'm in a school district copy and print center and we don't have control over how the PDF files are generated most of the time. My initial testing did show an improvement printing to the Adobe PDF printer vs. saving as a PDF when it comes to chunking up the text. It doesn't solve my problem but it does throw some light on Word's behavior.

Similar Messages

  • Embedding fonts and images for printing (press quality PDF)

    I have a question about a document I have produced in InDesign that needs to go to the printers. They have told me to make sure it is a print ready document with all of the fonts and images embedded. When I convert an indd document for printing 'locally', I normally just use the Adobe PDF presets and select press quality. I thought ID works its magic and does everything required to make it print ready. Is there anything else I need to do regarding fonts and images to make the PDF ready for print?
    Thanks
    Mark

    Thank you.
    As to bleeds, the printers came back and said my pdf is okay but that yes, I need to set an extra bleed edge of minimum 3mm. Do I set this when converting to the print quality pdf or do I set this whilst working in the actual INDD document itself?
    Is the bleed then on every page regardless of the content?
    What are the steps for setting bleed and crop marks. Does that mean when I place an image for example on a page the image needs to hang slightly off the edges by 3mm or am I barking up the wrong tree?

  • When Patch for embedded fonts and Lion OSX to be released?

    Was reading through the thread about the problem with embedded fonts and Lion OSX and a patch being released the 3rd week of August. Does anyone know about the patch being released?

    This patch was released as 11.5.9 a couple of weeks ago. See this thread:
    http://forums.adobe.com/thread/895280?tstart=0
    You should be able to get it through the Help / Check for Updates menu - but I would definitely be aware that it seems to have created a couple of new issues for some users (documented in other forum posts at forums.adobe.com).

  • Embedded Fonts and HTML Text

    I am attempting to use a non-standard font in an HTML dynamic textbox using the <font> tag.  I have embedded this font using the textbox properties box and the fonts appear in the library.  According to previous posts to this form, that should do it.  But, my fonts are not appearing correctly.  Any advice?

    OK,
    I have given up messing with stylesheets, trying display:
    block, inline, different ways of formatting the XML, messing with
    XML.ignoreWhiteSpace, and XML.prettyPrinting etc.
    I went down the route of encodeURI, using a RegExp to strip
    out all tabs, linefeeds and carriage returns. This now gives
    consistent results for all situations, even embedded and none
    embedded fonts.
    e.g.
    _text:String = TEXT FROM XML, HTML TEXT etc
    var st:String = encodeURI(_text);
    var pattern:RegExp = /(%09)+|(%0A)+|(%0D)+/g;
    st = st.replace(pattern, "");
    st = decodeURI(st);
    YOUTEXTFIELD.htmlText = st;
    The <p> tags still behave as a <br/> tag, but you
    can add an extra <br/> to simulate a paragraph.
    Here is the example again with the updates,
    Hope this helps someone

  • Embedded font and Combobox

    Hello All,
    Scenario of my application: Application have combobox filled with fonts list. When user select font from combobox. Application load font swf from server and apply to text.
    I have embedded fonts in SWF using css.
    @font-face {   
        src: url("assets/fonts/arial.ttf");   
        fontFamily: "Arial";   
        fontWeight: "normal";   
        embedAsCFF: true;   
    here is code snippet to load font from server.
    var eventDesi:IEventDispatcher = styleManager.loadStyleDeclarations2(fontStyleName.@swfURL);
                eventDesi.addEventListener(StyleEvent.ERROR,function(event:StyleEvent):void{
                    Alert.show("error while downloading font " + fontStyleName.@name);
                eventDesi.addEventListener(StyleEvent.COMPLETE,function(event:StyleEvent):void{
                    fontStyleName.@isDownloaded == "true";
                   if(functionToCall != null)
                        functionToCall.call();   
    Problem:
    When I select font arial form combobox all list of fonts,tool tips are get disappear. My primary exploration is combobox has arial font and I am loading again arial and registering it. This may be the cause.
    Is there any way to set embeded font to any control?
    Thanks,
    Vikram

    Hi,
    Follow this tutorial and use the code below..
    http://www.designscripting.com/2011/06/as3-combobox-font-embedding-problem-flash-cs5/
    var arial:Font = new ArialFont();
    var myFormatBlack:TextFormat = new TextFormat();
    myFormatBlack.font = arial.fontName;
    myFormatBlack.size = 18;
    myFormatBlack.color = 0x000000;
    myComboBox.textField.setStyle("embedFonts", true);
    myComboBox.textField.setStyle("textFormat", myFormatBlack);
    myComboBox.dropdown.setRendererStyle("embedFonts", true);
    myComboBox.dropdown.setRendererStyle("textFormat", myFormatBlack);
    myComboBox.setStyle("embedFonts", true);
    myComboBox.setStyle("textFormat", myFormatBlack);
    myComboBox.prompt = "Select State";
    myComboBox.width = 248;
    myComboBox.height = 25;
    myComboBox.x = 100
    myComboBox.y = 100
    myComboBox.setStyle("textPadding", 1);

  • Embeded Fonts and Externally Loaded Text?

    Just curious, I am designing a site with two embeded fonts. I am also using many externally loaded textboxes styled by a CSS. When I use the inline HTML in the .txt file, can I specify the embeded fonts for the text boxes or will they just use default browser fonts?
    Thanks in advance,
    Jeff

    I think what I need to do is place an instance of a text box on each page, so when you navigate away from the page the existing text box will leave. This works, but I can't get the CSS to do the formatting. Here is the code I have, any suggestions?
    var fileTxt:String;
    var myTextLoader:URLLoader = new URLLoader();
    var cssLoader:URLLoader = new URLLoader();
    myTextLoader.addEventListener(Event.COMPLETE, onLoaded);
    myTextLoader.load(new URLRequest("text/tgc.txt"));
    function onLoaded(e:Event):void{
        fileTxt=myTextLoader.data;
        callCss();
    function callCss():void{
        var cssRequest:URLRequest=new URLRequest("styles.css");
        cssLoader.addEventListener(Event.COMPLETE, onCss);
        cssLoader.load(cssRequest);
    function onCss(e:Event):void{
        var css:StyleSheet = new StyleSheet();
        css.parseCSS(cssLoader.data);
        tgc_txt.styleSheet=css;
        tgc_txt.wordWrap=true;
        tgc_txt.htmlText=fileTxt;
    Like I said, it loads the text fine and eliminates the embeded HTML tags in the .txt file. It does not change color, size or weight as I have in the CSS.

  • Embedding font and animating

    Hi
    I want to use and embedd a windows 7 font.
    Whats the best way to animate this font? It's just moving slowly but its not as smooth obviously as static.
    I could vectorise, but this still isnt that smooth. Whats the best solution you guys use? I've seen websites with unusual font and animating smoothly before but I don't know how they do this!
    Thanks

    Oh...I didn't specify this, but it is people using the actual AOL client (both windows and mac) that can't see it.

  • Pdf-file, embedded font and Creative Commons license

    I use Myriad Pro font in my book. I'm going to publish it as a pdf file. The pdf file embeds Myriad Pro@. Can I publish the book under a Creative Commons license? (Creative Commons — Attribution-NoDerivatives 4.0 International — CC BY-ND 4.0)

    Fonts licensed by Adobe, including any in the Myriad Pro family, permit embedding within PDF files with no further conditions or royalties associated with such an activity.
              - Dov

  • Strange-shaped fonts and unreadable characters in the PDF file

    Hello,
    A colleague of mine printed out a PDF file that I generated. Some of the fonts in the printed PDF file appear out-of-shape (slightly squiggly but still readable). These fonts are in plain body text and some of the heading styles. In addition, unreadable characters appear for fonts in the PDF where a keyboard input character format was specified in the source (in Framemaker a different character format can be specified for individual words within a paragraph format).
    He printed this PDF file a total of eight times. For the first five times there were no issues, but in the last three times the problems occured.
    He printed the files from the same printer and some of the printing was with the PCL profile, while others were with the PS profile.
    My colleague viewed the files using Adobe Reader 8 running on Windows XP.
    My PC is also Windows XP. The document source is FrameMaker 7.2. When generating the file, I used Acrobat Distiller 8.0. It is compatible with Acrobat 5.0 (PDF 1.0). The Acrobat Reader I have on my PC is Acrobat 8.0.
    Thanks,
    Ken

    I'm using acrobat 8.1.0 and I believe I have the same problem as Ken.
    However, I have a question. If the fonts simply weren't installed, wouldn't they also appear as weird characters when looking at a soft copy in acrobat? Why would the problem only occur when printing?

  • Issue with the font and alignment in SAP Script PDF

    Hi Experts,
    I have a problem with the font in SAP Script PDF conversion.
    The output of the form is working fine but in the PDF the output is wrong.
    There is a dutch letter ' ï ' which is pinted in the form output correctly but in the PDF output the character
    has been changed to '#'.
    and also the alignment of some text has beed changed without line spacing in between.
    Please let me know what could be the problem and how to solve this issue.
    Thanks in advance,
    Regards,
    Sankara Chakradhar.

    Hi Prabhudas,
    I am using the FM 'CONVERT_OTF' to convert the data to pdf.
    The FM CLOSE_FORM is creating the IT_OTF internal table and the CONVERT_PDF uses that internal table to populate the         IT_PDF internal table and then using the FM 'SO_OBJECT_SEND' to send the PDF file to mail.
      CALL FUNCTION 'CONVERT_OTF'             
           EXPORTING                          
                format       = 'PDF'          
           IMPORTING                          
                bin_filesize = g_filesize     
           TABLES                             
                otf          = it_otf         
                lines        = it_pdf.        
    Regards,
    Sankara Chakradhar.

  • Embedded fonts and hidden text

    I've just discovered that any font used in hidden text only isn't embedded. Has anyone else found this?
    My hidden text includes Times New Roman italic. This text becomes visible on the preprint event. TNR italic isn't used for any non-hidden text. If the user fills out the form and prints it, fonts are perfect. However, if the user fills out the form and saves it, TNR italic isn't embedded in the form. Later when the user opens the form to print, the previously hidden text actually prints in Arial!

    Yes, you can dynamically load the needed fonts at run time.
    Doc is here:
    http://livedocs.adobe.com/flex/3/html/styles_10.html
    hth,
    matt horn
    flex docs

  • Open a new File() by Script and set File Type to PDF fails...

    Dear all
    I'm creating a script to download pdf Files from a server and place them into an Indesign Document. Everything works fine except Indesign does not recocnize the file Type when attempting to place the pdf and throws an error that the downloaded PDF File can not be placed due to unknown Filter.
    This is because File type apparently is set to TEXT (Creator is CARO) event though I write the file with
    myFile.open('w',"PDF","CARO");
    Any Idea how to
    - get Indesign set the FileType of a newly generated File to PDF
    or
    - Change the File Type afterwards
    or
    - tell Indesign what filter to use when placing this File?
    Thanks for your help
    BTW: Indesign CS5 (7.0.4), OS X 10.6.8

    Thanks John,
    but I already had the encoding set to binary, that does not seem to be the problem. I can open the generated File with Acrobat, that works, only Indesign can not place it....

  • Unexpected quits, missing themes, missing fonts and broken file paths

    I created a project in iDVD 5 on the Powerbook at home, and then took the drive containing the project and all related files to my dad's office to burn it on his iMac G5 (the drive in the powerbook won't burn anything - separate problem). I put all the required files which were on the Powerbook's internal HD in a folder on the external HD, so that they could be reconnected at the office (when the "following files could not be found" dialog pops up).
    However, when I opened the project on the G5, from iDVD, it told me that at least one of the themes I had used could not be found. "Ok," I thought, "which ones are they?"; clicking the "show details" triangle, I got the following message:
    "The following themes, used by this project, are missing on your system:
    (null)"
    This occured a total of five times, before the "following files could not be found" dialog appeared. Some of them had been on my desktop or in my preferences on the powerbook, which I had copied into the aforementioned folder on the portable HD, but it could not find any of the movie files nor some of the image files, all of which had not changed position on the external HD since I started the project. I showed it where all of the files were, and then another message popped up telling me a font was missing. At this point it froze on the spinning coloured ball of death, before showing me an "unexpectedly quit" message. I have been through this so many times, even tried deleting the "com.apple.iDVD.plist" file, which didn't help. I am at a loss.
    iMac G5 Intel Core Duo   Mac OS X (10.4.8)   2x 2 GHz Intel processors

    What version of iDVD is on your Dad's computer. Since you have posted in the iDVD 6 forum, perhaps it is iDVD 6? That may be your problem because I would NOT expect a project created in iDVD 5 (as you have done) to work in iDVD 6.
    If you had iDVD 6, I would have suggested you try creating an actual project archive out of iDVD (FILE>ARCHIVE PROJECT). The archive SHOULD contain all the elements you need to work on another computer.

  • [svn:fx-trunk] 6191: Fix more bugs related to embedded fonts and TLF, including TLF in an RSL.

    Revision: 6191
    Author:   [email protected]
    Date:     2009-04-21 22:02:29 -0700 (Tue, 21 Apr 2009)
    Log Message:

    Gordon, it looks like its been a while since you made this post.  Not sure how valid it is now...   I am particularly interested in the LigatureLevel.NONE value.  It seems that it is no longer supported.
    How do I turn of ligatures in the font rendering?
    My flex project involves trying to match the font rendering of Apache's Batik rendering of SVG and ligatures have been turned off in that codebase.  Is there any way (even roundabout) to turn ligatures off in flash?
    Thanks,
    Om

  • Www and http not displaying in pdf files converted from MS Word

    When I convert a Word document to pdf using Acrobat Pro 9.0, the website addresses do not display correctly. For instance, if my document shows www.website.com - then the pdf only displays .website.com. Also, if I have the http://www.website.com - I get ://www.website.com. Please HELP! I remember having this problem when I used the trial version of Acrobat 9.0, but stumbled upon the solution. I can't figure it out this time.

    You'll want to ask your question in the Acrobat forum rather than here in the Reader forum.

Maybe you are looking for

  • Export to excel  : Error no class found

    Hello Experts, I am facing a problem  while exporting the data into excel sheet. DC1 : i have created library dc which contains jxl.jar file in library folder DC2 : j2ee library DC--->DC1 is the used dc in this and DC2 build and deployed successfully

  • Blackberry Internet Service account

    Hi everyone, well, despite trying, this newbie couldn't get on with her Blackberry so has returned it to the shop and gone back to using her sad little nokia. I wanted to ask one quick last question before saying goodbye. When I first set up my Black

  • How do i upgrade from 6.0.6 to the latest version of iPhoto . I have a mac pro with OS 10.7.5 ?

    How do i upgrade from 6.0.6 to the latest version of iPhoto . I have a mac pro with OS 10.7.5 ?

  • Date operators not woking as expected???

    Select * from scott where date>'2003-SEP-01'; I want to get all records for Sep 2, 3, 4... and so on. So why does it return records with dates that are before Sep 1, that is, Aug 31, June 1, Jan25, etc... You get the idea? I want dates that are great

  • Problem configuring the mouse in KDE 3.4.

    This is a problem I'm having since I upgraded KDE from 3.2 to 3.3. When I try to configure the mouse in Control Center - Peripherals - Mouse, I get this error message: The specified library input could not be found. The diagnostics is: /opt/kde/lib/k