Maintaining Custom Colors from FrameMaker to the PDF

I tried posting this question under the "Color Management" forum, but got a lot of questions asking what printer, paper, and other settings I'm using...not really what I'm looking for...
Here is my original post:
I am having problems with my company's custom logo colors appearing in the PDF correctly. I created two color definitions in FrameMaker 10 (using colors Pantone 485 CVC and Pantone 281 CVC). These colors are mostly used for diagram callouts. Instead of printing these colors that I added, the default red and blue colors appear in the PDF.
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. 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? I don't think the problem is  my screen settings because when I compare the Frame file with the PDF, the difference is obvious.
Thanks in advance,
Smitty

Search on "color management" and/or "pantone" in this forum.
Here's some recent hits:
http://forums.adobe.com/message/4133158#4133158
http://forums.adobe.com/message/3518645#3518645
What is your CMYK color space (e.g. some SWOP)?
How are you creating the PDF?
Save-as, print-to, or Distill from .ps
Distill has a separate issue.
What is the delivery flow?
Do you need color-matching at a print shop,
or just in the PDF?
How are the logo colors coming in?
If they are from CMYK EPS, for example, they should survive the Windows GDI experience.
If any of your custom colors are text (not graphics), that's a more involved problem.
The fundamental problems you're facing are:
1. Frame has no color management; never will.
2. Windows had no CMYK for years, and now has a destructive fake CMYK.
There are usually work-arounds, 3rd party in extreme cases.

Similar Messages

  • Can you get a customized iMac from one of the retail stores?

    I wanted to know if it was possible to get a customized iMac from one of the Apple retail stores or Apple affiliated retail stores ( www.yescomputers.com for example )?
    The reason I am asking is because the ONLY problem I have with Apple is their shipping. They seem to always use FedEx when shipping to me and FedEx, SOMEHOW, is extremely terrible at shipping products to my address. UPS is fine but FedEx just can not figure it out.
    If it is not possible I think the base model 27-inch: 2.66GHz might be okay. I would just like to know either way.

    As far as I'm aware, Apple do not sell customised/configure-to-order Macs in their Apple Retail Stores.
    If you want to configure your Mac, you have to order it online from the Store.Apple.com website.

  • 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

  • Editing a PDF file on Illustrator to maintain custom font from another computer

    Hello,
    I am trying to edit a PDF file on Adobe Illustrator and the file has a custom font in it that I do not have saved on my computer/Adobe does not recognize.  Is there a way to save the file so that I can edit it, but so that Adobe does not replace the font with a basic font?
    I have tried:
    -Opening it in AcrobatPro vs. Illustrator
    -Saving the PDF (2 pages) as 2 separate JPEG files and placing them into Illustrator... That just lowers the resolution of the images and they are much lower quality/more pixelated
    -Placing the PDF file in Illustrator rather than opening it in Illustrator
    None of those worked, and now I am not sure what to do.
    Please advice ASAP- Your help is much appreciated as I am on a time crunch!
    Thank you!

    You can do it with Acrobat. Not Acrobat reader.
    It is also possible with Preview.
    Open the file in Preview and export it say to the Desktop.
    Than open the second pdf and import the file.
    Than you can delete tha parts you so not need and leave only one page.
    It can be used if the pages are not too many or it will take a long time and I am not sure if it will work with big files.

  • It's possible to disable custom color from color picker?

    Hi guys!
    I've searched in the threads about color picker but I found anything about it...
    It's possible to disable the option to select a custom color? I work in a enterprise who makes softwares to brazilian clients, and not everybody understands english phrases...
    Another way it's to translate the option, but I don't know if is possible too.
    Thanks!

    You definitely need to add the stylesheet to the Scene, not to anything else. If you take my example and change
    scene.getStylesheets()...
    to
    root.getStylesheets()...
    you'll see that it won't work any more.
    The difference between this and the css you used is that the css you used is applied to the display of the color picker button; you need to apply styles to the popup (the color palette), which is not contained in your VBox or AnchorPanes. Notice how the font has changed for the name of the color in the button, but it hasn't changed for the "Custom Color" label you are trying to remove.
    Somewhere there is some code that is adding the VBox you are subclassing to a Scene, and setting that scene into a stage. Your best option (perhaps second best option, see below) is to find that code so you can add the stylesheet to the Scene itself.
    If you're working within a framework someone else has written, and can't access or change the code where the scene is defined, you have another option that I can see. Every Node has a scene property that refers to the scene to which that node belongs. So you could observe changes to that property and when it's updated, add the stylesheet to the scene.
    So here is a hack to make my original hack work, in the event that you cannot access the scene directly, for some reason:
    final String suppressCustomColorCss = getClass().getResource( "noCustomColorPicker.css").toExternalForm();
    colorPicker.sceneProperty().addListener(new ChangeListener<Scene>() {
    @Override
      public void changed(ObservableValue<? extends Scene> observable,
      Scene oldScene, Scene newScene) {
      if (newScene != null) {
      List<String> cssClasses = newScene.getStylesheets();
      if (!cssClasses.contains(suppressCustomColorCss)) {
      cssClasses.add(suppressCustomColorCss);
    This code basically says "when the color picker becomes part of a new scene, add the stylesheet to that scene".
    At this point, you're applying hack on top of hack to get the effect you need. I think if I were in this situation I would just go ahead and define my own color picker. All you really need is a MenuButton, a property to hold the selected color, and a popup with a layout of controls to choose an arbitrary color. It would be a bit of work, but shouldn't be too hard. If you take this option (which I think may be your best bet), it's more work now but it will be clear what you are doing - when you (or other programmers on your team) come back to the code later you'll understand how it works much better.
    You should also file a couple of feature requests. One for API to enable/disable the option to choose a custom color, as this seems like a reasonable piece of functionality to have. The other should be for properly internationalized text for the labels in the color picker, as these are currently just hard coded into the source code in English.

  • How Automate Dynamically Embedding Customer Names from a List into PDF Footer?

    Mavens,
    After discovering that a PDF training workbook of mine has been widely copied (without authorization), I'd like to "personalize" future versions of this artifact with the customer/user name dynamically embedded in each PDF's footer.
    Based on your experience, what is the easiest, quickest & most economical way to: generate a set of PDFs (from a "Master") where each individual PDF is personalized with a user/customer name in the footer (e.g., "This document is licensed to {FRED BLOTZ} at {BIG COMPANY, Inc.}. Duplication or distribution is not authorized.").
    The desired workflow is:
    1. Create an MS-Excel Workbook with a list of all trainee (user) names.
    2. Open some type of "PDF Personalization" tool.
    3. Provide the path to the "Master PDF" to the tool.
    4. Provide the name of the customer (company) to the tool.
    5. Provide a path to the MS-Excel Workbook with list of individual's names.
    6. Provide a path to a folder where the tool should write the generated PDFs.
    7. Click a button ("Generate Personalized PDFs").
    Then...distribute individualized PDFs to trainees.
    Is there a tool out there somewhere which provides the desired solution?
    Thank you in advance for your experienced-based suggestions.
    Plane Wryter
    PS: While I fully appreciate the on-going discussions regarding the merits/lack-of-merits of DRM, etc...if you elect to reply to this request...please be so kind as to focus on the question as presented and avoid clambering onto a soapbox to "rant" about DRM...or suggest increasing the fee to the customer (a big firm that only pays "per-trainee" fees) to cover distribution. Thank you.

    go to database, show sql query. please paste the query in here it will be easier to help you
    if you cant seem to get it from there, go to database, database expert and edit the command file. (if that is the dataset you are using) copy and paste that.

  • Is there a button in Illustrator that disables colors from showing on the art board?

    I have been trying to design a layout and when I go to apply colors to different parts, I can't. I am not able to see that color has been applied to the shapes. I have tried switching from RGB to CMYK and even Grayscale but it is to no avail. The shapes are colored in the layers menu but not on the physical document.

    View --> Outlöine? Otherwise such issues could be inherent in the document, e.g. complexity of the paths vs. absolute document size vs. raster effects or something like that. A lot more info would be required, starting with what version of AI, system specs, possibly screenshots and details about your object appearance settings.
    Mylenium

  • How to I connect to a custom CMS from FrameMaker Connenction Manager?

    Hello,
    I am using the Adobe Technical Communication Suite 5 and was wondering how
    I can connect to a custom CMS, using the Connection Manager in FrameMaker 12.
    Is there a write-up on  making custom connections anywhere?
    Thanks,
    Jim

    See:
    http://blogs.adobe.com/techcomm/2012/09/open-source-sample-connector-between-framemaker-11 -and-adobe-cq-now-available.html
    How to build a connector between your CMS and FrameMaker 11? New CMS API documentation now available! « Technical Commun…
    Framemaker Developer Center | Adobe Developer Connection [See third section down (CMS Connector)]

  • Mail acrobat pdf from ipad within the pdf with gmail instead of the standard mailprogram

    Hi,
    i use an Ipad,
    In an already open acrobat pdf
    i can mail it to others,
    but,
    The problem is
    I can only mail it
    by  the standard mailprogram
    Instead of Gmail.
    How can i get the choice between the two in an already opened pdf?

    [topic moved to iOS subforum]

  • When saving a file in photoshop cc , using "save as" the pdf has clipping (color is not showing) in parts of the document.

    When we save a file to a pdf from photoshop cc the pdf will show some clipping of color , as if the color disappeared on the pdf. what steps are needed so this doesn't occur?

    Thank you for responding. Below is some info.
    Please see the clipping on the "d" in Pastel Bond and White Bond and the rounded part of the "R" in 2 &3 Part NCR. We have had this happen on occasion with other files as well. Thanks for the help.
    save as > photoshop PDF
    First dialogue box:
    Save: layers (checked)
    color: embed color profile: U.S. web coated (SWOP) ...
    Second dialogue box: high quality print
    options: none checked
    viewing PDF in preview on mac

  • PDF Bookmarks From FrameMaker Books

    This question is about bookmarks in a PDF file generated from a Framemaker book where I want different bookmarks for different chapters. I am using FrameMaker 8.02 on Windows.
    Here is a simplified view of my chapter files and the paragraph tags for which I want bookmarks:
    Table of Contents.fm Title
    Chapter 1.fm Title, Heading1, Heading2
    Index.fm IndexTitle, GroupTitlesIX
    I used the PDF Setup dialog to set the bookmarks for each chapter as shown above.
    If I choose File->Save As PDF on the book, FrameMaker presents the PDF Setup dialog which overwrites my preset bookmarks settings in the individual chapters. I can not choose a superset of all the bookmarks because GroupTitlesIX does not appear in either of the lists of paragraph tags to be converted to bookmarks. Despite this, I do get a bookmark for the GroupTitlesIX paragraphs in the index.
    If I choose File->Print Selected Files, Acrobat also changes the paragraph tags/bookmarks setting for each selected file.
    What would clarify this is an explanation of how FrameMaker chooses which paragraph tags to convert to bookmarks and under what circumstances FrameMaker changes the paragraph tags/bookmarks setting for files of a book.
    Or simply how to you use different paragraph tags for bookmarks in different files of a book?
    Thanks.

    Hey Howard,
    We use the Save as PDF all the time and don't have any problems with our bookmarks. We did have to be a little creative in order to get the different headings in the different chapters to show up as bookmarks. All we do is to import the different paragraph styles into the first file in the book (in our case, it is "front.fm"), which usually involves importing the paragraph tags from the TOC, one chapter file, and then Index.
    When you are ready to create your PDF file, make sure the first file (with all the required para tags) is selected, then do a Format > Document > PDF Setup and configure your bookmarks. Now do a Save as PDF on the book, still with that particular file selected, and double-check your bookmark settings. All required bookmarks should still be available.
    Now they are forever configured and you can successfully do a Save as PDF file every time.
    Sam

  • Keep getting "renderable text" error when I need to OCR PDF's from FrameMaker.

    My solution has been to individually extract all those pages, then open them up in Photoshop, flatten them and
    widen the canvas size to standard 8.5 x 11.
    But that's a little tedious and time-consuming and you have to delete the original page from your document, after
    importing the OCR-friendly page.
    Is there a printer definition, or something you can set up when you're generating your PDF's in the first place,
    that will get rid of that annoying "renderable text" error?

    Ok...
    I don’t know how it happens but after I save my work in FrameMaker or MS Word, and print
    to PDF for the final output, there are often pages with text in them that isn’t recognizable,
    or that can’t be found with a CTRL+F search.
    That is a serious issue, and one we might be able to help you with, but really, quite separate from the issue here. It's too late to try and fix this once it is a PDF.
    What is it that’s lost when OCR is run?
    Quality. Small file size. Tags (which might be required legally). Almost everything except the basic text, and that might also be lost given that OCR is not guaranteed to work. This is NOT the right way to solve your problem.
    The translator doesn’t have any Adobe products except Reader, so I’m limited to Acrobat
    to show her how the words and pictures are laid out on a page.
    In order for her to copy and paste that text – or search it, to find all of the places where the
    same word might be used – I need to make sure every word is there for her to grab.
    I have heard of translators trying to work with PDFs, and few that succeed. You can reasonably expect a transation service to support FrameMaker. But if they don't I recommend you extract the text from FrameMaker to a simple Word or text file. They should be fine using the PDF as a visual reference, and having the text to translate, and for you to flow back into the original layout. (Again, something I'd expect a full service translation to do themselves, but there are advantages to keeping control too).
    Those were the 2 pages that gave the ‘renderable text’ error. Don’t ask me why or how, they
    look like all the other pages in that document. Except Acrobat thinks they’re scanned graphics,
    that’s how they present when you wave the cursor around in them, hunting for text.
    Renderable text is just text. It means that somewhere on that page there is text. Surely there is layout, page numbers, whatever from FrameMaker on the pages. If not, we really need to look at your production methods - back to the first point.

  • Unable to change text color (from Black)

    For the next person who blunders into this and searches for an answer...
    If you have a Condition Code whose decoration is a custom color, and you delete the color, the text goes to Black, and you cannot change the color of text bearing that CC - with local color override, or a Character Format that applies a color (I didn't try Paragraph format).
    I am copying formatted content in from an older document that doesn't conform to current templates. I had deleted unused colors in the source, but not unused Condition Codes, one of which rode in with some text. What was controlled by the CC in the old doc is now controlled by a color Character format, except that when applied, the text stayed stubornly black (until I nuked the CC).

    Dear FrameMaker 7.1/Unix user,
    This does not surprise me. As long as the condition is applied and "Show Condition Formats" is active FrameMaker will show the Condition Color (now: Black) and not any underlying text colors.
    - Michael

  • Problem while closing IE which displays the PDF

    Hi,
    I have an application in which a PDF form is displayed through the portal on an IE instance.
    The IE works fine until I open the pdf. Once I open the pdf im not able to close the IE. I have ti forcefully close it using the task manager.
    If I try navigating to another view from that PDF view ( Same IE instance) , the IE closes automatically throwing the 'Microsoft error' message.
    How do I avoid this??? What might be the problem?
    I use IE version 6.0
    Thanks in Advance,
    Reena

    Hi Reena,
    I am not sure, please try these solutions.
    1. Try to display the Adobe Interactive Form by adding the URL (of the Adobe Document Server) to the Trusted Sites of your MS Internet Explorer.
    2. If you are experiencing problems opening pdf documents in IE,
    then you need to  disable compression for pdf documents
    To disable the compression. please follow the steps :
    1. start the Visual Administrator in <J2EE Home>/admin directory  from the go script
    2. In the Left pane :
       Click on the "Cluster" tab.
       Browse <System name> -> Server -> Services -> HTTP Provider
    3. In the right pane
         - Make sure the "AlwaysCompressed" property does not contain any
         of the values
        *.pdf
        application/pdf
        - Make sure the  "NeverCompressed" property contains both values
        *.pdf
        application/pdf
    4. Click the save button on the top of the right pane.  The new setting will have effect on all servers in the cluster.
    configuration if you have made changes to the "AlwaysCompressed" or "NeverCompressed" properties.
    In such case you will need to perform the described above configuration manually.
    II. If you have been running custom code that relies on the pdf compression
    then you will need to maintain the  "AlwaysCompressed" or "NeverCompressed" properties back to their  previous values ("AlwaysCompressed" including *.pdf and application/pdf and "NeverCompressed" excluding both entries) after upgrade  but you may face problems with opening of pdf files in IE  as a side effect.
    //Raj

  • Last CB/ HowTo prevent Page1&2 of PO_STANDARD_XSLFO.xsl showing in the pdf?

    SR: NOT GETTING CONTRACT EXACTLY AS PER THE PROCUREMENT CONTR...
    Customer:
    Apps 11i10.
    QUESTION
    ========
    Implementing Procurement contracts a Procurement contracts Template is created and approved.
    A Contract Purchase Order or a standard Contract Order created. Have the Template referred in the above CPO or SPO.
    Update the variables. Then Generate the PDF ( or preview the PDF)
    We expect that based on the template we should get the PDF but the 1st 2 pages are not requuired.
    How does one prevent Page1 and 2 from displaying in the pdf?
    Research
    =====
    Even though this looks like a customization,
    The way the application works is not desired by customer because they wouldn't like necessarily to see financial details sent to the same person.
    Hence the need to remove/hide page 1 and page2
    We have advised customer as per the Action plan below:
    Support Update ( 03-Jun-2009 10:35 BST)
    follow these steps:
    1. Please refer Note: Note 311813.1 on how to customize the stylesheet .
    - To customize stylesheet navigate to XML Publisher Administrator resp and query for existing stylesheet and make a copy of it by clicking duplicate.
    - After duplicate they can click on download to download the seeded stylesheet and make changes as per their requirement
    - Once the modifications are done, they can upload the style sheet again to XML Publisher by clicking update button.
    2.The piece of code to remove the cover page will be in PO_STANDARD_XSLFO.xsl for Standard PO is shown in the Research section above where we check if contract terms exist. If so we print the cover page.
    3. If you do not want the cover page, then you can make the test value return false so that cover page will not be printed. Some thing like this will suffice your requirement:
    <xsl:if test= " 1= 2 ">
    so that this statement returns always false and hence does not print the cover page.
    4. The same sequence of steps can be followed for each document type you want to modify.
    This is what it was like Originally:
    Filename = https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/Contract_with_PO.pdf
    Page1 and 2 needed to be removed
    BUT only one page is removed.
    Filename = https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/PO_STANDARD_XSLFO_modified.xsl
    Filename = https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/PO_TERMS_121_25431_.pdf
    One Page (page2) is still showing original - page one - is not.
    Assistance:
    We need assistance on how to help customer to remove/hide the first two pages of the pdf. (modifying PO_STANDARD_XSLFO.xsl)
    Thanks in advance.
    This is becomming urgent. Any asisstance is appreciated.
    Edited by: jgwouona on Jul 24, 2009 1:11 AM
    Edited by: jgwouona on Jul 28, 2009 3:13 AM

    Thanks for comming back to me.
    This is the file with the problem:
    https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/Contract_with_PO.pdf
    Customer wants only pages from 3 upwards ( They do not want financial info on pages 1 and 2 to display)
    They expect to see 6 pages (8 minus the first two pages they do not want users to see)
    Working with Note 311813.1 on how to customize the stylesheet
    we tried a <xsl:if test= " 1= 2 "> and only the original first page was successfully removed. The current first page is now also to be removed.
    The finance info on the page needs to be removed too.
    see: https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/PO_TERMS_121_25431_.pdf
    https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/PO_STANDARD_XSLFO_modified.xsl
    standard ARU original file version is: PO_STANDARD_XSLFO.xsl 115.12.11510.6

Maybe you are looking for