Combining pdfs using FrameMaker 12...cue some spooky music!

1a. The original pdf is an outline drawing from google maps done in Generic CAD. As part of that process, the original pdf also had a title, a ruler to measure the map in increments, and some notes at the bottom.
1b. This drawing was cropped using Adobe Acrobat XI tools which removed the title, ruler and notes.
2a. The second file is a Frame 12 document which imported the cropped pdf from Item 1 onto the master page.
2b. On the body page of the Frame document are some hundreds of numbers (dots on the map).
2c. This looks just great in Frame and prints properly.
3. Save as pdf in Frame brings the uncropped image from Item 1a as part of the pdf from 2c.
4. The pdf generated in item 3 will be inserted as an anchored frame in a new document.
How to fix # 3, i.e. to get the cropped file to stay cropped? Following that, I'll have to figure out how to accomplish #4—which may not be a problem if I can fix # 3.
Thanks in advance.

That sounds like a Frame bug, so worth posting in the FrameMaker forum.

Similar Messages

  • Need to custom combine PDF - use a script?

    I would like to make various booklets from a folder containing many pdfs.  If I use a script, the script would have to read an input file and arrange the order and the output bound pdfs.  I would also like to run the script from within a portfolio, is that possible?
    TIA
    j

    I'm not sure what you mean by running the script from a portfolio, but I've
    created a script that reads a text file with file paths and then combines
    those paths into a new file. See here:
    http://try67.blogspot.com/2009/10/combine-pdf-files-from-text-list.html

  • Combine PDFs using Preview in Mountain Lion (other threads read)

    I have reviewed several threads about combining PDFs in Mountain Lion.  I will ultimately learn Automator but for now, I have a relatively simple question:
    1) I open multiple PDFs in Preview, one window per PDF
    2) I drag thumbnail pages from documents 2 through n onto document 1 so that it makes one long document.  ie. one unbroken string of pages and not sections within a PDF
    Question:  How do I save this combined document without deleting or affecting the first document?
    Duplicate causes one of the uncombined documents to pop up with the filename highlighted.  I don't see how to give the combined document a new filename for saning
    Rename gives me a file of the three combined documents but the first document disappears
    Save overwrites the first document with the combined document
    I must be missing something simple.  I recognize that the lack of "Save As" is a sensitive issue but ultimately, that's what I want to do:  Save the combined document with its own filename and have the individual documents intact.

    ncasey88 and Old Toad:
    Thank you for your quick responses.  Unfortunately, with both methods, the first PDF gets updated.
    e.g. Files are 1.pdf, 2.pdf, 3.pdf, each is one page long, and I open each in its own Preview window.  I drop thumbnails of 2.pdf and 3.pdf onto the thumbnail area of 1.pdf.  I export or print into a file called 123.pdf 
    Result:  1.pdf and 123.pdf have the same information (all three files).  2.pdf and 3.pdf are unchanged but 1.pdf is three pages long.

  • Using pdfs in Frame12...need some spooky music

    1a. The original pdf is an outline drawing from google maps done in Generic CAD. As part of that process, the original pdf also had a title, a ruler to measure the map, and some notes at the bottom.
    1b. This drawing was cropped using Adobe Acrobat XI tools.
    2a. The second file is a Frame 12 document which has the cropped pdf from Item 1 on the master page.
    2b. On the body page are some hundreds of numbers (dots on the map).
    2c. This looks just great in Frame.
    3. Save as pdf in Frame brings the uncropped image from Item 1a as part of the pdf from 2c.
    4. The pdf generated in item 3 will be inserted as an anchored frame in a new document.
    How to fix #3. Then I'll have to figure out #4.
    Thanks in advance.

    Arnis, I'm not sure where this dialogue box is. I was guessing Acrobat, but Properties is file dependent and doesn't look anything like this program page.
    Edit Preferences does look more like it but I have no choices for Save As Settings.
    Under the File menu, I have
    Save As
    Save As Other...
    Save to Acrobat.com
    Aha! I found it:
    Save As Other... > More Options > Encapsulated Postscript, then there was a menu option for Settings.
    And now my "map" on the Master page is fully visible.
    Thanks! 

  • How do I create links between two pdfs using FrameMaker 9, while both files remain open?

    In FrameMaker 9 is there a way to create cross reference to a particular page on another doc (without closing the current/source doc)?
    I tried using "openpage filename:pagenumber" option, the link takes me to page 1 of the referenced doc not to the specified page, and as it is a hyper link when page 1 of the referenced doc gets displayed the souce doc closes.
    When a link is clicked in the source doc, it is required that the source doc remians open.
    This is an urgent requirement, can anyone please reply soon?

    I think you've already asked this in this thread - http://forums.adobe.com/message/5613200#5613200 - and it's been answered there.

  • Combine PDF Pages automator step strips annotations

    Oh, I was so excited when I noticed the Combine PDF Pages command in Automator.
    Then I was less excited when I discovered that if any of the pages has annotations created in Acrobat Pro, those annotations are removed from the newly combined PDF.
    Since Preview, for some strange reason, is not AppleScript-able, Automator is the only way I see to do this.
    Acrobat is somewhat scriptable to a degree but does not have a combine PDFs command in the dictionary.
    So, has anyone figured out a way to automate the merging of PDFs via a script, workflow, app, etc -- while RETAINING the annotations? I am triggering this from FileMaker as part of a work process we're developing, so manually merging the PDFs kind of defeats the purpose.
    Anyone have any suggestions?
    Thanks,
    Jeff

    Found It!
    Ok, so it seems "insert pages" is in the Acrobat dictionary; I was looking for an equivelant of "Combine Files into Single PDF".  Anyway, here's draft one of the script. I'll probably make it less clunky next week, but this is basically how it works:
    set nFile to ""
    set pCount to 0
    set pdfList to {}
    set pdfNameList to {}
    set sourcePath to "SL:Users:joeuser:Desktop:fix ccd:Source:"
    set targetPath to "SL:Users:joeuser:Desktop:fix ccd:Target:"
    set coverFileName to "cover.pdf"
    tell application "Finder"
    move file (sourcePath & coverFileName) to folder targetPath
              set my pdfList to every file in folder sourcePath
              repeat with f in pdfList
                        set pdfNameList to pdfNameList & (name of f)
              end repeat
    end tell
    tell application "Adobe Acrobat Pro"
    --activate
    open (my targetPath & my coverFileName) with invisible
              set targetDoc to last document
              set my pCount to (number of pages) of targetDoc
              get my pdfNameList
              repeat with f in my pdfNameList
                        set c to number of documents
                        open (sourcePath & f) with invisible
                        repeat until c < (number of documents)
                        end repeat
                        set newDoc to last document
                        set nPages to (number of pages) of newDoc
      insert pages targetDoc after my pCount from newDoc starting with 1 number of pages nPages
                        set my pCount to (my pCount) + nPages
      close newDoc
              end repeat
    save targetDoc
    close targetDoc
    end tell
    tell application "Finder"
              set f to file (my targetPath & my coverFileName)
              set name of f to "New Merges PDF.pdf"
    end tell

  • Custom colors in FrameMaker 10 not being maintained when printing PDF using Distiller/Professional X

    Hello all,
    I am working my first tech writing job that requires printed material instead of just PDFs, and I am having problems with the logo colors when it comes to printing them.
    I created the two color definitions in FrameMaker 10 (using colors Pantone 485 CVC and Pantone 281 CVC). These colors are used for diagram callouts and doc titles.
    I recently upgraded to Distiller X and Acrobat Professional X, thinking that maybe the older versions just didn't support those colors, and I am still getting the same result. Instead of printing the colors I added, the PDF is printed with the default red and blue. FrameMaker is using the CMYK model.
    I have a feeling that I just need to adjust some settings, but I don't know whether to adjust Distiller, Acrobat, or FrameMaker. Anyone else have issues when trying to use their company's colors? Any ideas on what might work?
    Thanks in advance,
    Smitty

    John,
    I'm not even sure what printer we use since we send the PDFs out to be printed on a glossy paper (I'm new to the position so I don't have all the details yet). All I use is my Adobe PDF printer. I'm also not using FileMaker, I'm using FrameMaker since I am producing manuals that will be printed, not marketing material or anything with a lot of images. I am just trying to get the logo colors to appear correctly in the PDF so that when it does get printed off-site, the Pantone colors are seen and not the default in the final product. I will post this in the FrameMaker forum as well.
    Thanks for your response.
    Smitty

  • Combine PDF-files using Indesign?

    Hi,
    Is it possible to combine, lets say 15, PDF-files using Indesign and some scripting magic?
    I know it's easily done in Acrobat Pro, but I'd like to skip that step and make it even easier for my colleagues.
    Any hints, tips or links are much appreciated.
    Thanks,
    Thomas

    All you have to do in Acrobat is drag one file after another onto the same window, correct? Then save?
    You can combine PDF files with InDesign, but then you'd get an InDesign file, so you have to export as a new PDF again. Sure, a script can do that for you, but it still sounds like it would take more time, and *definitely* not as easy as the straightforward drag-drop-save steps in Acrobat Pro.

  • Can Acrobat create a PDF using the same page numbers as FrameMaker?

    I'm using FrameMaker 10 on Windows 7 and Acrobat Pro 9. I know I can set the page numbers after I create the PDF (Advanced > Document Processing > Page Numbering), but is there any way to tell Acrobat (or Distiller) to do this automatically based on the page format set up in FrameMaker? Right now, the cover and inside cover have no page numbers, but I could assign them numbers and hide them. The TOC is lower case Roman numerals, and the rest of the book uses Arabic page numbering. Someone has asked whether we can have the page numbers be reflected in the page field so that when you enter page 10, it takes you to page 10 of the book (where 10 appears in the corner of the page), not the tenth page of the PDF, which might land you in the TOC.
    We produce PDFs as part of an automated system, which is why I can't mess with it after it's been produced.

    There is a FrameMaker plug-in that can do this:
    http://www.frameexpert.com/plugins/pagelabeler/index.htm
    Or, you might consider using PDFMark to add page labels.

  • I have Windows 7, with Office 10, Acrobat Adobe 9 Std. I used to be able to combine pdf files into one pdf until I converted to Office 10. Now when I combine 3 pdf files into one pdf, I am missing the middle pdf. Pages are there but the pages are blank. A

    I have Windows 7, with Office 10, Acrobat Adobe 9 Std. I used to be able to combine pdf files into one pdf until I converted to Office 10. Now when I combine 3 pdf files into one pdf, I am missing the middle pdf. Pages are there but the pages are blank. Any Idea???

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • After Preflighting a PDF, using Convert to CMYK, Flatten Transparency and Prepress Profile Convert to CMYK only the resultant PDF has a grubby halo along the edge of some white type sitting on an image. The type is part of the image.

    I am using a 27" iMac 3.2 GHz Intel Core 5, 8 GB Memory, running Yosemite 10.10.1. 
    The version of Acrobat that I am using is: Acrobat XI Version 11.0.10
    After Preflighting a PDF, using Convert to CMYK, Flatten Transparency (high resolution) and Prepress Profile "Convert to CMYK only" the resultant PDF has a grubby halo along the edge of some white type sitting on an image. The type is part of the image which is 300 dpi.
    It is like the image isn't really 300 dpi but has been artificially boosted to that to avoid being tagged by Preflighting, but when Preflighting the file it knows the original resolution.
    I have screen grabs which illustrate the problem perfectly but do not know how to post them, if indeed they can be.
    Any help or comments gratefully received.

    Without the files and possibly screen prints, it is virtually impossible to assist you.
              - Dov

  • Finding difficulty in using Acrobat Editor, need some tutorials or online help in editing pdf's

    finding difficulty in using Acrobat Editor, need some tutorials or online help in editing pdf's

    Press F1 within the application to open the Help section.
    If you have specific questions ask them in the Acrobat forums (this is the Reader forum).

  • When combining PDF's, the author is picked up from the first PDF opened.  How can I make it use a new author when combining several documents?

    When combining PDF's, the author is picked up from the first PDF opened.  How can I make it use a new author when combining several documents?

    Make sure that fast web view is enabled.

  • Unable to use Adobe Reader on some PDFs -- Please Help

    Hi.  I have a new HP laptop.  It uses Windows 7.  I have Adobe Reader -- I had 9.0 and was having problems so took it back to the store and they have now loaded 9.3.  It is hit or miss on opening some pdfs.  The only error message I get is that "there is a problem with Adobe Acrobat Reader.  Please try again.  I am not technically oriented, and this is very frustrating.  I tried to call Adobe and they said that I need to work off of this forum.
    Thanks in advance for any help you can give me.
    Jay Copan

    weshuptrine wrote:
    I can use Adobe Reader on some documents but not all.
    Are these scanned documents?  If scanned documents have not been OCR-ed, then they are just images without any searchable text.
    Try if you can highlight any text in such documents.

  • Not able to produce some Czech characters in pdf using java.

    Hi All,
    I am not able to produce some Czech characters like ě and č in pdf using java. Can you please guide me what could be the cause. The characters are coded in properties file and its just neglecting č and ě and taking other character next to it.
    we have used below code to display the characters but its also not working..first we thought its font issue since Helvetica dont come by default in windows but after putting helvetica font also we are not able to produce the characters.
    BaseFont baseFont = BaseFont.createFont(BaseFont.HELVETICA, BaseFont.CP1250, false);
                   Font fontStyle = new Font(baseFont, 12, Font.NORMAL, Color.BLACK);

    baftos wrote:
    4th paragraph at http://download.oracle.com/javase/6/docs/api/java/util/Properties.html explains it.
    Note also that Java 6 allows you to produce properties files in encodings other than ISO-8859-1, provided you load them via a reader with a matching encoding. (Also see that link posted by baftos.) This might be more practical then the Unicode encoding which was required in earlier versions of Java.

Maybe you are looking for

  • Error in Export Content Archive

    Hi, I am trying to export Content Archive using Archiver applet present in the admin applets but its getting failed, while the Table Archive was done successfully. The error I am getting is as below: "Export error for archive 'ContentArchive_13June'"

  • The application pool (machines.model.AppModuleLocal) failed to checkout

    I Dont understand why the below error is comming, JBO-30003: The application pool (machines.model.AppModuleLocal) failed to checkout an application module due to the following exception:oracle.jbo.JboException: JBO-29000: Unexpected exception caught:

  • Adobe Photoshop Elements is  the subject

    I change from Windows XP to Windows 7 and 8. I can't load my Adobe Photoshop Elements CD record on either W 7 or W 8. Thank you for your help: how can y charge this CD a computer equiped with W7 or W8. Novy

  • Pse 7 does not start

    elements 7 will not start on my laptop.  due to circumstances i have not used it in a while but now when i click on the icon or go in through the program list it will not start.  i thought of reinstalling it but worry that all the work i did on organ

  • ICal crashes every time on both computers

    I have an old G5 (single processor 1.8GH) and a Macbook, both running OS 10.4.11. I have an iPhone 3G which I sync with the G5, including all of my iCal info. Everything was fine until I tried to sync my iphone with my macbook. Now, every time I open