PDF weirdness / sending Pages PDFs to the printers

Hey!
I have problems exporting my Pages documents to PDF. For small fonts they look totally pixly when viewing. I'm not sure, but seems like it's only fonts under 9pts in size. Looks awful. Not sure what's happening. Also, when using the 'best' alternative when exporting the file size is a staggering 23.9mb. The 'better' setting yields a filesize of 380k or something. But I have no idea what exactly Pages does!? I'm used to be working in InDesign and this drives me nuts.
Also, has anyone sent a PDF made from a Pages document to the printers? I mean like offset printer.
I'm using Pages 3.02...
thanks

D,
I am using three (offset) printers with very few problems. One was when I used Pages Opacity function to fade a B&W graphic for use behind text. It printed too dark and made the text hard to read. The printer advised me to change the black color to gray color (rather than use the Opacity slider) which I did in Photoshop Elements. Another problem was using Pages new Frames. I chose the one with the ragged edges and the "masked" portion came out gray. Back in v2.x I had a few problems with drop shadows but that seems to be okay now.
These are all gray scale jobs. One color job I took to Minute Man Press and the result was excellent.
Another was done on a digital copier because it was such a short run. Again, no problems.
The printers all do the impositions; I don't have to do them for them.
The secret here is to work with your printer, ask his advice and if he can't handle your PDFs, try another printer. It can be done. (I make my PDFs from the Print menu and use the Save as PDF... option.)
Walt

Similar Messages

  • ME23N Script convert to PDF and send thru mail to the user created by

    Hi,
    I have created a custom PO SAP scirpt for the tcode ME23N and configured the same in tcode NACE Application 'EF' , output type 'NEU'
    But the client requirement is to send  this SAP Scipt PO converted to pdf & then send thru email to the user who created PO (ME23N)?
    How do u get this functionality please let me know?
    Regards,
    Anil

    Hello,
    that is easy, you only need to keep the steps to do in mind:
    1) find a suitable point to place in your code to do all this for you
    2) create a FM that will convert your form into PDF (search a little, this has been done like zillion times here)
    3) create a FM that will send the PDF stream (hex data which is accepted by the BCS class as the attachment data)
    4) check the email customizing in your system
    5) run and enjoy
    All the parts has been done here many times, shouldn´t be a problem.
    Otto

  • How to split a parallell-page PDF into single-page PDF

    My situation: I have a few hundred pages of files I made quite a few years ago, optimized for "self-publishing" via the printer. I no longer have any source files (my own bad). These files have 2 pages next to each other in an A4 landscape PDF. I would like to change and combine these files into a US Letter portrait PDF.
    I have browsed earlier, similar threads, most notably the most referred to thread:
    http://forums.adobe.com/message/3331516
    which recommends using Adobe PDF printer. However, as this thread points out, and as I for one have found on my own system (10.8.3), Adobe PDF printer is no longer an option on Mac OS X (version 10.6 and on):
    http://forums.adobe.com/thread/556366
    So the question then is: How do we now split double-page landscape PDFs into single-page portrait PDFs?

    Since at least OSX.5 adobe has removed PDF Printer which was begining to fail it was written in Adobe's altered version of javascript and it was a wonder it was working to begin with They replaced it with an Automator action that's called up through the print Driver.
    Here are the steps for applications other than Acrobat.
    create you doucument. laying it out the way you want it.
    Go to Print menu.
    click and hold the pdf button - a context menu pops up.
    now scan the list of choices and choose Adobe PDF or Adobe Quality PDF (depends on version of OS)
    wait for direction fields to come up and make the desired choices (the first screen is basically job options).
    when asked ask for name either ecept name give or choose name of your choice.
    Browse to desired location for file
    then click save.
    How the PDF is layed out in acrobat is determinedby acrobat. Adobe add an additional Layer on top of the Print Driver. You can by pass it and use the Print Driver but if there is an orientation switch in your docment the page is turned so everything comes out with same edge of Paper
    Oh, look out for a Grand idea Adobe did that even Forest Gump would have left alone.
    If you want to do duplex printing to a PDF with more than one page you won't be able to do so whether you have your printer setup for duplex printing. You can go back and forth from printer setting s to Printer setting toggling off and on til you turn blue in the face. You have to go into the document properties and loo for a command called SIMPLEX printing its on by default and needs to be turned off. Even my cat Boots would be smart enough not to put that in.
    This settinging does not permanently turn off and you have to do with each document you create or resave.

  • Making spool, convert it into PDF and send that PDf throgh EMAIl

    Hi,
    In my making ALV report. In that i want to make the spool  and then convert it into the pdf and send mail to the recepient.
    Atul

    Hi,
    please try the following code. It works for me.
    DATA : itab LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA : file_name TYPE string.
    DATA : path LIKE pcfile-path.
    DATA : extension(5) TYPE c.
    DATA : name(100) TYPE c.
    DATA:receiver TYPE somlreci1-receiver  ,
         p_file   LIKE rlgrap-filename.
    declarations for PDF convertion
    DATA:  path1       TYPE string ,
           fullpath    TYPE string.
    DATA :textlines LIKE tline OCCURS 100 WITH HEADER LINE.
    DATA otf LIKE itcoo OCCURS 1000 WITH HEADER LINE.
    DATA it_lines LIKE tline OCCURS 100 WITH HEADER LINE.
    DATA options LIKE itcpo.
    DATA header LIKE thead.
    DATA result     LIKE     itcpp.
    DATA: bin_filesize TYPE i.
        fullpath type string.
    DATA: docdata LIKE sodocchgi1,
    objpack LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
    objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE,
    objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objhex LIKE solix OCCURS 10 WITH HEADER LINE,
    reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    DATA: tab_lines TYPE i,
    doc_size TYPE i,
    att_type LIKE soodk-objtp.
    DATA: listobject LIKE abaplist OCCURS 1 WITH HEADER LINE.
    DATA: filesize TYPE i,
          convcount TYPE i,
          cancel(1).
    textlines-tdformat = '*'.
    textlines-tdline    = 'Hello Hao'.
    APPEND textlines.
    options-tdgetotf = 'X'.
    options-tdnoprev = 'X'.
    CALL FUNCTION 'PRINT_TEXT'
      EXPORTING
      APPLICATION                    = 'TX'
      ARCHIVE_INDEX                  = ' '
      ARCHIVE_PARAMS                 = ' '
      DEVICE                         = 'PRINTER'
       dialog                         = ' '
        header                         = header
       OPTIONS                        = options
    IMPORTING
      NEW_ARCHIVE_PARAMS             =
       RESULT                         = RESULT
      tables
        lines                          =  textlines
       otfdata                        = otf
    EXCEPTIONS
      CANCELED                       = 1
      DEVICE                         = 2
      FORM                           = 3
      OPTIONS                        = 4
      UNCLOSED                       = 5
      UNKNOWN                        = 6
      FORMAT                         = 7
      TEXTFORMAT                     = 8
      COMMUNICATION                  = 9
      BAD_PAGEFORMAT_FOR_PRINT       = 10
      OTHERS                         = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'CONVERT_OTF'
         EXPORTING
              format            = 'PDF'
         IMPORTING
              bin_filesize      = filesize
         TABLES
              otf               = otf
              lines             = it_lines
         EXCEPTIONS
              err_conv_not_possible = 1
              err_bad_otf           = 2.
    fullpath = 'C:/foldername/test.pdf'.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        bin_filesize                  = bin_filesize
        filename                      = fullpath
        filetype                      = 'BIN'
      APPEND                        = ' '
      CODEPAGE                      = ' '
      NO_BYTEORDER_MARK             = ' '
    IMPORTING
       FILELENGTH                    = c
      TABLES
        data_tab                      = it_lines
      FORMAT_TAB                    =
      EXCEPTIONS
        file_write_error              = 1
        no_batch                      = 2
        gui_refuse_filetransfer       = 3
        invalid_type                  = 4
        no_authority                  = 5
        unknown_error                 = 6.
    *filename = fullpath.
    CLEAR docdata.
    REFRESH objpack.
    CLEAR objpack.
    REFRESH objhead.
    REFRESH objtxt.
    CLEAR objtxt.
    REFRESH objbin.
    CLEAR objbin.
    REFRESH objhex.
    CLEAR objhex.
    REFRESH reclist.
    CLEAR reclist.
    REFRESH listobject.
    CLEAR listobject.
    CLEAR tab_lines.
    CLEAR doc_size.
    CLEAR att_type.
    Set Variables
    docdata-obj_name = 'Tst'.
    docdata-obj_descr = 'Testing'.
    reclist-receiver = give the mail id.
    reclist-rec_type = 'U'.
    APPEND reclist.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = fullpath
          filetype                = 'BIN'
        TABLES
          data_tab                = itab
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
      path = fullpath.
      CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
      EXPORTING
      complete_filename = path
    CHECK_DOS_FORMAT =
      IMPORTING
    DRIVE =
      extension = extension
      name = name
    NAME_WITH_EXT =
    PATH =
      EXCEPTIONS
      invalid_drive = 1
      invalid_extension = 2
      invalid_name = 3
      invalid_path = 4
      OTHERS = 5
    DATA : pos TYPE i.
    DATA : len TYPE i.
    Loop And Put Data
    LOOP AT itab.
    pos = 255 - len.
    IF pos > 134.                         "length of pdf_table
    pos = 134.
    ENDIF.
    objbin+len = itab(pos).
    len = len + pos.
    IF len = 255.                         "length of out (contents_bin)
    APPEND objbin.
    CLEAR: objbin, len.
    IF pos < 134.
    objbin = itab+pos.
    len = 134 - pos.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF len > 0.
    APPEND objbin.
    ENDIF.
    Packing Info For Text Data
    DESCRIBE TABLE objtxt LINES tab_lines.
    READ TABLE objtxt INDEX tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'TXT'.
    APPEND objpack.
    Packing Info Attachment
    name = extension.
    DESCRIBE TABLE objbin LINES tab_lines.
    READ TABLE objbin INDEX tab_lines.
    objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = name.
    objpack-obj_name = 'ATTACHMENT'.
    objpack-obj_descr = name.
    APPEND objpack.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = docdata
    put_in_outbox = 'X'
    commit_work = 'X' "used from rel. 6.10
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    receivers = reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8
    IF sy-subrc <> 0.
    MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
    WITH docdata-obj_name.
    ENDIF.
    Keerthi

  • Is there a way to get a "Send Page " option under the File drop down?

    There is an option under the "File" drop down to "Send Link" is there a way to add a "Send Page" option?

    Click-hold the unified Back / Forward button, or right-click it to get the Back / Forward history for that tab.
    Or install this extension to get the old "drop-marker" button restored. <br />
    https://addons.mozilla.org/en-US/firefox/addon/backforedrop/

  • 2 CFR IN 1ST PAGE PDF AND 2ND PAGE PDF

    HOW TO SET if i want to 1 cfr in 1st page in pdf and 2 cfr in
    2nd page of PDF??

    Hi,
      Might be you have checked the check box 'Test Printout' in the very first screen of F-58.  Kindly uncheck this and try once again.
    Purpose of Test printout:
    Indicator: Test Print
    If you select this indicator, the print program carries out a test print (for purposes of fine-tuning the printer output) before printing the actual payment media.
    thanks & regards
    Kishore Kumar M

  • Sending Pages files (package) to printers including images

    When I use other layout programs, it's easy to export a package for printers (including all links, etc., just in case they need to change something).  How can I do that with Pages?

    In fact, the script was written for users which were surprised by a warning claiming that a font which they never used deliberately was missing to render correctly their document.
    I know some of them which discovered that the built in templates use fonts which they never saw.
    In fact they are used by captured pages which they never revealed.
    I was puzzled because the script is supposed to extract the list of fonts used in Pages or in Numbers documents.
    I think that I discovered what you changed :
    it's an instruction which opened the report in Numbers which you edited so that it does the trick in Pages..
    I choose Numbers because it offer a sort tool.
    To see that, I had to open the script so I ran it and discovered that, at least with Lion it required a small change.
    I made it plus an other one so that the filter applied in the choose file dialog is dropped only under Leopard.
    I uploaded the new version on my iDisk.
    Yvan KOENIG (VALLAURIS, France) mardi 6 septembre 2011 18:16:53
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How to determine the page count of the front document (pdf-Preview) with applescript?

    Hello, I'm a beinnger apple scripter, and I have 2 questions. First, im trying to find the code to generate a page count for the front document of preview. I tried something like this:
    choose file with prompt "Count the number of pages in this PDF file:" without invisibles
    do shell script "/usr/bin/mdls -name kMDItemNumberOfPages " & quoted form of POSIX path of result & " | /usr/bin/grep -o '[0-9]\\+$'"
    But I dont want to have to choose a file with the prompt, and Im not sure how to get the path or POSIX path of an open pdf that is the front document in prievew to then use that directory to select the file to run the shell script on. This is one step in a much larger sequence of automator/apple script commands for large print jobs.
    The large scale view is:
    1. seleting a group .musx Finale 2014 files and creating pdfs of all the documents
         -Achieved with Automator stuff: [Get selected finder items] [open finder items with Finale 2014] [run applescript to convert to pdf all the open files] (which I have working but without a proper repeat condition)
    2. sorting those those exports into even/odd groups
    3. making the even pages 2 up with a create booklet plugin
    3. combinging even/odd group pdfs in their respective folders
    4. sending the 2 up evens to 1 printer, and the singes to another printer.
    but at this stage in the code/automator this is what i'll need to be doing:
    1. Several pdf documents will be open and I need to determine the page count of the front document.
    2. With that result I need to determine if the pagecount is even or odd.
    3. If its even, I need to save as pdf in a file folder /desktop/PDF Export/Doubles
         - if its odd, I need to save as pdf pages from 1 to (pageCount -1) to /desktop/PDF Export/Doubles, and pages (pageCount) to (pageCount) to desktop/PDF Export/Singles. (example: A 5 page pdf will send pages 1-4 to folder "Doubles", and pages from 5 to 5 to Singles, A 1 page pdf will only send a copy to the folder "Singles." A 2 page pdf will send both pages to "doubles"
    4. once the even/odd pages have had pdfs made in the either or both of the folders, Im going to close the document and repeat for all other open pdfs.
    Which also brings me to my 2nd repeat condition question: how can I repeat (print, save as pdf, close) commands for open files and end the script once all files are closed? This can help me both at this stage, as well the coding stage before in creating the pdfs from open Finale/sibelius .sib/.musx files
    would it be something like this?:
    If front document exists
    try
    tell application "preview"
    <bla bla>
    end try
    end tell
    At stage 1 of the large scale i've gotten the files to export pdfs and close multiple files, but if i say "repeat 4 times" and i have 3 files it can do those commands but it gets stuck trying to repeat the code one more time. I need the repeat amount x to be the # of items in selection from the the original finder window.
    Thanks for the help!

    The following AppleScript will get the POSIX path and filename of the current PDF file. It will just return the integer value for page count. Note: The path retrieved is the actual path to the PDF file, unless it is on the Desktop. In the latter case, the path will be ~/Library/Containers/com.apple.Preview/Data/Desktop/filename.pdf.
    The script assumes that the following folders exist, otherwise you will need a try block to test for their presence.
    The AppleScript dictionary for Preview does not provide a page dictionary entry, that would make a repeat loop and page range possible for saving individual page ranges.
    set pdfDoubles to POSIX path of ((path to desktop) & "PDF Export" & Doubles)
    set pdfSingles to POSIX path of ((path to desktop) & "PDF Export" & Singles)
    tell application "Preview"
      -- gets quoted POSIX path and filename
              set pdfFile to (get path of front document)
              set pdfName to (get name of front document)
      log pdfName
              set cmdArg to "/usr/bin/mdls -name kMDItemNumberOfPages " & pdfFile ¬
                        & " | egrep -o \"(\\d+)\""
              set pageCnt to do shell script cmdArg
      display dialog pageCnt
              if pageCnt mod 2 is 0 then
      -- even
      -- save pdfName in pdfDoubles
              else
      -- save pdfName in pdfDoubles
      -- save individual pages in pdfSingles
              end if
    end tell

  • I converted a 6 page document to a PDF file but I want to only send page 1.  How can I do that?

    I downloaded a document from a website into a PDF file.  It was a 6 page document, but I want to only send page 1 of the document.  I don't know how or if it can be done.

    Larry,
        There is more ways than one to do that. I've been extracting a lot of pages lately so that is why I gave you that method. Also, you need to have Acrobat pro to extract pages this way.
        But here is another method which should do the same thing hopefully.
        Follow the same instructions as the last post I gave you. Get the navigation index up that shows all the 6 pages. Right click on the page that you want to extract. Then click Print. You will then get a Print Box with options. At the top there should be a box that says printer. Use the down arrow on the right side of that box to scroll down to the option that says PDF. Then click the print button that will probably be at the bottom right. This will not print the page. It will extract the document and put it on the screen. Then do file save as and name the document something and put in in a place you will find it and then send it by email.

  • Create accessible pdf from html page

    Hello,
    I am trying to create a 508 compliant Pdf from a simple HTML page using the HTML to Pdf feature in Livecycle ES4 server. I was able to configure the service to generate tabbed Pdf, but the created Pdf has multiple accessibility issues.
    Some of the issues encountered are:  incorrect tab order,  some links are not tabbable while others are,  link text is being read “Blank”,  some text is skipped while tabbing,  missing alt text for images,  page being rendered in the responsive(mobile) view,  etc.
    I have tried both the available approaches, of 1) providing a URL to create the PDF, and 2) to send the html document as a zipped file, with same results.
    Attached is a sample PDF generated from a simple HTML page I created for demo.
    My questions are:
    Is it possible to generate 508 compliant (accessible) Pdf documents using Html to Pdf service from Pdf Generator? If yes, which settings might I be missing?
    Is there any other service provided by Adobe Livecycle Server that can generate 508 compliant Pdf documents from a 508 compliant HTML page?
    Your help is much appreciated.
    Thanks,
    Anup

    I don't think it's possible to do this using a standard JavaScript script in Acrobat, since the newDoc function doesn't work with URLs.
    The only option I can think of is to use an external automator that will call the Create PDF From Web Page dialog, paste the address from a file, and after the PDF file is created will continue to the next line.
    I might be able to create such a tool for you. If you're interested, contact me by email (click my username for the address) or PM.

  • Making PDFs Fillable - Why are they 3xs the size of the Original w/Acrobat Pro 9

    What I'm Doing:
    I have been creating documents out of InDesign that I export to PDF Format and then go into Acrobat 9.0 Pro to make fillable.  In Acrobat 9.0, I'll begin with a PDF that is around 1M.  Normally, once the fields are added it may increase to file size of about 1.3M. 
    What Has Changed:
    Yesterday, I replaced on of my fillable PDF documents that was previously more pages with more fillable fields with an updated PDF (using replace pages and deleting the extra pages).  The PDF I replaced the old document with went from 1.3M to 4.3M.  Even when I went to Advanced and Optimized the PDF to remove fields etc. the file remained over 4M. 
    What Doesn't Make Sense:
    A colleague who has an older version of Acrobat Pro, opened my fillable file and just resaved it and it went back down to 1.5M.  He did nothing to it but open it, save it and close it in his version.
    Help!
    Does anyone know what is making my fillable PDF so bloated?  Is there somewhere besides PDF Optimize that I should using to make the file size smaller?

    I think he did us Save As.  I tried it, just to see and it didn't change the size for me.  I called Adobe for help and they suggested I use "Document, Reduce File Size" which did reduce it from 4.02M to 4.01M.
    Reduce File Size:
    I tried Reduce File Size again and chose to reduce to Acrobat 4.0 and later, but received an error that there was an open embedded OpenType font. 
    Unembedding:
    So, I unembedded all of the fonts, which brought it down to 3.85M. 
    Reduce File Size:
    Then I ran Reduce File Size again and it went to 3.84M. 
    Save As:
    Then I did a "Save As" and it went to 3.70M. 
    Result:
    Still not as dramatic as my colleague's save from 4M to 1.5M.

  • Batch Processing multiple page pdf

    Using Batch Processing in Acrobat I would like to:
    Extract as single pages from a multiple page pdf.
    I want the resulting pdfs renamed with page numbers. The first few pages of the pdf are roman numeral pages (index) then the rest of the pages would start as page 1 through 99999
    So that the end result would be
    page I_filename.pdf
    page II_filename.pdf
    page III_filename.pdf
    page 1_filename.pdf
    page 2_filename.pdf
    page 3_filename.pdf ect....
    Can someone help?

    Adobe Acrobat Pro has a batch process feature.
    You choose files or a folder with these image files.
    You may apply commands like "Recognize Text (using OCR)" for all chosen files.
    Than all files may be saved as PDF.
    HTH
    Norbert

  • Create PDF from web page w/password

    Would like to created a PDF using the 'Create PDF from WEB Page' function. The initial page of the site requires a login which we have but we seem to be unable to use Acrobat to archive the site because it requires a login. Is there a way to login and create a pdf of the site?

    I tested this in Acrobat X and the exact same issue occurs
    http://www.quantumdynamix.net/clients/image-map-test/ImageMapTest-AcrobatX.pdf
    This has to be considered a legatimate bug, especially since IMAGE MAPS is listes as one of the supported HTML features via the help files

  • Multi-page pdf not linking properly

    I have a 6-page interactive indd template that I have been using for months without any issues (well, not these at least), but recently it has been not linking multi page pdfs properly. The pdf that I use is always saved from illustrator cs6 and correlates page to page with the indesign file; page 1 in the pdf links with page 1 in the indd and so on... The issue I am having is that almost every other time I link the file up it behaves differently. Sometimes it will link one page of the pdf to all of the pages of the indd while showing that they are linked to different pages, other times it will not show up at all on the pages, but will show that it is linked in the links panel. Sometimes it will only link one of the pages up and leave the other 5 blank or it will link the pages up with some sort of transparency...
    Now, I am not sure if this is a problem with Illustrator or Indesign because of another symptom: Sometimes when I save the file as a pdf it saves as if it is not a multi-page pdf with different content on every page, but rather a multi-page pdf with every page being a zoomed-out view of all of the artboards together but with only some of the content showing (only artboard 3 and 4, only artboard 6 and half of 1) when it is opened in acrobat. Also, sometimes the pdf when viewed in acrobat looks perfect, but when linked it only does a few of the pages in indesign.
    Long story short, this doesn't make any sense...  I know this is hard to follow and I don't understand why or how it is happening because it seems that every time has a different issue.
    I know that you'll probably have questions and I’ll do my best to answer them, but I'm afraid that uploading files for samples won't work because there appears to be nothing wrong with the files themselves... just the links and/or export.
    Win7, CS6 , 12 gigs RAM, i5

    I have been using this method successfully for quite some time with these exact files, only in the last few days has this problem shown up.
    When I originally made the template in indesign, I imported the pdf, showed import options, and linked the pages to the same page number in the pdf. 1 to 1, 2 to 2, etc. My original thought was that this setting had been lost, so deleted the linked pdf and imported it again to try to get the 1 to 1 link. However, that did not change anything and I noticed that the page that shows up by itself in the pdf is almost always page 2, not page 1. If the page-to-page connection had been lost, all of the pages in indesign would be linking to page 1 as is the default behavior for linked pdfs.
    Also, I thought that the save issue would be on the illustrator side too, so I tried resaving it but that didn't work either. The only way that I can get the file to work is if I remake it completely and save over the old file.
    Now, I know that you're most likely thinking that this is an illustrator issue, but I don't think that it is one or the other, but rather both of them. The screenshots that I attached above are not the only way this error manifests itself. Sometimes the pdf looks right in acrobat, but once it is linked it displays with a transparency, shows only a few of the pages, or shows none at all.
    I'm probably going in circles here, but I cannot figure out which program is the cause of the error or if there are two different issues that are happening at the same time.

  • Populating Multiple Page PDF with FDF

    Hi -
    We have a need to populate a multiple page PDF (i.e., 40 fields across two distinct pages) with a FDF that we are creating in a separate scripting language (basically we are taking a user populated spreadsheet and want to populate the thousands of iterations of forms from it).
    We are using Adobe Acrobat X and it works if we split the PDF into separate PDF files by page and do the same with the FDF...but can't seem to get it to work with using a single multiple page PDF and a single FDF.
    We validated that each field has its own distinct name.
    This is our first forray into working with PDFs...
    Any thoughts?
    Jason

    It's hard to say what's wrong without look at the PDF and the FDF. How many pages are in the PDF and how many total fields are in it?

Maybe you are looking for

  • Problem in chage FB02 item text

    Hi Freinds.    I got one assignment to change the Item text in FB02(Change Document). I wrote one program to change the item text using FM FI_ITEMS_MASS_CHANGE. It's working fine. But as soon it changes the next line item's text, the previous is also

  • Reading HTML files in a java

    Hi guys, In a project that I have to submit, I have to read a HTML file's text and then have to check if it contains any word or words, that are present in a List. I already have the list, But how can I read the HTML file and then how can I compare i

  • Profit Center Reports

    Hi , I am new in SAP but i am trying to make a report which has profit center and gl account as its dimensions . I am little confused as to how to structure the report. My question is should i keep the profit center and then the gl account in the dri

  • Accessing A DB From A JSP

    Hi, I've been using the code at the bottom of this message to access a database. I've been having some trouble though when the user stops the browser session mid way through a page loading. Occasionally it can cause the web server to crash. I'm guess

  • Error opening backup....

    My TC was working just fine - and actually was working very well. All of a sudden, the backup image could not be found. After playing with it for a while, I seemed to get it to find the backup image, however, after 20 hours of continuous backing up (