Copy link to clipboard
Copied
I've downloaded the latest Adobe Photoshop CC SDK hoping I'll learn something about the PlugPlug API plug-in technique (c++ along with its Flash interface) but what a surprise! - the same old documentation included in the latest CC SDK package
So I wonder whether someone could share a document (if there is one) which describes this technique or a simple 'do nothing' source code which uses the PlugPlug.dll.
I would appreciate any info you can provide.
Thanks,
Copy link to clipboard
Copied
Look at ReadMe.html or adobe_photoshop_sdk_cc_win\pluginsdk\documentation\html\index.html from the unZipped file.
Thanks,
RONC
Copy link to clipboard
Copied
RONC,
The PlugPlug library exposes some functions to C++ plug-ins, such as:
- PlugPlugLoadExtension()
- PlugPlugUnloadExtension()
- PlugPlugDispatchEvent()
- PlugPlugAddEventListener()
- PlugPlugRemoveEventListener()
- …
Did you find any info (reading ReadMe.html) on how it should be implemented in your code? Does it work the same way as in Adobe Illustrator?
Thanks,
Copy link to clipboard
Copied
I really haven't had time to get deeply into the SDK. Might have time on the weekend. I've never coded for Illustrator.
RONC
Copy link to clipboard
Copied
Ok. Thanks.
I’ve found this:http://forums.adobe.com/message/3697987#3697987 - seems that someone else has tried to play with the Photoshop PlugPlug API and… didn’t success…