Repeated field not formatting in mac acrobat reader

Hi folks,
I'm new to livecycle, but am enjoying it immensely. I'm coming at this from a design perspective so pardon my ignorance with programming skills.
Righto, I've created a form where a user can fill out a field on page 1 which is then repeated on the header of each subsequent page, so that the admin team know that each page belongs to the one person. So far so good. I have named the fields the same and they do indeed work.
The only difference is the size and colour of how the field is represented on each susequent page. The user fills the field at 10 myriad and the field is repeated on each subsequent page as 16pt myriad light in grey.
When I run this on a PC using acrobat reader the page renders perfectly.
When I run the same form on a Mac the pdf renders the subsequent 'header' entries at 10pt myriad in black
Is there any way to ensure that the mac will render the field correctly?
Thanks in advance
SunsV

HI there,
Nope, definitely using acrobat reader - preview doesn't open the file at all.
I did some further testing. If I edit the file using a mac the formatting is incorrect - if I then take it over to the PC the file formatting remains incorrect until I re-edit the fields - then it formats correctly. Finally, if I take this same file back into the mac the type is rendered correctly... unless I re-edit the fields and then it formats incorrectly.

Similar Messages

  • I am now using 10.6.8.  Downloaded Maverick but cannot update OS on HD because get message the disk is not formatted as Mac OS extended(journaled).  Tried to use Disk Utility as per instruction but cannot complete operation.

    I am now using 10.6.8.  Downloaded Maverick but cannot update OS on HD because get message the disk is not formatted as Mac OS extended(journaled).  Tried to use Disk Utility as per instruction but cannot complete operation.

    Barney-15E:
                   The partition method worked after some trepidation.  I got the spinning beach ball after partitioning and couldn't go further till I named the second partition.  That may have done it.  Right now, things seem to be working o.k.  I'm updating a current iPhoto and will have to get a MS Word program that will function on the current OS and a current  Quicken.
    If necessary, can start up from the 10.6.8 system which I downloaded to an external HD before updating.  I can always fall back on that.  Also, I hope I don't get too many disconnects.  Thank you for your help.

  • This.print(pp) with interactive type silent or automatic does not work  after upgrade acrobat reader 9 to acrobat reader 11

    After an upgrade of acrobat reader 9 to acrobat reader 11 the automatic printing of a pdf. The pdf is opened, but the print does not happen. With acrobat reader 9 it works. But with acrobat reader 11 the printing does not happen.
    I discovered when you specify pp.constants.interactionLevel.full it works on acrobat reader 11. But when you specify pp.constants.interactionLevel.silent or pp.constants.interactionLevel.automatic it does not work on acrobat reader 11. But with the full option we have a dialog  print box
    we do not want.
    In our jsp we load a pdf document and create a message handler to detect the print events of a pdf document that is in an <object> tag.
    In the pdf document we add
    package be.post.lpo.util;
    import org.apache.commons.lang.StringEscapeUtils;
    import org.apache.commons.lang.StringUtils;
    public class AcrobatJavascriptUtil {  
        public String getPostMessageToHostContainer(String messageName, String messageBody){
            return "var aMessage=['"+messageName+ "', '"+ messageBody+"'];this.hostContainer.postMessage(aMessage);";
        public String getAutoPrintJavaScript(String interactiveType, String printerName,String duplexType) {    
            String interactiveTypeCommand = "";
            if (StringUtils.isNotBlank(interactiveType)){
                interactiveTypeCommand = "pp.interactive = " + interactiveType + ";";
            String duplexTypeCommand = "";
            if (StringUtils.isNotBlank(duplexType)){
                duplexTypeCommand = "pp.DuplexType = " + duplexType + ";";
            return "" + // //
                    "var pp = this.getPrintParams();" + // //
                    // Nointeraction at all dialog, progress, cancel) //
                    interactiveTypeCommand + //
                    // Always print to a printer (not to a file) //
                    "pp.printerName = \"" + StringEscapeUtils.escapeJavaScript(printerName) + "\";" + //
                    // Never print to a file. //
                    "pp.fileName = \"\";" + //
                    // Print images using 600 DPI. This option MUST be set or some barcodes cannot //
                    // be scanned anymore. //
                    "pp.bitmapDPI = 600;" + //
                    // Do not perform any page scaling //
                    "pp.pageHandling = pp.constants.handling.none;" + //
                    // Always print all pages //
                    "pp.pageSubset = pp.constants.subsets.all;" + //
                    // Do not autocenter //
                    "pp.flags |= pp.constants.flagValues.suppressCenter;" + //
                    // Do not autorotate //
                    "pp.flags |= pp.constants.flagValues.suppressRotate;" + //
                    // Disable setPageSize i.e. do not choose paper tray by PDF page size //
                    "pp.flags &= ~pp.constants.flagValues.setPageSize;" + //
                    // Emit the document contents. Document comments are not printed //
                    "pp.printContent = pp.constants.printContents.doc;" + //
                    // printing duplex mode to simplex, duplex long edge, or duplex short edge feed //
                    duplexTypeCommand +
                    // Print pages in the normal order. //
                    "pp.reversePages = false;" + //
                    // Do the actual printing //
                    "this.print(pp);";
    snippets for java code that adds
    package be.post.lpo.util;
    import org.apache.commons.lang.StringUtils;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfAction;
    import com.lowagie.text.pdf.PdfDestination;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfName;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfWriter;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    public class PdfMergerUtil{
        private static final PdfName DID_PRINT = PdfName.DP;
        private static final PdfName WILL_PRINT = PdfName.WP;
        private List<PdfActionJavaScriptHolder> actionJavaScripts = new ArrayList<PdfActionJavaScriptHolder>();
        private class PdfActionJavaScriptHolder{
            private final PdfName actionType;
            private final String javaScript;
            public PdfActionJavaScriptHolder(PdfName actionType, String javaScript) {
                super();
                this.actionType = actionType;
                this.javaScript = javaScript;
            public PdfName getActionType(){
                return this.actionType;
            public String getJavaScript(){
                return this.javaScript;
        public void writePdfs(OutputStream outputStream, List<InputStream> documents, String documentLevelJavaScript) throws Exception {
            Document document = new Document();
            try {          
              // Create a writer for the outputstream
              PdfWriter writer = PdfWriter.getInstance(document, outputStream);
              document.open();      
              // Create Readers for the pdfs.
              Iterator<PdfReader> iteratorPDFReader = getPdfReaders(documents.iterator());
              writePdfReaders(document, writer, iteratorPDFReader);
              if (StringUtils.isNotBlank(documentLevelJavaScript)){
                  writer.addJavaScript(documentLevelJavaScript);
              addAdditionalActions(writer);
              outputStream.flush();      
            } catch (Exception e) {
                e.printStackTrace();
                throw e;
            } finally {
                if (document.isOpen()){
                    document.close();
                try {
                    if (outputStream != null){
                        outputStream.close();
                } catch (IOException ioe) {
                    ioe.printStackTrace();
                    throw ioe;
        public void addAdditionalDidPrintAction(String javaScript){
            actionJavaScripts.add(new PdfActionJavaScriptHolder(DID_PRINT, javaScript));   
        public void addAdditionalWillPrintAction(String javaScript){
            actionJavaScripts.add(new PdfActionJavaScriptHolder(WILL_PRINT, javaScript));   
        private void writePdfReaders(Document document, PdfWriter writer,
                Iterator<PdfReader> iteratorPDFReader) {
            int pageOfCurrentReaderPDF = 0;      
              // Loop through the PDF files and add to the output.
              while (iteratorPDFReader.hasNext()) {
                PdfReader pdfReader = iteratorPDFReader.next();
                // Create a new page in the target for each source page.
                while (pageOfCurrentReaderPDF < pdfReader.getNumberOfPages()) {
                  document.newPage();
                  pageOfCurrentReaderPDF++;          
                  PdfImportedPage page = writer.getImportedPage(pdfReader, pageOfCurrentReaderPDF);
                  writer.getDirectContent().addTemplate(page, 0, 0);          
                pageOfCurrentReaderPDF = 0;
        private void addAdditionalActions(PdfWriter writer) throws DocumentException{
            if (actionJavaScripts.size() != 0 ){
                PdfAction action = PdfAction.gotoLocalPage(1, new PdfDestination(PdfDestination.FIT), writer);
                writer.setOpenAction(action);
                for (PdfActionJavaScriptHolder pdfAction : actionJavaScripts ){
                    if (StringUtils.isNotBlank(pdfAction.getJavaScript())){
                        action = PdfAction.javaScript(pdfAction.getJavaScript(), writer);
                        writer.setAdditionalAction(pdfAction.getActionType(), action);
        private Iterator<PdfReader> getPdfReaders(Iterator<InputStream> iteratorPDFs) throws IOException {
            List<PdfReader> readers = new ArrayList<PdfReader>();
              while (iteratorPDFs.hasNext()) {
                InputStream pdf = iteratorPDFs.next();
                PdfReader pdfReader = new PdfReader(pdf);
                readers.add(pdfReader);        
            return readers.iterator();
    JSP code
    <script type="text/javascript" src="<bean:message key="scripts.js.internal.jquery" bundle="app"/>"></script>
        <script language="javascript">
        function goToDidPrintUrl(){
            var url = "<%=didPrintUrl%>";
            window.location.assign(url);
        function createMessageHandler() {
            var PDFObject = document.getElementById("myPdf");
            PDFObject.messageHandler = {
                onMessage: function(msg) {
                     if (msg[0] == "WILL_PRINT"){      
                        $("#printingTransitFeedBackMessage").text('<%=willPrintMessage%>');                   
                     if(msg[0] == "DID_PRINT"){
                        $("#printingTransitFeedBackMessage").text('<%=didPrintMessage%>');               
                        setTimeout('goToDidPrintUrl()',4000);
                onError: function(error, msg) {
                    alert(error.message);
        </script>
    </head>
    <body onLoad="createMessageHandler();">
    <div id="printingTransitFeedbackArea">
      <div class="info" id="printingTransitFeedBackMessage"><%=documentOpenMessage%></div>
    </div>
    <object id="myPdf" type="application/pdf" width="100%" height="100%"  data="<%=toBePrintedUrl%>">
    </object>
    </body>

    From the JS API Reference of the print method:
    Non-interactive printing can only be executed during batch, console, and menu
    events.
    Outside of batch, console, and menu events, the values of bUI and of interactive are ignored
    and a print dialog box will always be presented.

  • Note field not synchronized in .mac

    I cannot find how to include the IMPORTANT note field in the agenda on .mac.
    Am I blind?
    Thanks for any input
    MacBook Pro   Mac OS X (10.4.9)  

    HI there,
    Nope, definitely using acrobat reader - preview doesn't open the file at all.
    I did some further testing. If I edit the file using a mac the formatting is incorrect - if I then take it over to the PC the file formatting remains incorrect until I re-edit the fields - then it formats correctly. Finally, if I take this same file back into the mac the type is rendered correctly... unless I re-edit the fields and then it formats incorrectly.

  • Links in pdf file not working properly (in Acrobat Reader)

    Hello everybody
    I'm converting a book I wrote from mobi to pdf with Calibre. While formatting the document, I used some html, including a few links between different parts of the same document.
    However, when I test the pdf document in Acrobat and I click on links, they always send me about a page before of what I marked with the a name attribute... This doesn't happen when I try the book on the calibre pdf reader...
    I've been looking around but can't find why. I've checked my book on mobi, and everything is OK there. This only seems to happen on the document itself on with the way Acrobat reads it.
    Any ideas or explanations?
    Thanks!

    You might want to check with Calibre about the issue. If you had Acrobat you could reset the bookmarks. Since Adobe created the initial PDF document standard, I have seen this in PS files where bookmarks were placed on a page before any content was placed on the page. The bookmark was in the limbo area were a page might not exist if no content were added to the page.

  • Can't print "Form Fields Only" from newly-installed Acrobat Reader XI

    I have created numerous forms for our agency on which our employees used (in previous versions of Acrobat Reader) the "Form Fields Only" print function. We finally got the boss to give us the OK to upgrade to Acrobat XI Pro for me, and Acrobat Reader XI for the employees. However, they open the same forms we've been using and find that they no longer have the menu option to choose "Form Fields Only" for printing purposes. I would be very grateful to anyone who might be able to steer me in the right direction as to how I resolve this issue. Unfortunately, the job does not afford me a lot of time for research and "playing" with new software, and we need to have these forms work for us by Thursday. Help, please! And Merry Christmas to everyone!

    One possible workaround is to export the form data and then import it into a "blank" version of the same file, that has only the form fields. This would require using a script to export and import the data, and to create that additional version of the file for printing purposes.
    Or you can put the file's contents on a non-printable layer when creating it...

  • Full screen auto-hide feature does not work with Adobe Acrobat Reader add-on 11.0.0.379 in Firefox 17.01.

    "Full screen" menu item and its keyboard short cut F11 stop working with Acrobat Reader. The Firefox top edge border does not hide once you have moved around in the Acrobat document. Therefore it is not possible to display PDF documents in a true full screen mode within Firefox. The auto-hide full screen mode works nicely with other Firefox windows, so apparently the Acrobat Reader add-on breaks the feature. Windows 7 64-bit.

    From the JS API Reference of the print method:
    Non-interactive printing can only be executed during batch, console, and menu
    events.
    Outside of batch, console, and menu events, the values of bUI and of interactive are ignored
    and a print dialog box will always be presented.

  • Flash is not working in Adobe Acrobat Reader

    Hi - I created a bunch of Flash tabs in Flash CS6 - they work great - but I want to put them into Adobe Acrobat X PRO (the writer) and they imported just fine and work just great inside of Acrobat X PRO.  However when I go to send the exported PDF with the Flash elements inside of it - to someone who only has Acrobat Reader (but doesn't have the Flash plug-in installed on their machine) - that person can open the PDF and can even view the Flash element but they get a yellow bar across the top of the PDF that says they must install the Flash plug-in to use it.  Well that is great but this PDF is being used out in the field where they cannot install the Flash plugin....
    I am suprised it does this because Flash importing and exporting capability is native to Acrobat Reader...and I thought I read that Acrobat has flash reading/rendering capability natively built into the Reader itself.  Am I wrong - and/or does anyone have a workaround for this?? 
    Andrew

    Hi andrewpweyrich
    What is the version of Adobe Reader You're using ?
    Flash has been removed from the Reader X in latest releases and also it has been removed from Reader XI.
    You Need to sepeately download and install the Flash plug-in to view the flash content.

  • Database connection is not working in Free Acrobat Reader

    Hi,
    I am working on a pdf that imports data from an sql server. I got it working flawlessly in livecycle and in Acrobat Reader Pro. But in Free acrobat reader it makes an index error on the click event on the button that runs the javascript for getting a record.
    I applied reader extension from Acrobat Reader Pro, but never the less it won't work.
    My question: Does Free Acrobat Reader support this kind of database lookup with RE enabled.
    I have tried both with formcalc and javascript. Both works in livecycle and the pro version of acrobat reader.
    I am only working on the client side and do not utilize livecycle server.
    example code:
    var nIndex = 0;
    while(xfa.sourceSet.nodes.item(nIndex).name != "Dataforbindelse"){nIndex++;}
    var oDB = xfa.sourceSet.nodes.item(nIndex).clone(1);
    oDB.nodes.item(1).query.setAttribute("text", "commandType");
    oDB.nodes.item(1).query.select.nodes.item(0).value = "SELECT * FROM [Wennstrom Fuel Systems DK$Service Header] WHERE [No_] = '458SV0"+form1.main.NavID.rawValue+"'";
    oDB.open();
    oDB.close();
    The java error:
    GeneralError: Operation failed.
    XFAObject.item:2:XFA:form1[0]:main[0]:Button7[0]:click
    Index value is out of bounds
    //Casper  

    Hi andrewpweyrich
    What is the version of Adobe Reader You're using ?
    Flash has been removed from the Reader X in latest releases and also it has been removed from Reader XI.
    You Need to sepeately download and install the Flash plug-in to view the flash content.

  • Sometimes when downloading a .pdf file I'm not automatically switched to Acrobat reader, but the screen becomes white with a red borderline left and upper, IE doesn't have this problem

    The screen shows the borders of the original site. Beneath the Mozilla workbar the screen becomes white, on the left and upper side there appears a thin red line. Nothing is downloaded, clicking the right mouse button doesn't solve the problem. It doesn't happen everytime I try to load a .pdf file. When I go to the same site using Internet Explorer I do not encouter the same problem, swiching to Acrobat Reader or FoxIt is immediate.

    To enable this right you need Acrobat, not the free Reader.
    However, starting from Reader X it is possible to add simple markups to any file, unless it has been specifically disallowed by the creator of the file.

  • Dot matrix printer will not print well with acrobat reader 8 and 9.

    I have the dot matrix printer IBM Proprinter XLIII, with Acrobat Reader 7 pdf prints correctly, but with Adobe Acrobat Reader 8 and 9 print badly.
    Someone I can 'help?

    I updated the drivers with a new version, but continues to print badly with acrobat reader 8 and 9 (the text is not readable)
    If printed with Acrobat Reader 7 print is ok.

  • Mountain lion installer tells me that my Macintosh HD drive is not formatted to mac os extended, but I am running SL 10.6.8-iMac 2010

    Thanks for any suggestions...iMac 2010 SL 10.6.8  trying to install ML 10.8.2   At the start of the installation(using downloaded installer from App Store) the installer advises that the Macintosh HD is not formatted as Moc OS Extended and directs me to aDisk Utility to do this .. surely this would format the drive and possibly do a Clean install ...which I not want to do..Is there a way to get round this issue?

    Get a blank powered external drive equal too or slightly larger than your internal boot drive
    Download a copy of Carbon Copy Cloner
    Use Disk Utility to Erase the drive using the Middle Secure Erase selection and wait. until finished (may take hours)
    Format the external drive Partition: 1, Option: GUID and Fomat: OS X Extended Journaled
    Use CCC's default settings and clone your internal drive to the external one, may take hours.
    When it's done, hold the option key down (wired or built in keyboard only) and reboot the computer, a screen pops up with bootable options, select the clone drive and check it out for some time.
    Run Disk Utility from the clone and select the Macintosh HD partition and Partition: Format: OS X Extended Journaled and click apply, it likely will moan about this will delete all your data (it will)
    Next click the Erase tab and use the middle secure erase option and click apply, wait it out again.
    When that's finished use Carbon Copy Cloner to reverse clone the clone back onto the internal drive.
    (note: in the future you can eliminate the secure erase steps and just click normal erase, as the bad sectors will have been already mapped off by the drive firmware)
    Most commonly used backup methods

  • Error message during installation of Lion..."The disc is not formatted for mac os extended (journaled).  But it is according to disc utility and won't finish installing.

    I go to disc utility and verify and repair disc permissions.  Doesn't work.  I try to enable journalling but it isn't highlighted and am not able to do that as well. 

    I meet all those requirements.  core 2 duo and latest snow leopard.  I have a late 2006 mac book.  Maybe that's why.  Its telling me that my hard drive isn't formatted correctly but it is formatted as they ask.  It's not the hard drive that came with the macbook though. 

  • Keystrokes will not function in adobe acrobat reader

    A company I am affiliating with is requiring me to fill out PDF forms online.
    I am able to open the forms but when I attempt to type in a field my computer dings at me. No error messages.
    Typing is simply not excepted.
    Why?

    guesswho5000 wrote:
    First off, looking for a buddy or a friend. I'm looking for an answer.
    Second off. Perhaps whoever runs this site should improve their search engine.
    If you can find multiple answers at this site for my question.
    Please enlighten me by posting at least a dozen such answers.
    At least thanks for some kind of response.
    First off. Many people who may know the answer to your questions may simply not want to answer you if they don't like your tone. This is what I was trying to tell you more politely in my previous message. (Don't count ~graffiti, he is an exception).
    Second off. You'd have to ask Adobe about this, although it has been recently improved; before that, it was simply useless.
    Third off. Here are the results of a quick first search I did for you: http://forums.adobe.com/community/adobe_reader_forums/search.jspa?peopleEnabled=true&userI D=&containerType=14&container=3414&spotlight=true&rankBy=date&q=%22cannot+fill%22. Don't expect me to open a single one of those threads to check if it contains the full answer to your question.
    Finally. You can fill in forms with just the free Reader (not Adobe; that's the company), I think that v. 9 and above (it could be 8), but only if they have been specially enabled by the author.

  • I can not figure out why acrobat reader will not re-install on my vista business laptop.

    I had reader forever. I had a problem with Flash so I un-installed everything to do with adobe. No I have re-installed flash and activex but adobe reader will not istall or download from the website. Please help me get a download link for reader.
    I have 64 bit windows vista business.
    thanks
    josh

    You can try using this tool to first remove all traces of previous versions of Reader:
    http://labs.adobe.com/downloads/acrobatcleaner.html
    Then, download the full offline Reader installer from 
    http://get.adobe.com/reader/enterprise/
    and run it immediately after restarting your computer.

Maybe you are looking for

  • Blackmailed into buying 3.1.3 update!?

    I have an iPod Touch with OS 2.2.1, and I've been perfectly happy going along without updating to OS version 3... until I updated iTunes to version 9. iTunes 9 went and downloaded updates for my apps and replaced the versions that I had in iTunes bef

  • Subtraction in the pricing procedure.

    Hello Friends,              I have requirement as follows: I have two steps in the pricing procedure. One has a condition type and the other does not. Now my requirement is to subtract the condition price of step 1 from the condition price of step 2

  • Report - S_PLO_86000031 (G/L A/c Balances) - ECC -6

    HI, When we run this report in the middle of the month for data relating to previous month. Data is extracted upto date of the current month. What may the issue? Bye, Ramesh

  • Final cut pro not exporting to youtube?

    Final cut pro isnt exporting to youtube? why is this and what can i do to fix it? Also says keyword: too_long ?

  • Is precise image editing possible in Contribute?

    I designed a site for a client and gave them a guide with precise instructions for the sizes of images in different layouts. The problem is, Contribute doesn't seem to allow for *precise* image editing. For instance, I have a layout which uses graphi