How do I invoke a Adobe Plugin from another Client application

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

  1. #1

    Default How do I invoke a Adobe Plugin from another Client application

    Hi,
    I have written a plug in for Adobe.
    I need to know how do i invoke this plug in from an external application
    For
    e.g a VB.NET Form has a button which on clicked would invoke this plug in

    Thanks for your suggestions in advance
    swapneel_kulkarni@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Adobe Plugin
      Hi, We have an adobe plugin(imports csv data to pdf form) developed in version 6 and 7 but in version 8 it's not working so,migrated to Adobe 8 by...
    2. Invoke another Component from Application.cfc
      I am adding a session tracker to my application.cfc file. I have gotten to a point where I notice a couple of blocks of code that repeat and could...
    3. Adobe 5, Plugin error when trying to download
      Have Windows 98, when trying to download keep getting plugin error, any suggestions would be greatly appreciated. Thank You
    4. Invoke a method in Java webservice thro' soap call from Asp.net client.
      Hi, I am trying to access a java webservice. I know the method's signature. I used 'SoapHttpClientProtocol.Invoke' method. This method is builds...
    5. ADOBE RAW Plugin doesn't work with EOS 10D
      I just bought the ADOBE RAW file plugin to work with Photoshop Elements 2.0. My camera is a Canon EOS 10D. I can't get the plugin to open the...
  3. #2

    Default Re: How do I invoke a Adobe Plugin from another Client application

    Pick your favorite form of IAC/IPC and implement it. COM, DDE, Named Pipes, Shared memory, shared file, etc. It's up to you.
    Leonard_Rosenthol@adobeforums.com Guest

  4. #3

    Default Re: How do I invoke a Adobe Plugin from another Client application

    The plug-in that i have written creates a menuitem in Adobe

    I want to know how do i call menuitemexecute for the custom menuitem that i have written

    Thanks
    swapneel_kulkarni@adobeforums.com Guest

  5. #4

    Default Re: How do I invoke a Adobe Plugin from another Client application

    I've already answered your question in the most complete way possible.

    What did you not understand about my answer?
    Leonard_Rosenthol@adobeforums.com Guest

  6. #5

    Default Re: How do I invoke a Adobe Plugin from another Client application

    Leonard
    I would like to know how to do it
    I know that you can use IAC to call a plug-in
    I need to know the function call that i need to make in order make it happen

    MenuItemExecute doesnt seem to work for me.. or maybe i am doing something wrong there

    I can call menuitemexecute("SaveAs") but menuItemExecute("MyMenuItem")
    doesnt work

    Please advise
    swapneel_kulkarni@adobeforums.com Guest

  7. #6

    Default Re: How do I invoke a Adobe Plugin from another Client application

    Your menu item is NOT "MyMenuItem", it's more likely something like "ABCD:MyMenuItem". Look at your code in the plugin when you registered it...
    Leonard_Rosenthol@adobeforums.com Guest

  8. #7

    Default Re: How do I invoke a Adobe Plugin from another Client application

    Leonard
    Thanks a lot
    It worked..
    swapneel_kulkarni@adobeforums.com Guest

  9. #8

    Default Re: How do I invoke a Adobe Plugin from another Client application

    Hi Swapneel - Can you please post the sample code which you used to invoke plugin method from outside Acrobat? It will really help me.

    Thanks,
    AT
    athirukk is offline Junior Member
    Join Date
    Dec 2010
    Location
    Dayton
    Posts
    2

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