AS 2.0 Detect Acrobat Reader

Hi,
Is there a code to detect if you installed Acrobat Reader?
Thanks

Just wondering if the Netgear software package was installed for this device?  It might not show up because the driver is not installed.
{---------- Please click the "Thumbs Up" to say thanks for helping.
Please click "Accept As Solution" if my help has solved your problem. ----------}
This is a user supported forum. I am a volunteer and I do not work for HP.

Similar Messages

  • Detecting Acrobat Reader

    I'm detecting Acrobat Reader in Flex using ExternalInterface and Javascript. Is there a better ( more reliable) way? I'd think flash player would already know this info?

    Nope I'm not using AIR, it's a browser app.  I do it by including this JS in my HTML wrapper:
    // initialize a variable to test for JavaScript 1.1.
    // which is necessary for the window.location.replace method
    var javascriptVersion1_1 = false;
    // initialize global variables
    var detectableWithVB = false;
    var pluginFound = false;
    function goURL(daURL) {
         // if the browser can do it, use replace to preserve back button
         if(javascriptVersion1_1) {
              window.location.replace(daURL);
         } else {
              window.location = daURL;
         return;
    function redirectCheck(pluginFound, redirectURL, redirectIfFound) {
         // check for redirection
         if( redirectURL && ((pluginFound && redirectIfFound) ||
              (!pluginFound && !redirectIfFound)) ) {
              // go away
              goURL(redirectURL);
              return pluginFound;
         } else {
              // stay here and return result of plugin detection
              return pluginFound;
    function canDetectPlugins() {
         if( detectableWithVB || (navigator.plugins && navigator.plugins.length > 0) ) {
              return true;
         } else {
              return false;
    function detectPDF(redirectURL, redirectIfFound) {
         pluginFound = detectPlugin('Adobe','Acrobat');
         // if not found, try to detect with VisualBasic
         if(!pluginFound && detectableWithVB) {
              pluginFound = detectActiveXControl('PDF.PdfCtrl.5');
         // check for redirection
         return redirectCheck(pluginFound, redirectURL, redirectIfFound);
    function detectFlash(redirectURL, redirectIfFound) {
         pluginFound = detectPlugin('Shockwave','Flash');
         // if not found, try to detect with VisualBasic
         if(!pluginFound && detectableWithVB) {
              pluginFound = detectActiveXControl('ShockwaveFlash.ShockwaveFlash.1');
         // check for redirection
         return redirectCheck(pluginFound, redirectURL, redirectIfFound);
    function detectDirector(redirectURL, redirectIfFound) {
         pluginFound = detectPlugin('Shockwave','Director');
         // if not found, try to detect with VisualBasic
         if(!pluginFound && detectableWithVB) {
              pluginFound = detectActiveXControl('SWCtl.SWCtl.1');
         // check for redirection
         return redirectCheck(pluginFound, redirectURL, redirectIfFound);
    function detectQuickTime(redirectURL, redirectIfFound) {
         pluginFound = detectPlugin('QuickTime');
         // if not found, try to detect with VisualBasic
         if(!pluginFound && detectableWithVB) {
              pluginFound = detectQuickTimeActiveXControl();
         return redirectCheck(pluginFound, redirectURL, redirectIfFound);
    function detectReal(redirectURL, redirectIfFound) {
         pluginFound = detectPlugin('RealPlayer');
         // if not found, try to detect with VisualBasic
         if(!pluginFound && detectableWithVB) {
              pluginFound = (detectActiveXControl('rmocx.RealPlayer G2 Control') ||
                                detectActiveXControl('RealPlayer.RealPlayer(tm) ActiveX Control (32-bit)') ||
                                detectActiveXControl('RealVideo.RealVideo(tm) ActiveX Control (32-bit)'));
         return redirectCheck(pluginFound, redirectURL, redirectIfFound);
    function detectWindowsMedia(redirectURL, redirectIfFound) {
         pluginFound = detectPlugin('Windows Media');
         // if not found, try to detect with VisualBasic
         if(!pluginFound && detectableWithVB) {
              pluginFound = detectActiveXControl('MediaPlayer.MediaPlayer.1');
         return redirectCheck(pluginFound, redirectURL, redirectIfFound);
    function detectPlugin() {
         // allow for multiple checks in a single pass
         var daPlugins = detectPlugin.arguments;
         // consider pluginFound to be false until proven true
         var pluginFound = false;
         // if plugins array is there and not fake
         if (navigator.plugins && navigator.plugins.length > 0) {
              var pluginsArrayLength = navigator.plugins.length;
              // for each plugin...
              for (pluginsArrayCounter=0; pluginsArrayCounter < pluginsArrayLength; pluginsArrayCounter++ ) {
                   // loop through all desired names and check each against the current plugin name
                   var numFound = 0;
                   for(namesCounter=0; namesCounter < daPlugins.length; namesCounter++) {
                        // if desired plugin name is found in either plugin name or description
                        if( (navigator.plugins[pluginsArrayCounter].name.indexOf(daPlugins[namesCounter]) >= 0) ||
                             (navigator.plugins[pluginsArrayCounter].description.indexOf(daPlugins[namesCounter]) >= 0) ) {
                             // this name was found
                             numFound++;
                   // now that we have checked all the required names against this one plugin,
                   // if the number we found matches the total number provided then we were successful
                   if(numFound == daPlugins.length) {
                        pluginFound = true;
                        // if we've found the plugin, we can stop looking through at the rest of the plugins
                        break;
         return pluginFound;
    } // detectPlugin
    // Here we write out the VBScript block for MSIE Windows
    if ((navigator.userAgent.indexOf('MSIE') != -1) && (navigator.userAgent.indexOf('Win') != -1)) {
         document.writeln('<script language="VBscript">');
         document.writeln('\'do a one-time test for a version of VBScript that can handle this code');
         document.writeln('detectableWithVB = False');
         document.writeln('If ScriptEngineMajorVersion >= 2 then');
         document.writeln('  detectableWithVB = True');
         document.writeln('End If');
         document.writeln('\'this next function will detect most plugins');
         document.writeln('Function detectActiveXControl(activeXControlName)');
         document.writeln('  on error resume next');
         document.writeln('  detectActiveXControl = False');
         document.writeln('  If detectableWithVB Then');
         document.writeln('     detectActiveXControl = IsObject(CreateObject(activeXControlName))');
         document.writeln('  End If');
         document.writeln('End Function');
         document.writeln('\'and the following function handles QuickTime');
         document.writeln('Function detectQuickTimeActiveXControl()');
         document.writeln('  on error resume next');
         document.writeln('  detectQuickTimeActiveXControl = False');
         document.writeln('  If detectableWithVB Then');
         document.writeln('    detectQuickTimeActiveXControl = False');
         document.writeln('    hasQuickTimeChecker = false');
         document.writeln('    Set hasQuickTimeChecker = CreateObject("QuickTimeCheckObject.QuickTimeCheck.1")');
         document.writeln('    If IsObject(hasQuickTimeChecker) Then');
         document.writeln('      If hasQuickTimeChecker.IsQuickTimeAvailable(0) Then ');
         document.writeln('        detectQuickTimeActiveXControl = True');
         document.writeln('      End If');
         document.writeln('    End If');
         document.writeln('  End If');
         document.writeln('End Function');
         document.writeln('</scr' + 'ipt>');
    Then in my Flex app, I call this:
    hasAcrobat = ExternalInterface.call('detectPDF');
    It works well actually. When I posted the question, I thought it wasn't returning the correct value all the time, but then realized the user had Acrobat installed but it wasn't the browser plug-in it was a stand alone version. I belive this script can only detect the browser plug-in.

  • Acrobat Reader not detected

    Hi
    I have enrolled in the Microsoft IT academy, and was able to complete the work, when one day the check at the beginning no longer detected acrobat reader plugin.  i updated and reinstalled acrobat reader, but it is still not picking up the plugin.  how do i fix this?
    thanks

    Interesting, thank you. Just a mistake, I think, or a very old site. It stopped being called Acrobat Reader almost 10 years ago.
    My advice is to test that Adobe Reader is able to show a PDF in your browser window (NOT in the Adobe Reader window). Here's a link to try: http://www.adobe.com/products/postscript/pdfs/PackingLightBrochure.pdf
    What happens?

  • Possible Adobe Acrobat Reader Problems?

    I recently tried to bring up  up  a website that requires Adobe Acrobat Reader and he site stated it could not detect Acrobat Reader on my computer.  I went to the Adobe website, which listed reader 9.4  for OS X 10.4.11.  Is Adobe Reader similar to  Flash Player where Adobe is not Supporting Mac Power PC and you are not able to load the most recent Reader for your computer?  After loading from the Adobe site, I tried to mount the web page again.  This time I did not get the notification that it did not recognize Reader on my computer.  But it produced a dark screen with an in-progress circle rotating in the middle of the screen.  After 5 minutes the web page still had mounted and I started wondering what the cause might be.  Is there a later version I can load that will support OS X 10.4.11?

    Hi Darrell, you guessed it...
    Is Adobe Reader similar to  Flash Player where Adobe is not Supporting Mac Power PC and you are not able to load the most recent Reader for your computer?
    Nothing for PPC.
    Might see if PDF plug-in helps...
    https://addons.mozilla.org/en-us/firefox/addon/pdf-plugin-for-firefox-on-mac-/re views/

  • Acrobat Reader installed detection via JavaScript

    I am curious whether or not Adobe plans on using AcroPDF.PDF.1 as an indicator of the most current version of Adobe Reader (for activeXObjects in Internet Explorer). I know that this will work for detecting whether Reader 7 is installed but now that I think about it, when Reader 8 comes out, if a user already has Reader 7 installed, obviously AcroPDF.PDF.1 will be defined in their registry so eval("new ActiveXObject('AcroPDF.PDF.1')") will return true. Does anyone know, Adobe specifically, how the next version of Reader will be classified in the ActiveX list (or registry key). Will it be AcroPDF.PDF.2?
    The reason why I am asking is because I need to detect whether or not our clients have the latest version of Acrobat Reader installed for printing documents from our site. I apologize in advance if the following code looks really messy. This is my first post and I just pasted my code directly into the textarea box. Here's what my detection code looks like and works fine for now (but when Reader 8 comes out....hmmmm):
    if(window.ActiveXObject) { // Internet Explorer  var tryReader7 = true;  for (var iVer = 20; iVer >= 0; iVer--) {   try {    if(tryReader7) {     /*********************************************      Check to see if Reader 7 is installed first.     TRUE: Break out of loop     FALSE: Set flag to false so that this check       isn't executed each pass through       by the loop     *********************************************/     tryReader7   = false; // We only want to check ONCE          var Reader7Exists = eval("new ActiveXObject('AcroPDF.PDF.1'); ");     if(Reader7Exists) {      // User met Adobe Reader Version Requirements      oReader.installed = "True";      oReader.version  = max_ReaderVerReq +".0";      oReader.message  = aMessageStatus[4]; //"Adobe® Reader® installed"      oReader.needsUpdate = 0;      break;      }    }        var ReaderExists  = eval("new ActiveXObject('PDF.PdfCtrl." +iVer+ "'); ");    if(ReaderExists) {     // User met Adobe Reader Existence Requirements     oReader.installed = "True";     oReader.version  = iVer + ".0";     oReader.message  = aMessageStatus[4]; //"Adobe® Reader® installed"     break;     }   } catch(e) { // (minimum|maximum) version not detected    oReader.message  = aMessageStatus[7]; //"You do not have the latest Adobe® Reader® installed or enabled.   }   }

    I am trying with Reader 9.
    I am not trying to print from the server. The printing will happen on the client computers that is why I am trying to print using javascript from an html page. My clients do have different versions of Reader from 6 to latest
    Is there any way to achieve it with out installing anything else on the computers?
    Thanks,

  • 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.

  • SignatureValidate() method not working in acrobat reader 5

    Hi All,
    Will the method signatureValidate() work in acrobat reader 5. the same pdf validation which is working in acrobat reader versions >= 7 and not working in version 5. Kindly let me know if there are any alternative methods available to detect the digital signature field changes in lower versions. Urgent help required on this.
    thanks in advance.

    Did you ever figure this out? I am also having problems with the "No Hand" javascript which turns off the (not very helpful) page-forward hand icon (a hand symbol with a down arrow) which confuses our users when in fullscreen mode. We create interactive PDFs and everything worked fine up to Acrobat X/Reader X. Now in XI it doesn't allow the internal link icon (pointing finger) nor weblink icon (pointing finger with W) to appear. It just remains a plain o’ hand icon no matter what you mouse over even though there are links present.

  • How do I activate Acrobat Reader at start up?

    How do I activate Acrobat Reader at start up?

    shauniemac,
    Gulliver & Allan are absolutely correct.
    The Startup Chime is part of the power on self test, and resides in the ROM.
    If a fault is detected during the test, you will not hear a normal startup chime.
    It is not an audio file that can be changed to another sound.
    The Startup Chime is also needed to run certain troubleshooting procedures, such as resetting the PRAM.
    Here ae two more utilities that will allow you to manipulate the volume.
    Psst & Startup Chime Stopper.
    You can also depress the Mute key went starting up.
    ali b

  • Annotations on Acrobat Reader iPad

    On my iPad 2, in some PDF documents, I cannot start annotations at the exact location of my preference; for example, annotations start at the end of the line and this cannot be changed.
    Normally, for most PDF documents, the start and end of an annotation can be moved by the user.
    Here is what I suspect is happening: the starting and ending point of an Acrobat Reader annotation may be moved word by word. This means that the Reader code detects where words break. In some documents (PDF books mostly, I would be happy to provide an example of such a document should it be asked of me) word breaks are not detected correctly.
    It would be great if you could address this issue in a future update.
    Thank you very kindly for your time and kudos on your otherwise EXCELLENT *FREE* Acrobat Reader for the iPad!
    John A. Paravantis
    University of Piraeus
    Greece

    Darf ich vorschlagen, dass Sie entweder einen Übersetzer wie Google verwenden, oder posten Sie Ihre Fragen im Forum in Deutsch: http://forums.adobe.com/community/international_forums/deutsche

  • Windows 7 check registry for acrobat reader install

    How can I check registry to detect if Acrobat reader (any version) is installed. I need to check this for Windows 7 and Windows Server 2008.
    For Windows XP I was able to do this by searching for key: HKLM\SOFTWARE\Adobe\Acrobat Reader\10.0\Installer OR HKLM\SOFTWARE\Adobe\Acrobat Reader\9.0\Installer
    and looking for the value of Path key.
    Please let me know. thanks

    SInce this is the Acrobat forum and not the Reader forum, I have no idea. You might try the Reader forum for the Adobe Reader product. There has not been an Acrobat Reader since version 5, and then it was also a different product.

  • Acrobat Reader update/download fail

    I have Acrobat Reader 2.0.0.0. When I attempt to open it, I am required to download updates. The final update is upgrading to version 2.3.0.0. The problem is when I attempt to do the download/update, an error is detected and the download fails. What should I do?

    You mean Acrobat.com?  This is an outdated software which has been replaced with online services at https://www.acrobat.com/

  • "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)

    We are getting the following error "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)" and a gray screen appears (Image not viewable) with multiple users. We are using Adobe Reader XI (11.0.05) and (11.0.06). The current workaround is to log off the website and log back in. Once the user logs back in, the pdf will appear. However it occurs anywhere from 2-8 times in a day. Anyone else having this issue or know of another workaround? Any suggestion with how to fix? Please help!!

    Hi Valerie,
    Please let me know the version of Adobe Acrobat/Reader & operating system installed on your computer?
    Also, try this:-
    Launch Adobe Reader/Acrobat.
    From the menu, choose Edit -> preferences -> General
    Uncheck the option for "Enable Protected Mode at startup"
    Restart the Adobe Reader and web browser.
    Regards,
    Aadesh

  • I have installed adobe flash player. I can not open the file. In plugins under tools it is not showing. It shows acrobat reader being there but not flash player. Any ideas?

    Flasher Player should be listed as a plugin in tools for it to work?

    '''Other items that need your attention'''
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post. You can also see your plugins from the Firefox menu, Tools > Add-ons > Plugins.
    *Adobe Shockwave for Director Netscape plug-in, version 11.0
    **Several security issues have been fixed since the version you are using
    *Adobe PDF Plug-In For Firefox and Netscape 8.2.2
    **'''Very old version'''; you seem to have missed the entire version 9 series
    **New Adobe Reader X (version 10) with Protected Mode just released 2010-11-19
    **See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    *Next Generation Java Plug-in 1.6.0_19 for Mozilla browsers
    **4 versions behind; several security issues have been fixed
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file, SAVE it to your hard drive, when complete, close Firefox, click on the installer you just downloaded and let it install.
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    #*Also see "Manual Update" in this article: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • Chrome - Adobe-Acrobat/Reader can not be used to view PDF files in a web browser.

    I can't view PDF files via Chrome (it works on Internet Explorer but I prefer Chrome)  -  the error below has arisen recently on Chrome, though I can't see what has changed.
    "Acrobat plug-in
    The Adobe-Acrobat/Reader that is running can not be used to view PDF files in a web browser. Please exit  Adobe Acrobat/Reader and exit your Web Browser and try again."
    I have looked through Forum articles on similar errors and have tried the following(text copied from other Forum entries)
    Repair Adobe Acrobat (from Acrobat)
    Repair Adobe Acrobat (from Control Panel
    Configure Acrobat  as a helper application: Choose Edit > Preferences., Select Internet on the left., Deselect Display PDF In Browser Using [Acrobat application], and then click OK.Quit Acrobat or Reader
    Create a registry item for Acrobat: with Regedit: If the registry item doesn't exist on the system, do the following: Go to Edit > New > Key and create the missing HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe.Go to Edit > New > String Value and name this key (Default).Select (Default), and then go to Edit > Modify. Type the Adobe Acrobat path in the "Value data" for your product.,restart your computer
    Repair the HKCR\AcroExch.Document registry key: Navigate to HKEY_CLASSES_ROOT\AcroExch.Document., Right-click AcroExch.Document and select Delete; make sure that you have the correct key, and click Yes on any prompts, Right-click AcroExch.Document.7 and select Delete; make sure that you have the correct key, and click Yes on any prompts. Repair your Acrobat  installation
    None has solved the problem. However it still works ok with IE. But I want to stick with Chrome because I find IE is so slow!
    I am using Vista, with Adobe Acrobat standard 9.5.2 and Google Chrome version 23.0.1271.64 m which is marked on Chrome as 'up to date'
    Does anyone know why I might be getting this error on Chrome but not IE?

    I think I have discovered the answer to my own question!
    I have disabled Adobe Reader plug-in, and can now see PDFs in Chrome.
    (Steps: Chrome Menu, Settings option, Click Advanced Settings link, then Content Settings button, then select Disable Individual Plug-Ins, and a list of plug-ins is offered to enable or disable).
    I then get a different result depending on whether or not Chrome PDF viewer is enabled - with it enabled I see the PDF document in Chrome, or with it disabled then the option is offered to download it, but either way I can get it it via Chrome without having to run Internet explorer in another browser window.

  • Adobe Acrobat/Reader can not be used to view PDF's in Web browser.

    Does any one came accross the following message trying to view PDF's in web browser? "Adobe Acrobat/Reader that is running can not be used to view PDF documents in Web browser. Please exit the Acrobat?Reader application and try again". Thanks for your help! Barbara

    http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html

Maybe you are looking for

  • Some of my live bookmarks no longer reload, not manually or automatically. I've tried safe mode and resetting Firefox and still have the problem. Fixable?

    I have subscribed to 19 blogs as live bookmarks. A couple of months ago, one of the blogs started not refreshing the list of posts. Now a second blog no longer refreshes. I have tried the "Reload Live Bookmark" option (both from the live book mark dr

  • 1099 report

    HI Gurus, pleae advise I ran the 1099 report..S_P00_07000134. I gave me the withholding tax for 2007 invoices-payments. It doesnt give me the invoices posted in 2007 but paid in 2008, Please advise as where to get this information Thanks in advance M

  • Missing ActiveX DLLs

    Good morning. After deploying Adobe Reader 11.0.08 within my environment, I have received multiple reports of users being unable to launch PDFs in the browser.  Upon further research, the following files are missing on the reported computers. Locatio

  • All JCO's Disabled

    Dear All, Till yesterday we were having around 100 concurrent portal users and portal was running fine, as sson as the user base went to 300 the portal started giving 500 internal server error. Our basis persons optimised the R/3 and set max users to

  • Processing form in its file; go to next file.

    Basic issue: I enter data in a form, submit the form, (use Action=""), then Insert a record using the data entered. I can do the adding the record with a stored proc. Then I want to move back to another prior form and display a message "Record Added"