Ask a Question related to Adobe Acrobat SDK, Design and Development.
-
Senecarr@adobeforums.com #1
Accessing AcroExch in Acrobat 9
Is there something special or different to communicate to Acrobat 9 plug-ins through OLE now with the server sider DLL change to Acrobat 9 and IE7?
For example the following code works with Acrobat 8
50 Set oAcroExchApp = GetObject("", "AcroExch.App")
60 Set oGfrPlugin = oAcroExchApp.GetInterface("GfrPdfModify.Plugin")
70 IsDocNeedSaving = oGfrPlugin.DocNeedsSaving(sDocId)
but it is not working with Acrobat 9.
Thanks
Senecarr@adobeforums.com Guest
-
ActiveX component can't create object: 'AcroExch.App'
I am writing a VB script to determine the number of pages witin a pdf file. I use: Set AcroApp = CreateObject("AcroExch.App") .. .. This works... -
AcroExch.AVDoc.FindText()
Hi, there Does anyone have any experience of the FindText() function? I was hoping to use it together with acrApp.MenuItemExecute "NewBookmark" to... -
ActiveX component can’t create object‘AcroExch.App’
I have the same problem. With only Adobe Acrobat 5.0 installed all works fine, then I have installed the Acrobat Reader 8.0 and now with the reader... -
Help with AcroExch.PDBookmark in VBA
I'm using the following subroutine in a Microsoft Access VBA module, which successfully opens a PDF document that is on the local hard drive: ... -
Acrobat Pro 7 on Mac Pro crashes when accessing preferences + more
A couple of problems with Acrobat Pro 7 (tried v7.0.8, then tried downgrading to 7.0). - trying to edit an image embedded within a PDF file will... -
Leonard_Rosenthol@adobeforums.com #2
Re: Accessing AcroExch in Acrobat 9
I don't understand what your code is trying to do...Can you explain where this code is being executed and what it is attempting to accomplish?
Thanks
Leonard_Rosenthol@adobeforums.com Guest
-
Atin Wadehra #3
Re: Accessing AcroExch in Acrobat 9
Senecarr,
Please let us know which line is giving you the problem and what is GfrPdfModify.Plugin. Is it an Adobe plugin or created by you.
Atin Wadehra Guest
-
Senecarr@adobeforums.com #4
Re: Accessing AcroExch in Acrobat 9
This is the VB side of code that is attempting to communicate with an Acrobat Plug-in. The code works fine in Acrobat 8, but with Acrobat 9, line 50 fails to get an object because Acrobat 9 is acting as an in-Process DLL when run inside of IE7 now.
Senecarr@adobeforums.com Guest
-
Leonard_Rosenthol@adobeforums.com #5
Re: Accessing AcroExch in Acrobat 9
You are talking about IE7 and then Acrobat COM programming - these two things don't go together.
either you are talking to the stand-alone Acrobat application via the COM/OLE interfaces _OR_ you're working with the ActiveX control (AcroPDF.dll) that is used in the browser. Trying to "mix and match" the two has NEVER been supported.
Leonard_Rosenthol@adobeforums.com Guest
-
Senecarr@adobeforums.com #6
Re: Accessing AcroExch in Acrobat 9
So is it possible to communicate with an Acrobat plug-in when acrobat is only being used as a dll in IE7?
Senecarr@adobeforums.com Guest
-
Leonard_Rosenthol@adobeforums.com #7
Re: Accessing AcroExch in Acrobat 9
It MAY be possible but it's certainly NOT supported. Never has been. If it worked with Acrobat 8 - it was sheer luck.
Leonard_Rosenthol@adobeforums.com Guest
-
Senecarr@adobeforums.com #8
Re: Accessing AcroExch in Acrobat 9
It worked with Acrobat 8 and 7. Both of them actual create an Acrobat.exe when a file is viewed inside of internet explorer.
So would there be a recommended way to communicate between an Acrobat Plug-in that runs for a file being viewed in browser, and another program?
Senecarr@adobeforums.com Guest
-
Leonard_Rosenthol@adobeforums.com #9
Re: Accessing AcroExch in Acrobat 9
Yes, with Acrobat 9, each browser instance is a new copy of Acrobat.
I am sure that if you can get a handle to the actual instance of Acrobat in the specific browser instance, you can communicate with it.
Leonard_Rosenthol@adobeforums.com Guest




