InDesign 6 Interactive Buttons Not Displaying Correctly in Acrobat X

Forgive me if this has been asked. When I create interactive buttons in InDesign 6, their display is erratic in Acrobat X. Sometimes they display correctly. Sometimes, their display is erratic and sometimes they do not display at all. I have noticed that in Acrobat X, the cursor changes to the hand over the correct area, but nothing happens when I click. Oddly enough, the buttons always display correctly in Reader. This is fine for my users but makes my job in doing the final prep very difficult.

I’ve seen this reported in this past. It’s not an InDesign issue or the files wouldn’t work in Reader.
If you get any answers in the Acrobat forum, please come back and share them.
Bob

Similar Messages

  • InDesign 6 Buttons Not Displaying Correctly in Acrobat X

    Forgive me if this has been asked. When I create interactive buttons in InDesign 6, their display is erratic in Acrobat X. Sometimes they display correctly. Sometimes, their display is erratic and sometimes they do not display at all. I have noticed that in Acrobat X, the cursor changes to the hand over the correct area, but nothing happens when I click. Oddly enough, the buttons always display correctly in Reader. This is fine for my users but makes my job in doing the final prep very difficult. As further information, with small book files, the display is fine, but as pages are added, button display goes haywire.

    Lori,
    Thanks for your response. This is an incredibly painful bug. I hope Adobe is a little more attentive than they usually are in fixing this. I have more than 100 interactive books which I must convert and maintain (they're our equipment manuals). Not having full functionality, especially given the cost of the software, is a serious issue. Any suggestions as to who needs to be contacted for follow up?

  • How to fix the firefox buttons not displaying correctly (i.e. the "save file" button when trying to install an add on)?

    For example, the button for "save file" when downloading an add-on does not display correctly. It works nevertheless, but the button itself is not showing up correctly.
    *edit: sp errors*

    It looks that you have made changes to the appearance of button that cause items and text to be larger.
    In your case this doesn't seem to work properly with the consequence that the middle part of the button gets distorted.
    I'm curious if this artifact would move to the other (Cancel) button or disappear if you would use the Tab key or cursor key to set focus to the Cancel button or if it is a problem with the label text that isn't default (OK or similar).

  • Group Layout- Button not displaying correctly

    Hello all,
    I am having a problem with group layout and having a button display incorrectly. Here is my code:
         public HRES_AboutBox(){
              initComponents();
         private void initComponents(){
              //--------Set-Up---Frame------------
              frameLocation = Toolkit.getDefaultToolkit().getScreenSize();
              frameWidth = frameLocation.width;
              frameHeight = frameLocation.height;
              aboutFrame = new JFrame(FRAMETITLE);
              aboutFrame.setPreferredSize(new Dimension(487,212));
              aboutFrame.setLocation(frameWidth / 4, frameHeight / 4);
              aboutFrame.setMaximumSize(new Dimension(800,600));
              aboutFrame.pack();
              aboutFrame.setVisible(true);
              aboutFrame.setDefaultCloseOperation(EXIT_ON_CLOSE);
              aboutFrame.setTitle(FRAMETITLE);
              setupComponents();
    private void setupComponents(){
         //--------Set-Up---Button------------
         closeButton = new JButton();
         closeButton.setName(BUTTONNAME);
         //--------Set-Up---Logo------------
         picURL = HRES_AboutBox.class.getResource("/testLogo.jpg");
         appPic = new ImageIcon(picURL);
         //--------Set-Up---Labels------------
         appTitleLabel = new JLabel();
         versionLabel = new JLabel();
         appVersionLabel = new JLabel();
         vendorLabel = new JLabel();
         appVendorLabel = new JLabel();
         homepageLabel = new JLabel();
         appHomepageLabel = new JLabel();
         appDescLabel = new JLabel();
         imageLabel = new JLabel();
         appTitleLabel.getFont().deriveFont
            (appTitleLabel.getFont().getStyle()| Font.BOLD, appTitleLabel.getFont().getSize() + 4);
         appTitleLabel.setText("T.E.S.T - Test Text for Label");
            appTitleLabel.setName("Application Title Label");
         versionLabel.getFont().deriveFont
           (versionLabel.getFont().getStyle() | Font.BOLD, versionLabel.getFont().getSize() + 4);
            versionLabel.setText(VERSIONLABELSTRING);
            versionLabel.setName("Version Label");
            appVersionLabel.setText(APPVERSIONLABELSTRING);
            appVersionLabel.setName("Application Version Label");
            vendorLabel.getFont().deriveFont
           (vendorLabel.getFont().getStyle() | Font.BOLD, vendorLabel.getFont().getSize() + 4);
            vendorLabel.setText(VENDORLABELSTRING);
            vendorLabel.setName("Vendor Label");
            appVendorLabel.setText(APPVENDORLABELSTRING);
            appVendorLabel.setName("Application Vendor Label");
            homepageLabel.getFont().deriveFont
            (homepageLabel.getFont().getStyle()| Font.BOLD, homepageLabel.getFont().getSize() + 4);
            homepageLabel.setText(HOMEPAGELABELSTRING);
            homepageLabel.setName("Homepage Label");
            appHomepageLabel.setText(APPHOMEPAGELABELSTRING);
            appHomepageLabel.setName("Application Homepage Label");
            appDescLabel.setText(APPDESCLABELSTRING);
            appDescLabel.setName("Application Description Label");
            imageLabel.setIcon(appPic);
            imageLabel.setName("Image Label");
            //--------Set-Up---Layout------------
            layout = new GroupLayout(aboutFrame.getContentPane());
            aboutFrame.getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                     layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                     .addGroup(layout.createSequentialGroup()
                         .addComponent(imageLabel)
                         .addGap(18, 18, 18)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.TRAILING)
                             .addGroup(GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
                                 .addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                                     .addComponent(versionLabel)
                                     .addComponent(vendorLabel)
                                     .addComponent(homepageLabel))
                                 .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                                 .addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                                     .addComponent(appVersionLabel)
                                     .addComponent(appVendorLabel)
                                     .addComponent(appHomepageLabel)))
                             .addComponent(appTitleLabel, GroupLayout.Alignment.LEADING)
                             .addComponent(appDescLabel, GroupLayout.Alignment.LEADING, GroupLayout.DEFAULT_SIZE, 329, Short.MAX_VALUE)
                             .addComponent(closeButton))
                         .addContainerGap())
              layout.setVerticalGroup(
                     layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                     .addComponent(imageLabel, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                     .addGroup(layout.createSequentialGroup()
                         .addContainerGap()
                         .addComponent(appTitleLabel)
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addComponent(appDescLabel)
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(versionLabel)
                             .addComponent(appVersionLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(vendorLabel)
                             .addComponent(appVendorLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(homepageLabel)
                             .addComponent(appHomepageLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, 19, Short.MAX_VALUE)
                         .addComponent(closeButton)
                         .addContainerGap())
              pack();
         public void closePasswordBox(){
              dispose();
         public static void main(String [] args){
              HRES_AboutBox hra = new HRES_AboutBox();
              if(hra.isVisible() == false){
                   hra.setVisible(true);
    }When I run this it comes out fairly alright but the button in the lower right corner does not display correctly, i have tried setting the size of the button but that does not solve the problem. If anyone can give any advice or info on how to get it to display right I would appreciate it.

    Hi,
    I usually only use the GroupLayout when using a GUI builder like the one in NetBeans.
    If I need to layout something manually I usually use a combination of the other layout managers.
    Sometimes I combine the two: eg. static layout with the GUI builder, dynamic layout by hand
    But if you want to use the GroupLayout manually, check:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/group.html
    Otherwise check:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/index.html

  • PayPal donation button not displaying correctly in FireFox

    I added a PayPal donation button, but it only displays correctly in Explorer - not in FireFox.  The site is:  www.washoe.k12.nv.us/mtrose
    <div id="content"><!-- InstanceBeginEditable name="content" -->
            <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_donations">
    <input type="hidden" name="business" value="[email protected]">
    <input type="hidden" name="lc" value="US">
    <input type="hidden" name="item_name" value="Mount Rose Elementary School">
    <input type="hidden" name="no_note" value="0">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest">
    <input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
            <h1>Two-Way Immersion</h1>
            <p>The goal of our program is to help young s tudents become fluent in Engish and Spanish by the end of <br>
            elementary school.        </p>
            <p>Our program began in 2008-2009 with one kindergarten class and will expand one grade each year as the students move through the grades for a total of seven classes.</p>
            <p>The program is voluntary and there is a waiting list.</p>
            <p>The initiation of the program is designed to serve the students already zoned for our school and does not involve busing students or change Mount Rose's current zoning.</p>
            <p>The program also does not involve the addition of portables to our school at this time.</p>
            <h2>Mount Rose Centennial Celebration!</h2>
            <p><a href="Mount_Rose_Centennial.pdf">Mt. Rose Centennial Celebration</a> - An Old Time Picnic and Reunion of Mt. Rose Elementary School Friends Past and Present. Join us on October 2, 2011 from Noon to 4 PM for A Celebration to Commemorate the Centennial of Mt. Rose Elementary School One Hundred Years of Educating Reno's Downtown and Old Southwest Neighborhood Young!</p>
            <p>Commemorative T-shirts avialable $8 / For more information click <a href="centenial.pdf" target="_blank">HERE.</a></p>
            <p>For more information contact Jenny Brekhus 544-1694 or [email protected]</p>
            <p><img src="images/tshirt.jpg" width="403" height="253" alt="tshirt photo"></p>
            <h2> </h2>
        <!-- InstanceEndEditable --></div>
        <div id="rightside" class="brd-thin-white-top"><!-- InstanceBeginEditable name="right-top" -->
            <h2>Early Release Days!</h2>
            <p> Every Wednesday during the 2010-2011 school year, school will be released at 2:30 for teacher professional learning communities. This is a district wide change and will replace most early release days.</p>
            <p>Please remember to make arrangements for you child on Wednesdays!</p>
        <!-- InstanceEndEditable --><!-- InstanceBeginEditable name="right-bottom" -->
            <h2><a href="https://campus.washoe.k12.nv.us/campus/portal/washoe.jsp"><img src="images/infinite_campus.jpg" width="142" height="102" alt="infinite campus portal"></a></h2>
            <p><a href="http://www.washoe.k12.nv.us/district/departments/transportation/bus-rules"><img src="images/bus_rules.gif" width="120" height="90" alt="bus rules"></a></p>
            <p><a href="http://www.washoe.k12.nv.us/district/departments/transportation/elink"><img src="images/bus_schedules.gif" width="202" height="87" alt="bus schedules"></a></p>
            <p><a href="http://www.washoe.k12.nv.us/espanol"><img src="images/spanish.gif" width="200" height="70" alt="wcsd spanish site"></a></p>
            <p><img src="images/wcsd.jpg" width="99" height="143" alt="wcsd logo"></p>
            <!-- InstanceEndEditable --></div>
        <div id="footer" class="brd-thin-white-top">
            <p class="footer-text">&copy; 2010 |<a href="mailto:[email protected]" target="_blank">Webmaster</a></p>
        </div>
    </div>
    </body>
    <!-- InstanceEnd --></html>

    Appears OK in Firefox... is it not where you want it?

  • RSS, Back and Slideshow buttons not displaying correctly

    I just finished my new wesite in Iweb and published it to .mac. Everything is working fine in Iweb but when I look at the published site the RSS, Subscribe, Back buttons are displaying really screwy. There are added buttons where I didn't put them. How can I fix this? It is occurring specifically on my photo album pages.
    Janer

    Publish your site to and folder on the desktop and double click the index.html file to launch your site in the browser.
    If the page looks OK do a "Publish all to Mac".
    If its still not right you'll have to go back to the iWeb page and try resetting the buttons and then do a Publish All.

  • Table header sort buttons not displaying correctly.

    HI All,
    I'm having a problem with data table headers that seems to have appeared out of nowhere but is probably something simple I'm overlooking. To be sure it wasn't something deep in my app, I've created a simple project and recreated the problem.
    I created a simple web project and dropped a table onto the main page. I then bound the table to a full select of a myqsql table and then compiled. Simple enough, everything looks okay, until I opened the page in my browser.
    The table displays without borders and the sort buttons in the headings are not displayed but described such as this example
    " Button to sort column Date as the primary sort column."
    Any ideas?
    I'm not sure if this is a Creator error/setting or something else but I thought I'd start with Creator.
    Thanks
    Barry

    Some additional info
    The sort "buttons" have been replaced by links, that don't do anything. I even enabled all the multiple-select, pagination, etc features for the table and rather than be displayed as buttons, links have appeared for these functions as well.
    Thanks

  • BC Add To Cart Button Not Displaying Correctly

    I have been told by BC Tech support that Muse is causing the BC Add To Cart Button to have issues when exporting my site live. Here are two pages, one created in Muse where the button does not work correctly & one not created in muse where the same button information does work correctly.
    1.) Doesn't Work: Custom Made Outdoor Logo Mat - Customized Aqua Flow Entry Mats
    2.) Works: bctest
    Any ideas on how to get that working?
    The page which doesn't work was designed in Muse & I added the module code: {module_product,201955,6549130}    via the Insert HTML function in Muse. Apparently things get jumbled up on export or something to that effect.
    Thanks
    even on a page created from my side with no content whatsoever other than the Buy Button Code still will not work: Test01
    & interestingly, a page created in Dreamweaver with the same module code works correctly. Test 02

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong

  • Indesign nested style not displaying correctly

    Hello, having a little bug here. when i style something that has a nested style, the styling doesn't continue after multiple lines unless i open and close the document... here is a visual example.
    the first paragraph is displaying correctly, the second is displaying improperly.
    the body colored text (bold cyan) style stops at an "end nested style" character, and the normal paragraph copy style (black) continues after that to the next bullet. but as you can see it won't visually show the new styling until i reopen the document. very weird, correct?
    am i making sense? any ideas?
    mac 10.5.6
    2x3.2quad eight core
    id cs4

    Mike,
    I would edit the first nested style to apply through one bullet (copy n paste a bullet here); or better: set up the paragraph style to make bullets and you could instead charcter style the bullet from the Bullets and Numbering part of the dialog box, and leave it out of the nested style section.
    Question: Do you want the blue to cover a set number of lines? Then define a line style, just south of the nested styles part of the dialog box.
    If the trick relies on a End Nested Style character embedded, then you are probably doing that because you want random word count lengths for the blue character style to be applied in different paragraphs. Sounds like work, tho, to me, and I would look for a simpler rhythm, if there is one.
    Mike Witherell in Maryland

  • Hover menu buttons not displaying correctly in Firefox

    Hello,
    I have a small problem with firefox. It does not seem to
    display the images correctly. In firefox the buttons are pushed
    down and you can only see part of the image. In IE6 and IE7 it is
    displayed fine.
    here is the URL so you can take a look at it:
    Page
    Does anyone know what the problem might be?

    Just drop a zoom:100% style on the link, and IE will get it
    right.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "TC2112" <[email protected]> wrote in
    message
    news:fh2nt4$4u8$[email protected]..
    > Hello,
    >
    > The problem is with IE, not Firefox.
    > The content of your menu link tags is a clear gif image
    that is the same
    > height as the background images applied to the link tag
    that change on
    > mouseover.
    > Even though it looks like you want it to in IE, IE is
    actually rendering
    > your
    > code incorrectly.
    > Firefox is rendering your code exactly as it should.
    >
    > Your background images are applied by CSS to the link,
    not the image
    > within.
    > In standards compliant browsers like Firefox, the height
    of link
    > attributes
    > such as background and border are determined by the font
    size or line
    > height
    > that applies to that link, even if there is no text in
    the link.
    > As a test, you can add font-size:38px (the height of
    your background
    > images)
    > to "table.menu" in your CSS and you'll see your entire
    link background
    > images
    > in FF.
    > IE incorrectly streches the link background to the
    height of the image
    > within
    > within the link.
    > IE does the same thing to borders if they are applied to
    just the "a" tag
    > and
    > not to "a img" in the CSS.
    >
    > A quick fix:
    >
    > table.menu { width:186px; margin-top:6px;
    > line-height: 38px; }
    >
    > A better fix and some great information:
    >
    >
    >
    >
    http://projectseven.com/tutorials/css/uberlinks/index.htm
    >
    > and:
    >
    >
    http://css.maxdesign.com.au/listamatic/
    >
    > Hope that helps,
    >
    > Take care,
    > Tim
    >

  • Upgrading APEX from 3.2 to 4.0 images and buttons not displaying correctly

    Database 11.2.0.1
    APEX: 3.2.1
    Attemping to upgrade APEX from 3.2 to 4.0. The installation script runs fine and updates the database successfully. I run the .sql to import the images and it ran successfully however when I attempt to access the APEX home page, the images are not loaded and the buttons don't do anything. I did some research through google but did not come to anything that resolved my issue. Does anyone have any ideas?
    Thanks for your time...

    If you are using mod_plsql, you need to run @apxldimg.sql script with SYS user file present with Apex installation. Also provide the location of your apex folder as parameter to this script.
    Habib

  • Simple nav buttons not displaying correctly

    When I add content to the page that expands the table, the
    nav buttons on the left "spread out". This isn't happening in
    Safari. Any help would be much appreciated. Here is the page I'm
    working on:
    http://www.csayersdesign.com/achieveIT/pages/company.htm

    Curtis Sayers wrote:
    > When I add content to the page that expands the table,
    the nav buttons on the
    > left "spread out". This isn't happening in Safari. Any
    help would be much
    > appreciated. Here is the page I'm working on:
    >
    http://www.csayersdesign.com/achieveIT/pages/company.htm
    >
    >
    Problem is you're doing what a lot of beginners do, trying to
    create a
    page by using one single table and splitting the cells into
    numerous
    cells......that aint going to work as you have found out.
    It doesn't help either that you are allowing Fireworks to
    generate this
    code. When you do that it normally produces fragile code that
    the
    browser tries its best to interpret and a lot of times fails
    The design you're trying to produce is a fairly basic 2
    column table
    which you should ideally set up directly in Dreamweaver.
    A sticking plaster option would be to remove all the elements
    in your
    navigation side bar and merge that column back into one
    single cell. You
    can do that by click-dragging in Dreamweaver then in the
    properties
    inspector where it says 'cell' in the bottom left corner
    click the white
    square icon which will merge all the cells into one.
    The downside to this is that it may upset the fragile code
    created by
    Fireworks and throw your page into even more turmoil.
    If it does work you then need to insert another table (a
    nested table)
    into the cell which you merged back into one. Then put your
    navigation
    buttons into it.
    Tables that are independent of one another cannot interact
    and so you
    create a more stable environment for your design.

  • Exporting to PDF with InDesign 2014, colours not displaying correctly.

    Since we have updated to InDesign 2014, we are getting a lot of comments from our customers saying and asking why the colours are different. At first we thought is was because we send out low res proofs and there could have an issue when they tried to print. However, we are now getting comments from customers when we send them print ready versions. We cannot duplicate the problem on our machines (or my Windows Phone). We then suspected that it could be the version of Acrobat the customers are using, we are asking customers for this information. We have checked our presets and they are the same as they were for previous versions.
    Has anyone else seen this behaviour and do you have any suggestions to remedy it?

    If you are using custom color for your CMYK settings make sure that you set the right profile color in your InDesign CC 2014, since InDesign CC 2014 default color settings is set to "Working CMYK - U.S. Web Coated (SWOP) v2". InDesign CC 2014 then exports your file to PDF using the default profile.
    In Previous InDesign CC the default values for Assign Profiles is set to Discard (use current working space) for RGB Profile and Discard (use current working space) for CMYK. But in InDesign CC 2013 if you are going to export an InDesign file into PDF, it will automatically use your Color Settings options for CMYK values. But in InDesign 2014 those settings will be ignored by InDesign because it will use the current Assigned Profile by InDesign. If you are going to check your your working space back in InDesign CC 2013 it was set to your CMYK Color Settings.
    And Finally always check you pdf setting under Export PDF settings dialog box to No Color Conversion.
    Hope this help. And I can't be sure if this will solve your problem. But at least I was trying to help.

  • Acrobat not displaying correctly in Win7 1920x1080 screen

    Been puzzling over why Acrobat 9.4.1 doesn't display correctly on my new Dell laptop (D6550), i7 cpu, 1920x1080 display, WIN7 64 bit.  Strange part is that it appears that the window overflows the top and right side of the screen a little, and that there is a DOUBLE header bar at the top, one with small icons and one with large ones, with one of them peaking through around the edges.  Can't figure this one out, all other apps display correctly.  Acrobat picture also looks a little blurry.  Like I say, pretty strange, could find no "hooks" to adjust, nor any other reports like this on the forum.  Anyone else run into this one?
    thanks bob

    Lori,
    Thanks for your response. This is an incredibly painful bug. I hope Adobe is a little more attentive than they usually are in fixing this. I have more than 100 interactive books which I must convert and maintain (they're our equipment manuals). Not having full functionality, especially given the cost of the software, is a serious issue. Any suggestions as to who needs to be contacted for follow up?

  • When I open a pdf in Adobe Acrobat xi pro it is not displaying correctly. If a file is all black with orange writing, I will see only the orange writing. Its not until i print it or open crop pages dialog box that i see the background. i am on a Windows 7

    When I open a pdf in Adobe Acrobat xi pro it is not displaying correctly. If a file is all black with orange writing, I will see only the orange writing. Its not until i print it or open crop pages dialog box that i see the background.
    i am on a Windows 7 professional PC, 64-bit.

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

Maybe you are looking for

  • New MacBook Pro and 30" display - resolution wrong

    Just got new MBP with Snow Leopard. Had 30" Cinema Display connected to old mbp with dual DVI (at least, I think that's what it is - I'm not connector/adapter literate). Since there was no port for the multi-pin part of the adapter I called Apple sup

  • Will FCP Suite work OK on the dual intel iMac G5 ?

    We are getting ready to open a new digital video classroom for up to 26 students. Each student will have a G5, NTSC monitor, firewire capture device of some sort, and sound I/O to quality sound system. Anyone have any experiences or insight to using

  • Content not rendering when renderMode is set to CPU on QM734-8G

    I developed a mobile app for Android and iOS. Recently, I've come across an android tablet, QM734-8G, that uses Android 4.2.2. When launching the app on this device, I simply get a blank screen and no content is rendered. I know the app is running be

  • Using native extensions for Adobe AIR

    This question was posted in response to the following article: http://help.adobe.com/en_US/air/build/WS597e5dadb9cc1e0253f7d2fc1311b491071-8000.html

  • Combine multiple jars into one product jar

    Hi everybody, I use multiple third party jar APIs in my applet project. When I built the project, I get one product jar and the other jars in LIB folder. I am wanna produce only one jar including other jars inside. I use netbeans. Shortly How can I c