Accessing AcroExch in Acrobat 9

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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: ...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default 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

  8. #7

    Default 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

  9. #8

    Default 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

  10. #9

    Default 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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139