Conflictos con Acrobat reader XI y Acrobat X Pro

Buenas tardes
Tengo instalada la suite CS6, con acrobat X Pro y Acrobat reader XI, y hace algunos meses empece a tener problemas sistematicamente con Acrobat. una vez al mes el programa se rompe y no inicia, o los documentos no se abren ( como si no hicieran nada), teniendo que reinstalar. Por que puede suceder esto? no pueden convivir los dos programas? espero su ayuda!

No.
Adobe desaconseja tener ambos instalados,
el Reader gratuito permite ver PDFs, asi que desinstala el Reader XI si creas PDFs con el Acrobat Pro.
Marca por favor tu pregunta como contestada. Gracias.

Similar Messages

  • This.print(pp) with interactive type silent or automatic does not work  after upgrade acrobat reader 9 to acrobat reader 11

    After an upgrade of acrobat reader 9 to acrobat reader 11 the automatic printing of a pdf. The pdf is opened, but the print does not happen. With acrobat reader 9 it works. But with acrobat reader 11 the printing does not happen.
    I discovered when you specify pp.constants.interactionLevel.full it works on acrobat reader 11. But when you specify pp.constants.interactionLevel.silent or pp.constants.interactionLevel.automatic it does not work on acrobat reader 11. But with the full option we have a dialog  print box
    we do not want.
    In our jsp we load a pdf document and create a message handler to detect the print events of a pdf document that is in an <object> tag.
    In the pdf document we add
    package be.post.lpo.util;
    import org.apache.commons.lang.StringEscapeUtils;
    import org.apache.commons.lang.StringUtils;
    public class AcrobatJavascriptUtil {  
        public String getPostMessageToHostContainer(String messageName, String messageBody){
            return "var aMessage=['"+messageName+ "', '"+ messageBody+"'];this.hostContainer.postMessage(aMessage);";
        public String getAutoPrintJavaScript(String interactiveType, String printerName,String duplexType) {    
            String interactiveTypeCommand = "";
            if (StringUtils.isNotBlank(interactiveType)){
                interactiveTypeCommand = "pp.interactive = " + interactiveType + ";";
            String duplexTypeCommand = "";
            if (StringUtils.isNotBlank(duplexType)){
                duplexTypeCommand = "pp.DuplexType = " + duplexType + ";";
            return "" + // //
                    "var pp = this.getPrintParams();" + // //
                    // Nointeraction at all dialog, progress, cancel) //
                    interactiveTypeCommand + //
                    // Always print to a printer (not to a file) //
                    "pp.printerName = \"" + StringEscapeUtils.escapeJavaScript(printerName) + "\";" + //
                    // Never print to a file. //
                    "pp.fileName = \"\";" + //
                    // Print images using 600 DPI. This option MUST be set or some barcodes cannot //
                    // be scanned anymore. //
                    "pp.bitmapDPI = 600;" + //
                    // Do not perform any page scaling //
                    "pp.pageHandling = pp.constants.handling.none;" + //
                    // Always print all pages //
                    "pp.pageSubset = pp.constants.subsets.all;" + //
                    // Do not autocenter //
                    "pp.flags |= pp.constants.flagValues.suppressCenter;" + //
                    // Do not autorotate //
                    "pp.flags |= pp.constants.flagValues.suppressRotate;" + //
                    // Disable setPageSize i.e. do not choose paper tray by PDF page size //
                    "pp.flags &= ~pp.constants.flagValues.setPageSize;" + //
                    // Emit the document contents. Document comments are not printed //
                    "pp.printContent = pp.constants.printContents.doc;" + //
                    // printing duplex mode to simplex, duplex long edge, or duplex short edge feed //
                    duplexTypeCommand +
                    // Print pages in the normal order. //
                    "pp.reversePages = false;" + //
                    // Do the actual printing //
                    "this.print(pp);";
    snippets for java code that adds
    package be.post.lpo.util;
    import org.apache.commons.lang.StringUtils;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfAction;
    import com.lowagie.text.pdf.PdfDestination;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfName;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfWriter;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    public class PdfMergerUtil{
        private static final PdfName DID_PRINT = PdfName.DP;
        private static final PdfName WILL_PRINT = PdfName.WP;
        private List<PdfActionJavaScriptHolder> actionJavaScripts = new ArrayList<PdfActionJavaScriptHolder>();
        private class PdfActionJavaScriptHolder{
            private final PdfName actionType;
            private final String javaScript;
            public PdfActionJavaScriptHolder(PdfName actionType, String javaScript) {
                super();
                this.actionType = actionType;
                this.javaScript = javaScript;
            public PdfName getActionType(){
                return this.actionType;
            public String getJavaScript(){
                return this.javaScript;
        public void writePdfs(OutputStream outputStream, List<InputStream> documents, String documentLevelJavaScript) throws Exception {
            Document document = new Document();
            try {          
              // Create a writer for the outputstream
              PdfWriter writer = PdfWriter.getInstance(document, outputStream);
              document.open();      
              // Create Readers for the pdfs.
              Iterator<PdfReader> iteratorPDFReader = getPdfReaders(documents.iterator());
              writePdfReaders(document, writer, iteratorPDFReader);
              if (StringUtils.isNotBlank(documentLevelJavaScript)){
                  writer.addJavaScript(documentLevelJavaScript);
              addAdditionalActions(writer);
              outputStream.flush();      
            } catch (Exception e) {
                e.printStackTrace();
                throw e;
            } finally {
                if (document.isOpen()){
                    document.close();
                try {
                    if (outputStream != null){
                        outputStream.close();
                } catch (IOException ioe) {
                    ioe.printStackTrace();
                    throw ioe;
        public void addAdditionalDidPrintAction(String javaScript){
            actionJavaScripts.add(new PdfActionJavaScriptHolder(DID_PRINT, javaScript));   
        public void addAdditionalWillPrintAction(String javaScript){
            actionJavaScripts.add(new PdfActionJavaScriptHolder(WILL_PRINT, javaScript));   
        private void writePdfReaders(Document document, PdfWriter writer,
                Iterator<PdfReader> iteratorPDFReader) {
            int pageOfCurrentReaderPDF = 0;      
              // Loop through the PDF files and add to the output.
              while (iteratorPDFReader.hasNext()) {
                PdfReader pdfReader = iteratorPDFReader.next();
                // Create a new page in the target for each source page.
                while (pageOfCurrentReaderPDF < pdfReader.getNumberOfPages()) {
                  document.newPage();
                  pageOfCurrentReaderPDF++;          
                  PdfImportedPage page = writer.getImportedPage(pdfReader, pageOfCurrentReaderPDF);
                  writer.getDirectContent().addTemplate(page, 0, 0);          
                pageOfCurrentReaderPDF = 0;
        private void addAdditionalActions(PdfWriter writer) throws DocumentException{
            if (actionJavaScripts.size() != 0 ){
                PdfAction action = PdfAction.gotoLocalPage(1, new PdfDestination(PdfDestination.FIT), writer);
                writer.setOpenAction(action);
                for (PdfActionJavaScriptHolder pdfAction : actionJavaScripts ){
                    if (StringUtils.isNotBlank(pdfAction.getJavaScript())){
                        action = PdfAction.javaScript(pdfAction.getJavaScript(), writer);
                        writer.setAdditionalAction(pdfAction.getActionType(), action);
        private Iterator<PdfReader> getPdfReaders(Iterator<InputStream> iteratorPDFs) throws IOException {
            List<PdfReader> readers = new ArrayList<PdfReader>();
              while (iteratorPDFs.hasNext()) {
                InputStream pdf = iteratorPDFs.next();
                PdfReader pdfReader = new PdfReader(pdf);
                readers.add(pdfReader);        
            return readers.iterator();
    JSP code
    <script type="text/javascript" src="<bean:message key="scripts.js.internal.jquery" bundle="app"/>"></script>
        <script language="javascript">
        function goToDidPrintUrl(){
            var url = "<%=didPrintUrl%>";
            window.location.assign(url);
        function createMessageHandler() {
            var PDFObject = document.getElementById("myPdf");
            PDFObject.messageHandler = {
                onMessage: function(msg) {
                     if (msg[0] == "WILL_PRINT"){      
                        $("#printingTransitFeedBackMessage").text('<%=willPrintMessage%>');                   
                     if(msg[0] == "DID_PRINT"){
                        $("#printingTransitFeedBackMessage").text('<%=didPrintMessage%>');               
                        setTimeout('goToDidPrintUrl()',4000);
                onError: function(error, msg) {
                    alert(error.message);
        </script>
    </head>
    <body onLoad="createMessageHandler();">
    <div id="printingTransitFeedbackArea">
      <div class="info" id="printingTransitFeedBackMessage"><%=documentOpenMessage%></div>
    </div>
    <object id="myPdf" type="application/pdf" width="100%" height="100%"  data="<%=toBePrintedUrl%>">
    </object>
    </body>

    From the JS API Reference of the print method:
    Non-interactive printing can only be executed during batch, console, and menu
    events.
    Outside of batch, console, and menu events, the values of bUI and of interactive are ignored
    and a print dialog box will always be presented.

  • After Upgrading Acrobat Reader XI to Acrobat XI Pro the previewer in Outlook and Windows Explorer doesn't work.  I have to set the default program for .pdf's to Acrobat Reader inorder for the previewer to work.

    After Upgrading Acrobat Reader XI to Acrobat XI Pro the previewer in Outlook and Windows Explorer doesn't work.  I have to set the default program for .pdf's to Acrobat Reader in order for the previewer to work.
    Can anyone recommend a solution?

    If I set the default program for viewing PDF as Acrobat XI Pro the a PDF file will open with Acrobat XI Pro, but in Outlook I will get a white screen and the information bubble "This file cannot be previewed because there is no previewer installed for it" and in Windows Explorer I get a white screen in the preview pane.
    My Acrobat version is 11.0.10
    I am running Windows 7 Professional with Service Pack 1
    My Internet Explorer is Version 11.0.9600.17691
    Update Versions 11.0.17 (KB3032359)
    I am running Microsoft Office 2013

  • Form designing for compatibility between Acrobat Reader 7 and Acrobat Professional

    I have designed a Form using LiveCycle Designer 7.0. It contains a few subforms and lot of javascripting. One of the javascript logic I am using is to display a subform when a user clicks a radio button and hide it when the user clicks another radio button. The subform contains Text field, Numeric field, Rectangle, Line, Button. This worked well with Acrobat Reader 7.
    After I installed Acrobat Professional 7, my form breaks. I did a quick test to see where it breaks and came out with the following conclusion.
    1. If the subForm contains an Image, Line, Rectangle or Circle control, the subForm rendering throws error (Adobe Acrobat 7.0 has encountered a problem and needs to close) when I click on the radio button to display the subform.
    2. If the subForm contains Text control, it is displayed even if subform is invisible.
    3. If the subForm contains Checkbox, Radio, Dropdown list, List Box, Button, Submit By Email, Submit, Print Form, Reset Form; these controls are never displayed even if subform is visible.
    Has anyone encountered a similar issue?

    Hi Dave,
    Thanks for the response.
    I need some clarification. When you say 7.0.5 version, are you expecting 7.0.5 version of Reader or Professional?
    Here's the steps I followed:
    I originally had Adobe Designer version 7, 0, 041126, 0 and Acrobat Reader 7.0.5 and everything worked great.
    Now I have uninstalled Designer and Reader and installed
    Acrobat Professional Tryout. This installs Acrobat Professional version 7.0.0 and Adobe Designer version 7, 0, 041126, 0 (which is the same as above). Now the same forms which were working earlier are not working as expected.
    Please note that I have NOT installed Acrobat Reader 7.0.5. How do I find out what version of Reader does Designer user for PDF preview?
    If I separately download Acrobat Reader 7.0.5, how do I tell Designer to use that version for PDF preview?
    Thanks,
    Satish

  • Acrobat Reader XI with Acrobat 8 Pro on one machine

    I want to install Acrobat Reader XI on a machine that has Acrobat 8 Pro installed. I need the Acrobat 8 for my old version of AutoCad but I also need to use Acrobat Reader XI. Is it possible to have these two on one machine? Is there any special setup to make them compatible? Thanks

    It would either be Acrobat or Reader, not Acrobat Reader (that went about after AA 5). Reader XI can be run with AA 8, but you may periodically have to tell it which to open a PDF with. Using both can mix up the OS as to which it should use. That is the main problem I am aware of. If you meant Acrobat XI, then there may be an issue with the print drivers. You may have to play some file name changes and such for Acrobat 8 before you install Acrobat XI if that is the case, but the name changes may cause other issues based on how you are using the software. If it is AA XI, I would check to be sure that this version is not compatible with your CAD before trying the 2 version route.

  • IE8 tries to open PDF in Acrobat Reader instead of Acrobat Pro

    I installed Acrobat Pro and uninstalled Acrobat Reader (in XP). Unfortunately IE8 continues to try to open web links to pdf files using Acrobat Reader, even though Reader has been uninstalled. XP correctly associates pdf files on my computer with Acrobat Pro. I've tried repairing my Acrobat Pro installation, but the behavior remains. Anyone know how I can get IE8 to use Acrobat Pro for pdfs?

    You could check the registry key mentioned in my last posting in this discussion:
    http://forums.adobe.com/message/2726399#2726399
    If the Reader executable is missing, You can manually change to "C:\Programs\Adobe\Acrobat #.0\Acrobat\Acrobat.exe" or what is the correct path on Your pc.

  • Cannot Access Adobe Acrobat Reader After Canceling Adobe XI Pro Subscription

    I previously paid for a subscription for Adobe XI Pro. However, I canceled the subscription 3 months later. When I canceled the subscription, I was no longer able to access Acrobat Reader for some strange reason. When I try to install it, I have difficulty. Why did this occur?

    If running Windows try to the Clean Script: Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs
    The download from http://get.adobe.com/reader/enterprise

  • Acrobat Reader XI and Acrobat 8 prof

    Running windows 7 64 bit with Adobe Reader XI and on same pc Acrobat Prof. 8 is also installed.
    When opening a pdf in explorer the following comes: "Cannot use Adobe reader to view pdf in your web browser. Reader will not exit.
    Please exit your browser and try again"
    Default pdf program is adobe XI, so it is not because it try to use Acrobat 8 in the browser.

    Acrobat versions before 10 and Adobe Reader on the same system was not really a supported configuration.
    But I don't know if this is what causes your problem (I have never seen that error message before).
    What is your IE version?

  • What is the relationship between Acrobat Pro, Acrobat Reader, and the Acrobat Reader Plugin for Firefox?

    Mozilla's plugin scanner identifies an old version of the Reader plugin on my machine. The download indicates a massive 55 MB size, and implies that Reader itself will be installed on my machine. HOWEVER, I don't want Reader installed! I use Acrobat Pro and I have noticed some problematic interactions over the years.
    What is the relationship between Acrobat Pro, Reader, and the Firefox Plugin?

    You can also check out the comparison at http://www.adobe.com/products/acrobat/matrix.html.

  • Acrobat Reader 9 and Acrobat Writer 7

    Good morning
    I have a nice issue with these 2 adobe products
    We have 2 products installed in our pc: Adobe Reader 9.x and Adobe Writer 7
    We have developped a SAP-Procedure who load a PDF form in wich users can modify some data
    The procedure need Adobe 8.1.x (up) but the presence of Reader 9 and Writer 7 will generate an error loading the form
    IS it possible to unregister the Adobe 7 module loaded in IE and re-load Adobe Reader 9 activex modules?
    Best regards
    Nicola G.

    Thanks for the answer. I've found a little workaround... The only way is
    uninstall Adobe Reader 9.x and re-install SO the program could
    re-register AR components in IE. This because AA7 lock some keys and cannot unregister them manually!

  • How to open pdf in Acrobat Reader in Firefox window/Tab when both Acrobat Pro and Acrobat REader are

    I would like to open pdf files in firefox using Adobe Acrobat Reader.
    I have both Acrobat Pro or whatever its called and Acrobat Reader installed.
    Presently going to firefox's tools, options, then selecting the file types option I cannot select any plugin to open my pdf's besides what's labeled as "adobe acrobat" but which executes an in-tab instance of Adobe Acrobat Pro, despite the ambiguous language on the plugin which I suspect stems from Adobe's evolving and confusing conventions regarding just what Adobe Reader, Adobe Acrobat, Adobe Acrobat Reader, and Adobe Acrobat Pro really is.
    Anyways, how to make pdfs open in-tab instances of Adobe Acrobat Reader while I have both the Reader and the Pro installed?
    Is there a sepperate plugin I need or something?
    Any help is very Appreciated

    eh,
    The problem w/ acrobat is that it takes forever to load
    I was going to just use reader to read documents, and acrobat to edit, so I could gut reader of all the plugins worthless for 99.9999 of pdfs I use and it'll load fast.
    foxit is nice, but won't open in-browser despite their continuing claims of supporting this feature.
    That's so bizarre that adobe won't allow you to choose which one you want to run. Its installed as sepperate programs on the uninstall list, on the "open with" context menu, and w/ file associations, so why would it not be possible to only open pdf links w/ one?
    Maybe its time to abandon acrobat and just use reader. There's much cheaper programs w/ all the same functionality as acrobat, so I guess I'll move on to those.
    If anyone else has suggestions feel free to make em.

  • Acrobat Reader X Problem

    I recently upgraded from Acrobat Reader 9 to Acrobat Reader X on Windows Vista. Ever since I have not been able to open any PDF documents that are sent to me via e-mail with Adobe Reader X although I can open up pdf files that are on my computer. When I try to open a e-mailed pdf  document with Acrobat Reader X opened on my desktop it gets opened by Acrobat Professional Version 8 which was preinstalled on my computer and cannot be deleted. This does not stay open because I did not subscribe to the software. I have tried reinstalling Adobe Rearder X as well as using the "Repair Adobe Reader Installation" feature in Adobe Reader "Help" and also via the Control Panel "Set Associations" feature. This has never happend previously with any other Adobe Reader upgrades. I am not certain what else can be attempted or how to resolve the problem?

    Hello Michael,
    I think Galena01 was actually asking about Reader X and not Acrobat.  She was just trying to give additional information.
    I have the same issue in that after installing Reader X, it is no longer possible to open pdf files attached to emails or from websites.  A Reader screen does appear but it remains blank even after several minutes and IE is often locked and a logoff / logon in Windows is required as Task Manager will not shut down IE in this situation.  The only workaround appears to be to open Reader X first, then open the online pdf file.
    I believe Adobe have released faulty code.
    Windows Vista 32bit Ultimate SP2
    All current MS updates
    Reader X v10.0.1

  • Link works in Acrobat Std 8.0, Acrobat Reader 8.2, but not in Reader 9.0

    Hi. I also posted this in the Acrobat site:.  Perhaps this might be a more appropriate location?
    Hello.
    I faced a really strange thing today.  I created a report PDF through Xcelsius.  In this PDF, I have a Flash button which, when clicked, would link to an Excel (.xls) file within our LAN.  The link works within Acrobat Standard 8.0 but not within Acrobat Reader 9.0.  I have examined the preferences on both and they are identical (as far as I can see).
    Details:
    Software used:  Xcelsius 2008 SP1
                           Acrobat Standard 8.0.0
                           Acrobat Reader 9.0
                           Acrobat Reader 8.2 (later)
    Link address:   file://G:\Management\[sub-directory]\[sub-sub-directory]\[filename].xls
    Any help at all will be welcomed and appreciated.
    Thank you!
    --- Update ---
    I later uninstalled Reader 9.0 and reinstalled Reader 8.2 and the link worked in Reader 8.2.  The link is a direct address and not a script.  The file is opened in IE 7 as a spreadsheet with Macros attached.  It is important for me that it works in both versions of Reader as there are several versions of Acrobat Reader deployed among our hospital -- Reader 7, 8, and 9.
    Can someone help shed some light on this, please?

    I think this is related to this other problem: http://forums.adobe.com/thread/567165?tstart=-1  .  This has appeared with current releases of Acrobat, Acrobat Pro and Acrobat Reader.  Adobe seems unresponsive.  We started seeing it this week in conjunction with Excelsius 4.5.  I have both Acrobat Pro 9.3 and Acrobat Reader 8 on my PC.  Pro blows up when I open the .pdf created by Excelsius, but Reader does fine.

  • Indesign CS4 button flashes after exported to PDF and viewed in Acrobat Reader/Professional X

    Hey everyone,
    Greetings!
    I've encountered this odd problem when preparing my portfolio.
    I've created some 40 buttons in InDesign CS4 (all according to the official tutorial) to Show/Hide Fields (specificly images), and navigate through the pages.
    The buttons all have their own Normal and Rollover states, but no Click states.
    After exporting the file to PDF, I tested the buttons in Acrobat Reader 9 and Acrobat Pro 9, and both the actions and the states worked fine.
    BUT that's not the case with Acrobat Reader X or Acrobat Pro X.
    The actions are still there, showing the images and navigating, but the states are not!
    The buttons' rollover states just flashes when the mouse hover above them, and even in Normal state, they kept *blinking* randomly.
    Frustrated for a week.
    PS. I suspected and used a Indesign file with only one simple button to rule out the following:
    1. Overlapping buttons
    2. Slow processing due to large image size
    3. Mishandling of transparency
    At this moment I'm pretty sure it's an Acrobat thing...Help!

    Thanks Dave! I was in the middle of writing this when your post came in:
    Not sure if this will help anyone, but I changed the button fill color to white and it seemed to fix the flicker. I exported each state from indesign as a PDF and recreated the button from scratch. This still had the flicker. I'm guessing something strange is happening with the transparancy of the states.
    Glad to hear it's fixed!

  • Unable to make Acrobat X the default handler/opener of PDF files on a Windows 8 laptop with Acrobat Reader also installed.

    I have a user with a Windows 8 Sony Vaio laptop with Microsoft Office 2013 Professional, Acrobat X Standard, and Acrobat Reader installed. Another program on his system requires Acrobat Reader so we cannot just remove that and keep it off the system. Regardless of what he does to set the default program to open PDF files with, when he opens a PDF file it always opens it in Acrobat Reader and not Acrobat itself. We have re-associated it and set the default program handling repeatedly and have also tried complete uninstall and reinstall of both Acrobat and Acrobat Reader which had no effect on this. At this point I am of the opinion that this is a bug and the file association is being overridden somewhere in the registry besides the file association entries. Any help is appreciated.

    The only supported way to set the default handler (besides the Wizard and cmd line properties) is via the UI at Edit > Preferences > General > Default PDF Handler. The installer has to be invoked and many registry entries get touched during the switching process.
    You should also verify your dot versions of the product support Windows 8: Overview — Acrobat and Adobe Reader Release Notes.
    Finally, while you Acrobat 10 should work with Reader 11, try reverting to Reader 10 (that should be your last resort).
    Ben

Maybe you are looking for

  • Reinstall Mac OS X Lion with saving data

    Hello, I want to reinstall Mac OS X Lion with saving my programms, docs and photos. What should I do then? I know that Time Machine backups data with the  system. But Ineed to backup my files and then on clear system I want  to restore this backup. P

  • Is there an add on to attach a hyperlink to a word or phrase

    Say you are making a comment on a web page or blog and want to attach a hyperlink to a word or phrase - is there an add on for Firefox to do this

  • Can't delete from portal content areas

    Sun Solaris o/s version 2.7 Oracle Portal version 3.0.9.8.0 9iAS version 1.0.2.2 Oracle Database version 8.1.7.1.0b Some users are suddenly unable to delete from content areas. The following error occurs: An unexpected error has occurred (WWS-32100)

  • Difference between Tekton and Tekton Pro?

    Hi, I'm aware that Adobe's "Pro" designation means that the font contains all the necessary glyphs to set European languages. But that's not what I'm asking. We have a client for whom we're preparing a book. We've been using Tekton Pro (Bold and Regu

  • Photo rendering issue: Yellow Caution with red background & star

    In FCP X 10.0.1 When I changed the playback settings in preference to original media from proxy, the program rendered from 24 hours.  The edit is about 15 minutes long.  I've used many hi-res photos from iPhoto - maybe 100.   The photos were taken ov