Why does the background color in a saved pdf disappear when opened in Acrobat Pro 9.0 but appears when opened in Adobe Reader?

Does someone know why this happens? BTW it only started recently.

Hi bozieone,
Does this issue occur on any test pdf created as well?
What OS are you using?
Regards,
Rave

Similar Messages

  • Why does the background color change?

    Hello world...
    I have a problem: when I load an external .swf into my current stage, its background color becomes like the one of current stage. Why?
    Please, help me.
    Emiliano.

    It's because there actually is no background inside Flass. That colored area (stage) you place your items on is just there to help you see them.
    For your problem, just place a colored rectangle on the bottom most layer and you'll be good.

  • Why does the setting of trackpad always changes everytime i turn off my Macbook pro?

    why does the setting of trackpad always changes everytime i turn off my Macbook Pro?

    Sure ,  just refer to:
    http://support.apple.com/kb/ht1379
    http://support.apple.com/kb/HT3964

  • How do I preserve the embedded hyperlinks when printing to .pdf?   I am using Acrobat Pro XI for Mac, and when I export to .pdf the existing hyperlinks lose functionality.   I assume it's just the flick of the right button – I just need help finding that

    How do I preserve the embedded hyperlinks when printing to .pdf? 
    I am using Acrobat Pro XI for Mac, and when I export to .pdf the existing hyperlinks lose functionality.   I assume it’s just the flick of the right button – I just need help finding that button. 
    Can you help?  Thanks!

    How:  MS Word to .pdf by Command P, hitting the PDF button, and then the button for "save as Adobe pdf"
    I didn't have this problem at all on prior versions of Adobe on my PC.   This isn't a Mac attack, is it?

  • Why is the background color not applied in one case?

    Hi,
    I'm using RH 7 and WebHelp.
    I apply a TableHeading style to the first row of my tables. The TableHeading style is supposed to fill the cells of the first row with a background color of blue, and the text is in white. It works fine except for one table. I think TableHeading style was not applied in the Word document when I imported this topic. I tried to apply the TableHeading style to the first row, and it says it is applied in the HTML. But, the background blue does not fill the cells.
    Here is what I am trying to achieve:
    Here is my problem table:
    I can see in the HTML that the background color is not present in the code. Here is the code for the example that is correct:
    <p class=TableHeading>Chapter</td>
    <td style="border-left: none; border-right: solid #000000 1.0px; border-top: solid #000000 1.0px; border-bottom: solid #000000 1.0px;
              width: 279.4pt; padding: 0in 5.4pt 0in 5.4pt; background-color: #003399;"
    bgcolor=#003399 width=279.4pt>
    <p class=TableHeading>Description</td></tr>
    <tr><td style="x-cell-content-align: top; border-left: solid #000000 1.0px; border-right: solid #000000 1.0px; border-top: none;
                       border-bottom: solid #000000 1.0px; width: 182.85pt; padding: 0in 5.4pt 0in 5.4pt;
                       padding-left: 0px; padding-top: 0px; padding-right: 0px;
                       padding-bottom: 0px;" valign=top width=182.9pt>
    Here is the code for my problem table:
    <p class=TableHeading>Activity</td>
    <td style="border-left: none; border-right: solid #000000 1.0px; border-top: solid #000000 1.0px; border-bottom: solid #000000 1.0px;
              width: 168.0pt; padding: 0in 5.4pt 0in 5.4pt;" width=168pt>
    <p class=TableHeading>Keyboard Shortcut</td></tr>
    <tr style="x-cell-content-align: center;" valign=middle>
    <td style="width: 374px; x-cell-content-align: top; border-left: solid #000000 1.0px; border-right: solid #000000 1.0px;
              border-top: none; border-bottom: solid #000000 1.0px; padding: 0in 5.4pt 0in 5.4pt;
              padding-left: 0px; padding-top: 0px; padding-right: 0px;
              padding-bottom: 0px;" valign=top width=374px>
    Here is the code from the CSS:
    p.TableHeading {
    background-color: #003399;
    punctuation-wrap: simple;
    text-autospace: none;
    font-size: 10.0pt;
    font-weight: bold;
    color: #ffffff;
    font-family: Verdana, sans-serif;
    margin-left: 3pt;
    margin-right: 3.0pt;
    line-height: 120%;
    margin-top: 0pt;
    margin-bottom: 0pt;
    LI.p-TableHeading {
    punctuation-wrap: simple;
    text-autospace: none;
    font-size: 10.0pt;
    font-weight: bold;
    color: #ffffff;
    font-family: Verdana, sans-serif;
    line-height: 120%;
    Any suggestions?
    Thanks,
    Julie
     I don't understand why the TableHeading style is not applying the background color for the one table. I'm guessing I could just add it to the code using the HTML editor. However, I wasn't sure if that was the best way to fix this problem or if I would create another problem.

    Hi Willam,
    Thanks for your answer, and I will go ahead and add the background color to the problem table.
    However, I am still puzzled as to why the background color is applied to the cells in the other tables and not the problem table. I'm not sure what I did to cause the problem - how I applied the TableHeading to the table cell in one case and not the other. Any ideas how I can avoid this problem?
    I will not use the Word documents going forward and will only make changes with the RH editor.
    Thanks again,
    Julie

  • Why does JButton background color change when  clicking ?

    Hello,
    I have defined :
    JButton mybutton = new JButton(Icon xxx) ;
    with no associated text and I set both foreground and background colors to black, and an empty border.
    This is because the background color of the container which contents this button is also black and I want to see only the button icon.
    When I click on the icon , the button background color becomes grey. How can I change this to make it remains black ?
    Thanks a lot.
    Gege

    Well, the color changes because that is how the look and feel is defined,
    presumably to give better feedback to the user that she has clicked the
    button.
    If you don't want this, you could try using a different L&F which doesn't do this.
    Alternatively, If you've only got the one button, you could just do
        UIManager.put( "Button.select", Color.BLACK );If you have multiple buttons, and you want the other buttons to behave
    normally, you can extend the one button and have it change the color
    while it is pressed, e.g.,
    import java.awt.*;
    import java.io.IOException;
    import java.net.URL;
    import javax.swing.*;
    public class ButtonSelect extends JFrame {
         public ButtonSelect() throws IOException {
              super();
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              panel.add( new JButton( "Normal" ) );
              Image img = Toolkit.getDefaultToolkit().getImage( new URL("http://www.google.com/intl/en/images/logo.gif" ) );
              ImageIcon ii = new ImageIcon( img );
              JButton b = new JButton( ii ) {
                   static final private String KEY = "Button.select";
                   public void paint( Graphics g ) {
                        Color save = null;
                        if ( getModel().isArmed() && getModel().isPressed() ) {
                             save = UIManager.getColor( KEY );
                             UIManager.put( KEY, Color.WHITE );
                        super.paint( g );
                        if ( save != null )
                             UIManager.put( KEY, save );
              b.setForeground( Color.WHITE );
              b.setBackground( Color.WHITE );
              b.setFocusPainted( false );
              panel.add( b );
              getContentPane().add( panel );
              pack();
              setVisible( true );
         public static void main( String[] a ) throws IOException {
              new ButtonSelect();
    }

  • Why does the tab bar on my iPad 2 disappear when I swipe down? How can I lock it in place?

    Why does the tab bar on my iPad 2 using IO8 disappear when I swip down? Its annoying. I have to tap the top of the screen to view my open tabs.
    why did Apple switch the position of the bookmarks icon and the favorites icon. Now I tap the wrong one.

    There isn't a setting to stop the tab bar automatically hiding (or I haven't found one), and as to why the icons were moved I don't think that Apple have said. If you want to leave feedback for Apple then you can do so here : http://www.apple.com/feedback/ipad.html

  • When using classic dialog controls in labview 7.1 why does the text color that I have selected always stays black?

    I have an older program created in LV 6.0.2 that uses dialog buttons. The text color is red or blue. When I load it into LV 7.1 the color stays black. When I edit text I can see that the color is correct but it will not display the color when I leave edit mode on the control. Even if I select a new button from the classic tools pallete "dialog controls" I am unable to change the text color.
    What is happening? Why does LV 7.1 prevent this text color change?
    Roger

    The dialog control colors are set by the operating system so they match other controls that the OS generates. So in LabVIEW 6, they were actually not behaving correctly.
    The following text is from the LabVIEW help on Dialog controls.
    "You cannot customize the appearance of the dialog spin control, slide controls, or progress bars because the controls and indicators use platform-specific drawing functions that do not support customization. You also cannot use Property Nodes and Invoke Nodes to customize the appearance of these controls and indicators."
    If you need different text color, you'll have to use the non dialog controls.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Why does the Background Layer unlock itself?

    When I open a picture in PS the first layer is a locked background layer. If I start working in PS it changes automatically to an unlocked Layer 0. I want it to stay as an locked background layer. I have used PS for a few years, and just started happening.

    With the new version of Photoshop if you work on the background layer and do something like click on the add layer mask icon in the layer palette. Since the background layer does not support transparency Photoshop knows you need to convert the background layer to a normal layer so Photoshop automatically does that for you.  If you just paint on the background layer or clear or fill an area, stroke a selection it will remain a background layer  with its transparency locked.  The Background layer is only partially locked so you can work on it as shown by the un-filled in lock icon on the background layer in the layer palette.  If you look here you see layer 2 is unlocked, Layer 1 is fully locked and the background layer is partly locked and has been worked on.

  • Why does the background on my 24" iMAC turn light blue?

    I find that frequently the background on my 24" iMAC turns blue. This happens when using Word and Firefox. Any suggestions on likely cause?

    I'm having this problem, too. At least it may be the same thing. What I've determined is the screen gets zoomed in somehow (accidentally repeated tapping?) this am it happened again while I was hitting snooze for the 10th time lol
    Anyway, it's happened several times since buying the phone 2wks ago. The whole screen is water, but if I persist in sliding I can find images blown up. I always have to shut down and that's hard to do with the screen so large, because you can't easily get to the power off slide.
    Is there something I can do to fix this or do I need to take it back?
    Thanks

  • Why does the frame color change to black when I copy and paste between documents?

    Copying and pasting between documents in Indesign. The color of the text stays the same but the lines and frames change from a specified color to black. Also changes when I drag and drop can anyone tell me how to fix this?

    You have not provided any exact information like what version of ID, system info, paragraph styles, color definitions and whatnot, so we can't know what is going on. either way, ask in the ID forum and provide all those important details.
    Mylenium

  • Why does the Font color change on my front panel?

    I'm using the Font Dialogue to change the color of highlighted text on my front panel. After I save and reopen my app some of the Text will revert back to their original color (Black). Is this a bug in or am I missing something?

    I assume that you want all control labels with white text. If I change the black ones to white and save the VI, the white text color is retained. 
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    Control Console.vi ‏90 KB

  • Why does left side text in my fillable PDF disappear when I export from ID6?

    Hi there! Looking for urgent feedback on fillable forms.
    I created a form using InDesign 6 - mainly text fields using the interactive: convert to text field function. I used these settings: Event: Release on Tap; Printable, Required, Scrollable; Font size: auto.
    When I export the form using "Interactive PDF", what happens is that text entered to a fillable line is cut off on at the beginning of the line. Only half of the first character will appear.
    I tried adjusting the width of the interactive text box, looking at paragraph alignment settings, and field settings in Acrobat X and can't figure out how to change text alignment within a field.
    Seems simple enough, but haven't found a forum or tutorial that speaks to this. Help!
    Many thanks,
    Deanna

    Why bother using it?
    Pages '09 works! A difficult concept for most I know.
    Peter

  • How to change background color of text in pdf based by font name

    Hi
    How to change the background color of text in PDF based by font name. Is there any option in Javascript. e.g: If PDF containing ARIAL font, the ARIAL text background color needs to be changed in red color for all pages. Same for all fonts with different different color in the PDF.
    Thanks in Advance

    Hi
    1) Is there any possibilities to highlight with different color based on font using javascript
    2) list of font used in PDF using javascript
    3) How to hilight the text using javascript
    Thanks in Advance

  • Can anybody say why In the layer menu the background color is white when opening a layer mask, and why does it automatically turns black by simply opening the layer mask properties menu? The vector mask is white anyway.

    Can anybody say why In the layer menu, the background color is white when opening a layer mask, and why does it automatically turns black by simply opening the layer mask properties menu? The vector mask is white anyway.

    Topic or subject titles should be clear, pertinent and concise so that individual users can tell at a glance if they can help or not.
    That field is not for attempting to fit your entire question in there.
    Please keep this in mind next time you post.  Thank you.
    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

Maybe you are looking for

  • Dynamic attribute in CRM Loyalty

    Hi, I am creating a new dynamic attribute for Year to Date total amount spent by a customer when a member activity gets created. I created the dynamic attribute in SPRO under the Marketing->loyaltyPrograms->dynamic attribute. The attribute is added u

  • "Unknowns" in the Finder SHARED folder

    With the install of Leopard the Finder Sidebar displays SHARED items or sources. I am not part of a Network and have never used SHARE features so I am ignorant about the abilities and terminology - sorry. My issue is that unknown identities are appea

  • SQL 'IN' clause parsing

    I've written a program that parses SQL to identify all 'IN' and 'NOT IN' clauses like the one here: "SELECT x FROM tableA WHERE tableA.y IN (1,2,3,4,5)" I had to research all the possible keywords that can appear immediately before the left operand o

  • Current Year as filter

    Hi, I have a report with a column YEAR wich has values (2009,2010 and so on). I want filter report by current Year (2010, obviously, but next year it will be 2011 :-)). So I add on column Year following filter: YEAR(@{system.currentTime}) but it does

  • How to add template to report?

    Dear All how to add a user defined template to a report we are using reports 6i Thankx and Regards Raj