Javascript Detection of Adobe reader plugin for Adobe version 9.0

Hi,
I'm working on a javascript utility that finds out the version of the adobe reader plugin that is installed in firefox and IE.
The firefox code works fine but I can't detect Adobe version 9.0 for IE using the following code.
     var LATEST_ADOBE_ACROBAT_VERSION = 9;
     //Look for versions >= 7
      for (var i = 7; i <= LATEST_ADOBE_ACROBAT_VERSION; i++){
         pluginFound = detectActiveXControl('AcroPDF.PDF.' + i);
         if (pluginFound) {
            acrobatVersion = 7;
            Document.write("Adobe Version : " + String(acrobatVersion));
            return acrobatVersion;
The detectActiveXControl('AcroPDF.PDF.9'); function call results in an object does not exist exception at runtime despite the fact that I have adobe reader 9 installed on my machine. So I assume that the name of the object has been changed for Adobe 9.
Ihave been googling for most of the afternoon to try and find the correct object but no luck so far. If anybody knows the name of the object for adobe reader 9 and wants to let me know it would be greatly appreciated.

Hello everyone !
I have a similar problem... I am currently using both, Safari(5.1) and Firefox(10.0), please don't judge me Runnin on OSX Lion 10.7.2
I recently installed a plug-in for PDF files on Firefox called Schubert|it PDF Browser Plugin (recommended by mozilla.support.org) since I was unable to open PDF files without downloading them, then open them with Preview.
I was really satisfied, works great, although i had to make some adjustments to get it started !
Unfortunately, when I switch back to Safari, the plug kicks in. Now, as I remember, Safari has a "built-in" Adobe Reader plug in and it work just fine.
My Question is: Is it possible to affetct the Schubert it PDF Browser Plugin for Firefox and keep Adobe for Safari ? Otherwise, I would almost prefere to have AdobeReader for both of them, since i have good experience with it.
Thank you in advance
YA92

Similar Messages

  • Need MSI Download of Adobe Flash Plugin for Adobe Reader

    From this link:
    http://helpx.adobe.com/acrobat/using/flash-player-needed-acrobat-reader.html
    I found EXE Download of Adobe Flash Plugin for Adobe Reader/Acrobat:
    install_flash_player.exe
    I requested our Admin to deploy the above file via SMS but he told me it will be better if I can find an MSI Download insteade of EXE.
    Where I can get MSI Download of this EXE File?
    Tarek.

    Pat Willener wrote:
    Sorry, I misunderstood - yes, this will install the Flash Player plugin for non-IE browsers.  But so will install_flash_player.exe from your first post.
    According to the link you posted, it seems to be required to install the Flash Player plugin to view Flash content in PDF files.
    On the other hand I do not quite understand why there is a NPSWF32.dll file in C:\Program Files\Adobe\Reader 11.0\Reader ...
    Thanks again Pat, but apologies, as I am not quite sure I understand what you mean...
    This link you posted:
    http://www.adobe.com/products/flashplayer/distribution3.html
    ... will result of this distribution deployment allow the end-users to play Flash in PDF under Adobe Acorbat/Reader?
    Tarek.

  • Adobe Reader plugin for Firefox 3

    Has anyone else been having problems reading some pdfs using the Adobe Reader plugin for Firefox 3?
    For several months this often (but not always) happens:
    I follow a link to a .pdf, a new window opens with a blue progress bar in the middle.
    It gets to 100%, but then nothing happens, it just sits there with the progress bar full and "Done" in the status bar.
    Interestingly,  I also have the "IE Tab" extension installed and if I click on the icon  to change the browser engine, the page reloads (with a slightly  different progress bar that includes a counter for the file size) and  the document is always displayed correctly when the download is  completed.
    the Adobe Acrobat plug-in is v10.1.0.534.

    http://releases.mozilla.org/pub/mozilla.org/firefox/releases/
    You'll find previous versions there as well as the latest builds, but I honestly don't see why you'd not like 4.0. After all, this is Firefox we're talking about not IE, which seems to only get worse with each new release.

  • Reader plugin for Chrome versions 42+ no longer work

    As of 04/15/2015, Google has deprecated the NPAPI which the Adobe Reader plugin apparently uses (see NPAPI deprecation: developer guide - The Chromium Projects)   This means the Adobe Reader plugin for Chrome no longer works.
    Does Adobe have any plans to provide a new plugin or extension for Chrome?
    If not, what is an alternative that can handle .xdp forms?  I've tried PDF Viewer (PDF.js), Notable PDF, and Xodo but none of them handle .xdp files.

    All:  I use the Adobe Reader plugin a lot for work. I have found a workaround to the new Chrome version 42 update that has removed the NPAPI plugins, including Adobe Reader.
    In the Chrome browser URL, type "chrome://flags". Find the flag called "Enable NPAPI Mac, Windows" and click "Enable".
    Then, go back to your plugins in Chrome, "chrome://plugins". Make sure the Adobe Reader plugin is Enabled and the Chrome PDF Viewer is disabled. Everything should work as it did before.

  • Internet Explorer ONLY passes parameters to Adobe Reader plugin for hosted files, not local

    WORKS:
    <embed src="http://host.com/test.pdf#page=5"/>
    FAILS:
    <embed src="test.pdf#page=5"/>
    Both code snippets above work when the HTML file is hosted (IIS / Apache).  My web-app needs to be able to run from a USB memory stick and work with IE9.  The #page param is required for a core feature of the app.
    Parameters after the # are passed correctly to the Adobe Reader plugin in Firefox for offline files, eg: file:///C:/test.htm.  The documentation only describes hosted examples: http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf
    I have tried the <object> route as well with similar results, eg: http://pdfobject.com/
    I have burned over 8 hours looking for a solution. I have tried any logical settings in Adobe Reader X, and with the security zones in IE.  I am not very familiar with IE security zones, but I suspect it could be related to my issue.  I can specify the end-user change any browser or plugin settings as an acceptable solution.

    I am developing a hybrid web-application that needs to work both offline (entire website) and in a hosted environment.  A key part of the product is displaying PDF's with a dynamic index outside of the PDF. This allows us to use PDF's collected from hundreds of contractors, clients and manufacturers and combine them into one searchable product with a consistent interface.  I can specify product requirements including IE browser settings, installed plug-ins etc. I am not trying to cater to a wide audience such as everyone online, but a specific one that is spending $5k-30k for a custom resource.
    I expect the limiation is due to a wide cast net regarding security.  I tried every setting in IE and essentially fully disabling all security options did not resolve it.
    I found a solution, by accessing the ActiveX object directly you can use the exposed classes described here: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/w whelp.htm?context=Acrobat9_HTMLHelp&file=IAC_API_OLE_Objects.103.167.html
    Javascript:
    var pdfO = document.getElementById('pdfObj');
    pdfO.setCurrentPage(pageNumber);
    HTML:
    <OBJECT id ="pdfObj" data="test.pdf" TYPE="application/pdf">
        <a href="test.pdf">Fall-back code</a>
    </OBJECT>
    This actually works much faster as well, since the plugin doesn't need to be re-drawn in the DOM

  • Adobe Reader Plugins for Safari 5 on Snow Leopard

    Our software uses Adobe Reader to open, edit, and save Pdf Forms.  Most of our customer base is on Windows but we now have some MAC users as well.  Everything works fine except using Safari 5 on Snow Leopard.  It appears as if the plug ins are not loading properly or at all when Reader 9 is installed.  When a user goes to open a PDF Form, nothing happens.
    My personal Macbook which I have at the office, is Leopard with Safari 5 and when I download Reader 9, I can see the plugins in Safari and everthing works fine.  Any suggestions?
    Thanks

    On Snow Leopard 10.6, you need to run Safari in 32 bit mode to get the Adobe Reader Plugin to load and launch properly.
    To do this,
    1) exit Safari. 
    2) in the Finder go to your Applications folder, select Safari and do File->Get Info
    3) Check 'Open in 32-bit mode' in the General pane of that dialog
    4) Relaunch Safari
    5) Under the Safari Help->Installed Plug-ins you should now see the Adobe Reader plugin support.
    I am able to get Safari to open forms inline in Reader this way.  I am not able to get the Adobe Forms with Adobe Javascript running in this mode.  Any insight on how this might be done would be helpful.  It does work in the Standalone Reader, but so far no luck enabling it in the Safari plugin.

  • Adobe Reader plugin for Firefox - Firefox 17/18 w Reader X/XI unable to view PDF

    Our customers are having to use IE, which is not an option at some sites or roll Reader back to 9.4.5 to view our product.  This issue started happening on 1/8/13.
    No issues opening the PDFs
    Originally installed on Win7
    IE 8, FF11, Acrobat 9.4.5 – Windows updates turned off since 12/1/12
    Installed IE 9, no issues
    Installed FF 18.0.1 no issues
    Issues opening the PDFs
    Installed Reader XI, - kept Acrobat 9.4.5 installed - Unable to open catalogs in FF.

    You don't say what it is about your "product" that is different from a regular PDF. I assume from the screenshot you are using LCDRM, but that in and of itself will not stop Reader XI from displaying the content.
    Are your Firefox users actually using the Adobe Reader plugin? The latest build of Firefox has its own PDF renderer (which can't load LCDRM-protected files) - you need to specify that you want Reader to be the preferred plugin by changing the Firefox config.

  • Adobe Reader help for trial version

    Can anyone help me please, granted I am only using the trial version of Adobe Reader but I can never type onto a form recieved in pdf format, also when I scan a document whether it be forms or my pictures it alway's goes to Adobe Reader, I am just a home user, windows 7 64 bit computer and using IE8, if anyone can help I would appreciate it , thanks in advance.

    Emma002,
    I feel your frustration. I have been down this road before with the Adobe Reader X (10.1.1) and my issue was that I cept getting the following when I tried to open a .pdf file: "Invalid plugin detected. Adobe Reader will quit." It is fixable but I had to have a Adobe Support agent help me (and it cost me $29.95). But the same problem is back and I can't seem to find any of the email streams that I had from the support agent.
    Adobe : If you are going to offer a product (Adobe Reader X) for free, so should at least stand behind it.
    I would gladly paid a reasonable fee for Adobe Reader X (10.1.1) if it would continue to operate as advertised.
    And George Johnson and -graffiti stop giving lip service - we are just looking for "The fix".
    gbarbur2011

  • Best Adobe reader plugin for Safari or firefox .

    Hi Folks.
    I am looking for the best plugin available for safari that will give me the functionality of adobe reader when viewing pdf documents using safari.
    Am i doing something wrong but i download pdf's to the desktop, i ctrl+click on them and select 'Open With' i navigate to adobe reader and select 'always open with..'
    Shouldn't that make Adobe Reader the default app for pdf's and not preview?
    Is this functionality carried over to safari, as in what i want to do is when browsing the web with safari, click on a pdf and have it open in reader.
    Any help is appreciated.

    If you have Adobe Reader installed, then open its preferences and select the option to install the Adobe Reader for Safari (under Internet preferences.)
    To have Adobe Reader become the default reader for PDFs simply select any PDF file and press COMMAND-I to open the Get Info window. Set the default application to Adobe Reader then click on the Change All button.

  • Keep getting error message Adobe reader plugin for safari

    I keep getting an error message saying that Adobe REader has detected Missing Components that require repair. etc. Ask to select components I would like to repair but the message freezes solid and I can't even force quit it.
    Anyone else seen this?

    HI,
    Launch Adobe Reader. From the Menu Bar click Help/Repair Adobe Reader Installation.
    If you still have problems, go to ~/Library/Preferences and move the com.adobe.Reader.plist file to the Trash, then try the Help/Repair Adobe Reader Installation again.
    Carolyn

  • FireFox does not know Adobe Reader Plugin is latest version. Why?

    OS is Windows Vista with all updates. Using Adobe Reader X version 10.1.9. Checking for updates from within the Adobe Reader program generates a message from Adobe that the software up to date, no updates available. Firefox advises Adobe Plugin version 10.1.9 is vulnerable and to update the plugin. Attempting to update from within Firefox connects with the Adobe update site. Attempting to update from within the update site brings up a message from Adobe that the latest software is installed. Please advise.

    The plugin checker site is not able to* store multiple versions of the Adobe Acrobat plugin as the current version. So, with apologies to Windows Vista users, you simply have to ignore what the plugin check site says about that particular plugin and rely on Adobe's in-product updater.
    ''*'' It ''could'' be redesigned to do this in the future, but currently it is not able to do this.

  • Questions regarding Adobe Reader Extensions for Adobe Livecycle.

    Hi,
    I'm relatively new to Adobe products, having just started to use Adobe Livecycle over the last couple of weeks. I've produced a set of interactive forms for field engineers to use. When completed, they will submit the xml data via email. However, there will be numerous occasions where they will need to stop in the middle of data collection and come back at a later point to finish, hence the need to locally save the information before submission.
    I understand this is where Adobe reader extensions would come in, unlocking this functionality.
    At the moment, i'm a bit of a loss on several points regarding how reader extensions work and i was wondering if anybody could fill in the gaps:
    1. Are they seperate modules that bolt in into the main Livecycle application?
    2. As these forms will be used off line, i would like to set the permissions to the pdf locally. From what i read, Reader Extensions is a server product. Is this correct, or can i use Reader Extensions to set these permissions before publishing the adobe form?
    3. Where can i get hold of Reader Extensions and how much do they cost? I have been reading information on similar topics on this forum (dating 3-4 years ago) that say reader extensions are comparitavely expensive to a Adobe Pro/Livecycle licence. ($50,000 upwards) Is this correct? If so, is there a cheaper alternative to achieve the same outcome?
    I hope someone can shed some light on these points!
    Thanks in advance.
    Rob

    Reader Extensions can be bought as a module in LiveCycle. There is a subset of RE functionality that exists in Acrobat. The ability to save locally is part of Acrobat. In both cases you woudl RE the form before distributing it, hence when the user gets your form they are ready to go. You can download a trial version of the server product. As far as pricing goes you woudl be better to talk to an Adobe salesrep as there are discounts for certain situations as well as different pricing options. If you decide tp gp the Acrobat route you ar limited, by licence, to distribute your form to a max of 500 users.
    Hope that helps
    Paul

  • JavaScript in Adobe Reader app for Android

    How long to get the Adobe Reader app for Android will support JavaScript code? In addition to the password, I need to put the expiration day on my PDFs to close the backdoor.
    Thanks

    Hi,
    Many thanks for getting back to me.  A reset all fields would certainly
    save a great deal of time on forms that are used over and over!
    Something else that I've noticed is the fact that when you flick through
    the pages of .pdf documents, there are sometimes white blank pages.  You
    need to scroll back and forth to get them all to load and sometimes even
    after they have loaded, when you scroll back and forth again other pages
    are blank.
    I am using the latest Samsung Note Pro tablet with 2 x quad core
    processors so I can't blame outdated technology.
    Do you have any ideas as to how to solve this problem?
    Many thanks again for your help.
    Regards
    Paul

  • Javascript Access to Adobe Reader Plugin

    This is more of a developer question but I thought I would give it a shot because I have yet to find any documentation.
    Does Safari have scripting access to the Adobe Reader plugin?
    The following works in IE because printWithDialog(); function is revealed to IE javascript when a PDF is embeded.
    javascript:
    var thePdf = document.getElementById("printFrame");
    thePdf.printWithDialog();
    embed in the body of the web page:
    <embed height="400" width="370" name="printFrame" id="printFrame" src="theFile.pdf" />
    Can I do something similiar in Safari?
    Thank you,
    -jscott

    Yes it does. It works on the website I support. We do it thru a javascript popwin and it loads in all browsers.

  • Chrome plugin for Adobe Reader Crashes

    Adobe Reader plugin 11.0.06.70 crashes when attempting to open a pdf file using Chrome 32.0.1700.76 m but works in Firefox and Internet Explorer. Windows 7 Service Pack 1 64-bit operating system.  Problem occurred when tried on any of 5 different computers, accessing any of 6 different pdf files from either of 2 different websites.  How can I get it to work in Chrome?
    The following reproduces the problem:  1) Open Chrome with Adobe Reader enabled and the always allowed box checked (Chrome pdf viewer disabled).  2) Enter the following url: https://providentliving.lds.org/bc/providentliving/content/english/self-reliance/health/he alth-fair-topics/pdf/Basic_Physical_Health_ENG.pdf?lang=eng#page=26
    Using this URL in Internet Explorer OR downloading the file and opening it locally in Adobe Reader opens the pdf file to page 26 with an active bookmark navigation panel displayed on the left

    By "set up on your site" what do you mean?
    Are you looking to embed a PDF in a page?
    Are you looking to make  a PDF version of the site?

Maybe you are looking for

  • Check payment entry reset

    How can i reset the check payment entry  I  tried  with  T-code FBRA  but  get the message Payment was posted with withholding tax. Clearing document will be reversed. Do you want to continue? if i click on yes the entry will get reversal I want only

  • Apex, db in archivelog mode

    Hi I'm using apex 3.1 with my back end database in archivemode, my understanding is that apex uses backend database to store 1.its repository 2.new applications which developer creates( pages,images and configuration etc..) I currently have daily bac

  • Edit Business Components - need help

    Hi, I'm working with JHeadstart 10.1.2.0, UIX pages and I need some help from you. This is the situation: my AppModuleApplicationStructure.xml has 4 Groups and 3 levels, but now, I created one more EO and VO in my Model (Application Module), so I cou

  • Selecting random .swf files

    My code loads random movie clips from the same folder of the files "17_1.swf", "17_2.swf" and so on to "17_50.swf". If I have files that don't start with "17_" but I would like to load them anyway without having to change all of these file names, is

  • Start up goes to normal blue screen and hangs

    I shut down my macbook last night and this morning i triewd to turn it on. It went through the normal screen with the apple and progress circle. then it went to blue and then back and forthe from gray to blue. I have force shut down, reset the smu, r