Adobe Acrobat 8 unable to load plug in Window Vista

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

  1. #1

    Default Adobe Acrobat 8 unable to load plug in Window Vista

    I have developed a plug in for Adobe Acrobat, but Abode Acrobat unable to load the plug in. I try to troubleshoot the problem by putting a messagebox in the PIHandshake function.
    Noticed that, the function is not being called by Adobe Acrobat when Acrobat app is launched.

    When Adobe Acrobat is launching, I able to see the my plug in's name is display on the splash screen.

    Below is the environment info:
    a. Adobe Acrobat 8 Standard Version 8.1.3
    b. Window Vista Business

    I try to put a messagebox in function ACCB1 ASBool ACCB2 PIHandshake(Uns32 handshakeVersion, void *handshakeData), the Adobe Acrobat application didn't call this function.

    ///////////////////////////////////////////////////////////////////////////ACCB1 ASBool ACCB2 PIHandshake(Uns32 handshakeVersion, void *handshakeData)
    {
    AVAlertNote(" PIHandshake");
    ..
    ..
    ..
    }

    I have reinstalled Adobe Acrobat software, but the problem still happend. Is there anyone can guide me what is wrong, what possible things that may cause the application unable to load the plug in
    and what steps should i need to do next?
    Jessie_Shoo_Ai_Ling@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Adobe Acrobat 8.1.1 unable to load plug-in in Window Vista 64 bit
      Hi, Abode Acrobat is not loading the plug-ins which are build using 64bit compiler. Even I tried this with sample plugin (eg. BasicPlugin) but...
    2. Adobe Acrobat 8.1.0 unable to load plug-in in Window Vista 64 bit
      Hi, Abode Acrobat is not loading the plug-ins which are build using 64bit compiler. Even I tried this with sample plugin (eg. BasicPlugin) but...
    3. insert a frame or window into adobe acrobat or reader window
      Using Windows OS XP or Vista. Can you ad a frame or window into the main window to allow saving a document through another application? I have an...
    4. Plug-in compilation for Adobe Acrobat 6 for Mac
      I am having real troubles to get better understanding of the way I could use to compile let's say any plug-in sample from Adobe Acrobat SDK 6 for...
    5. ----------> I need Adobe Paper Capture 4.0 plug-in for Acrobat 4.0
      I need Adobe Paper Capture 4.0 plug-in for Acrobat 4.0. The Adobe website only has Paper Capture 5.0 since 4.0 is no longer supported. Does anyone...
  3. #2

    Default Re: Adobe Acrobat 8 unable to load plug-in in Window Vista

    run depends.exe on your .api and you will probably find that you are missing a dll
    Alan_Berze@adobeforums.com Guest

  4. #3

    Default Re: Adobe Acrobat 8 unable to load plug-in in Window Vista

    Disable the entry 'Use only certified plug-ins' in the preferences of Acrobat.

    Can use one of the sample plug-ins?
    Bernd Alheit Guest

  5. #4

    Default Re: Adobe Acrobat 8 unable to load plug-in in Window Vista

    Your guidance did help me a lot in troubleshooting the problem. Thanks all of you.

    Findings:
    I use a sample plug-in, the acrobat is able to load it out. Then, I use depend.exe to compare the sample plug-in with my plug-in, I noticed that my plug-in does not have PlugInMain entry point function.
    The reason is I compile my plug-in as release version and did not put a command line /EXPORT:PlugInMain under [AppProject]->Properties->Linker->Command line.

    The second reason is my plugin - the one with the problem has been cached in VirtualStore directory, and i didn't realize it. Therefore, everytime i run acrobat app, it always load the old api (no PlugInMain) from the VirturalStore directory. After delete the old file. Then, Acrobat is able to load my new api from c:\Program Files\Adobe\Acrobat 8.0\Acrobat\plug_ins.

    VirtualStore Directory:
    C:\Users\[User Name]\AppData\Local\VirtualStore\Program Files\Adobe\Acrobat 8.0\Acrobat\plug_ins
    Jessie_Shoo_Ai_Ling@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may 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