Developing a plugin for 64 bit CS4

Hi,
I am trying to develop plugin for 64 bit version of Adobe Illustrator CS4. Is ther any separate SDK for 64 bit. ??
If not , will existing SDK work for 64 bit as well ??
If i already have a plugin code ready for 32 version, what things i will be required to do to migrate my code to 64 bit .
Thanks in advance.

Adobe Illustrator CS5 is a 32-bit application. These processors are listed in the requirements since it can be run on a 64-bit machine. i.e. you will be running 32-bit application on a 64-bit OS.

Similar Messages

  • Develop a plugin for Jdeveloper

    Hi everybody, anyone knows if there is a way to develop a plugin for jdeveloper?
    Thanks.

    Sure there is.
    There is an Extension API that you can use.
    Go to "check for updates" and download the ESDK extension - you'll get documentation and a bunch of samples.
    More information is here:
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/index.html

  • 3rd Party Plugins for Flash CS4

    Are there any resources to find 3rd party plugins for Flash CS4?  I've used plugins in older versions of Flash, but I'm new to CS4.  I'm wanting to a lot of cool things with a site including photo carousels, image transitions, visual effects, etc., but I'm not sure where to get started.  Perhaps I shouldn't even be looking at plugins?   Maybe I am really looking for tutorials on how to make cool effects in Flash?

    Mari-Anne Ennor wrote:
    Is there a list of 3rd party plugins which will work in Photoshop CS4 Extended?  I am thinking - in particular - of Blade Pro, Filter Factory, KPT 3 & 5, Sinedot and Super Blade Pro.
    Haven't seen one. Anyway lists get out of date. 
    I guess the best way to get the latest information is to visit each manufacturer's web site.

  • How to develop a plugin for 64-bit windows 2008 server?

    I have developed a plugin to open local application from web pages, but the plugin could only run on 32-bit windows and 32-bit and 64-bit windows 7, it couldn't work on 64-bit windows 2008 server. The plugin was compiled by vs2008 studio on 32-bit windows xp. Any instructions or advices, men of genius? Thanks

    Hi Gnittala,
    Thanks for your reply.
    I debug the javascript code in firebug on windows 8 and found that firefox would be not responding while executing "document.body.append(myPlugin)".
    My javascript code is below:
    function openLocalApp(cmdPath, cmdLine) {
    var npMyPlugin = navigator.mimeTypes["application/mozilla-npruntime-scriptable-plugin"];
    if (npMyPlugin) {
    var myPlugin = document.createElement("embed");
    myPlugin.style.visibility = "hidden";
    myPlugin.type = "application/mozilla-npruntime-scriptable-plugin";
    myPlugin.width = 0;
    myPlugin.height = 0;
    document.body.appendChild(myPlugin);
    myPlugin.foo(cmdPath, cmdLine);
    } else {
    alert("Failed to create the plugin!");
    And firefox plugin's source code copys from the following link:
    http://mxr.mozilla.org/seamonkey/source/modules/plugin/samples/npruntime/
    Just changed a little.
    I know the sample is very old, but newer proper sample couldn't be found. So if you can give me a newer sample, I'll appreciate.
    Thanks again.

  • Plugins for photoshop cs4 64bit

    Do you know if there is any plugins for the above version of photoshop? Thanks!

    There are plenty.
    Did you have something in mind?
    A lot of plug-in suppliers had to play catch up when 64-bit CS4 came out but I think most of the popular ones are now available in compatible form.

  • Outside plugins for photoshop (cs4)

    I'm using Photoshop cs4, and dl'ed a lot of plug ins for it. However, the regular photoshop extensions are uppercase 8BF, and the ones I dl'ed are all lowercase 8bf. I tried to rename the file and change it, but it didn't work.
    Is there a way to get PS to recognize it, or will I have to get all new plugins?? I'm looking for some new and different effects to create graphics to use on paper and web... (preferrably free)

    There are plenty.
    Did you have something in mind?
    A lot of plug-in suppliers had to play catch up when 64-bit CS4 came out but I think most of the popular ones are now available in compatible form.

  • Developing a plugin for Adobe Reader 9.0

    Hi All,
    I want to develop a plugin in Adobe Reader 9.0. I have setup Visual Studio 2005 and the plugin wizard.
    I am using the samples from acrobat SDK 9.0, I am able to build the samples and *.api is created. I have put that file in the plugins directory but I am not able to use the plugins in adobe reader as well not getting any error.
    Do I have to get key from adobe for plugin testing on my local PC?
    Regards,
    Sawan

    You can refer this: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/w whelp.htm?context=Acrobat9_HTMLHelp&file=Plugins_ReaderPlug.52.5.html

  • Developing SCM Plugin for JDev9i... Deadlock

    Hi!
    I'm currentlly developing a SCM plugin for JDev9i with the option to use MS Visual Source Safe. I've experienced problems with hanging for a while. I'm using the oracle.ide.scm packages bundled with JDev, and I think I've found where the hangup is caused.
    There's a class called oracle.ide.scm.util.SCMProcess which is a process wrapper around another class called oracle.ide.scm.util.SCMShellRunner. The process will recieve output text from standard out and standard error. These outputs must be caught and displayed as they are given to the system. If they are not displayed, JDev will go into deadlock it seams.
    These classes have their equals respectivelly in java.lang.Process and java.lang.Runtime. I've used these classes to run a command from disk and they work if you properlly handle the output. The problem with this way of doing things is that these classes does not report back to the scm systems and can cause unexpected results from the other interfaces and classes in the oracle.ide.scm...
    Does anybody have any experience in coding plugins of this kind? Have you experienced the same problem and have you found a way around it?
    This does not work as it should:
    SCMShellRunner rt = SCMShellRunner.getInstance();
    SCMProcess p = rt.run(cmd, envArr);
    while(!p.isFinished()) {
    System.err.println(p.getErrorText());
    System.out.println(p.getOutputText());

    Hi.
    The SCMShellRunner and SCMProcess classes are utilities which you
    may find useful in implementing your SCM support; you can still
    use java.lang.Runtime and java.lang.Process if you prefer.
    However, we strongly recommend that you use SCMShellRunner because:
    - On windows systems, the external process is launched in the
    context of a shell.
    - The output and error streams of the external process are
    monitored separate threads to prevent blocking issues because of
    buffer overruns.
    - A native workaround is used to prevent console windows popping
    up every time external processes are launched under Windows.
    Not sure what could be causing the deadlock, but I did notice in
    your code snippet that you are attempting to print output from the
    process before it is finished.
    The 'error text' and 'output text' will become available only
    when the process has successfully terminated, so I guess you're
    seeing an awful lot of "null" in your debug window.
    Also, I would suggest using SCMProcess.waitFor() to block until
    the process has completed; it will not be so greedy with CPU.
    Try something like the following:
    SCMShellRunner rt = SCMShellRunner.getInstance();
    SCMProcess p = rt.run(cmd, envArr);
    p.waitFor();
    if (p.getExitCode().intValue() != 0)
    // throw SCM exception.
    System.err.println(p.getErrorText()); // should be non-null
    System.out.println(p.getOutputText()); // should be non-null
    Thanks,
    Paul. JDev SCM

  • Shared Content InDesign Plugin for InDesign CS4 won't open file

    Yesterday I discontinued using Adobe CC and went back to using my Adobe InDesign CS4.  CS4 is working OK but there is ONE file that won't open.  I get the message "Shared Content InDesign Plugin is currently not available on your system".  The file will not open. Is there a workaround or how do I get the required plugin?

    You get that error when the file was saved in CS5 or later. You can find out the version using the script at Adobe Forums: [Ann] Identify Your InDesign File.
    You'll need to export the file to .idml from the newer version to be able to open it in CS4. This is something I normally offer to do, but I'm not available for at least a week, so perhaps one of our other regulars can step up and volunteer.

  • Is Panasonic developing a plugin for FCP X that allows you to import Panasonic HDC-TM700 1080/60p footage straight into it without transcoding?

    I've been hearing from a few people on these Support Communities that Panasonic is apparently said to be have been developing some kind of plugin that will let FCP X users import 1080/60p footage from the TM700 straight into the editor, without need for use of third-party software such as Popcorn to transcode the footage into .MOV files. They were also apparently going to release this plugin this summer. Anyone know of some kind of link to some more information about it, or some confirmation that it actually is happening? I really would like to know, as I'm big into the 60p setting on the TM700, and my current workflow has me waiting about 3 or 4 hours each time I go to import any footage. Please let me know!

    Hey guys!
    I just downloaded Clipwrap to import my 60p footage into FCPX. I downloaded the demo and realize it will only convert up to a 1min file.
    When I re-wrap and nativate to my re-wrapped file, I can see (and hear) that it preserves my 5.1. When I play it back, the audio stops about half way (odd). When I import it into FCPX, there is no audio at all. Will FCPX not edit AC-3?
    If I keep the LPCM boxed checked on Clipwrap, I get a mono audio file.
    Can someone step out a workflow for me that gets me re-wrapping in Clipwrap, retaining 5.1 and editing in FCPX?
    Thanks for any help!

  • Plugin for Windows CS4 to Migrate Mac CS4 Image Links

    Greetings,
    My company currently has our entire publishing/design department on Mac's running CS4; however, as an IS department we are getting a little tired of the cost of replacing the Mac's and tired of always wondering when the next OS X update is going to force our hand into just buying all the Macs as brand new.  That being said we are interested in migrating them over to PCs, but as we all know, since Macs run Unix based and Windows is, well Windows (lol), The links created inside documents become broken when opened by a PC.  Now I have searched for about a week to try and find a plugin or something that would migrate the links in these files over to Windows (or at least be able to translate them without breaking them) with absolutely no success...Has anyone ever heard of such a feat being accomplished? If so, I will be eternally grateful!!!  Thanks in advance for any information.

    Creative Suite serial numbers have always been platform specific: Windows only or Mac only.
    The only time you get to choose is at the point of sale.
    After that swapping to another operating system requires a platform transfer process but that is only available for the current version (CS6)
    Order product | Platform, language swap
    In short, you're unfortunately stuck with CS4 for Windows.
    Your options now are either to buy CS6 for Mac or join the Cloud. Or run Windows on your Mac via Parallels or Bootcamp or similar and install CS4 for Windows in that environment.
    One of the features of Cloud software is that it can be used interchangeably on Mac and/or Windows at any time without any platform swapping processes or paperwork.

  • Can I do this with a plugin for Reader?

    Hello, I'm totally new to Adobe Reader development and I'm in the need to develop a plugin for Reader that must implement certain functionality. Before starting, I think it's better to ask to the experts if what I want to do is possible or if what I need goes beyond what the Adobe API provides. So, if you're so kind, I'd like you to check the list of needed features and please tell me if they can be fulfilled with a Reader Plugin.
    The plugin must work for Adobe Reader 7,8,9 and 10. It's not a problem if I need to develop a plugin for each version.
    When the user tries to print a document, I will block/cancel the printing process depending on which document is tried to be printed (the full path to the document will be needed).
    I need traceability in "Save as" and "Save as text" features, if the user saves a copy of "c:\file.pdf" into "c:\file - copy.pdf" I need to know both the source and the destiny of the save as operation. Same for any kind of "export to format x" operations if possible.
    I need to be able to communicate with another module via named pipe to periodically send information. This might require dinamically loading a DLL and calling its methods.
    [Optional] I need to restrict the use of the clipboard depending on the documents opened in Reader, i.e. don't allow to copy if a certain document is opened.
    [Optional] If a document is exported via file printer (like Microsoft xps printer), I need traceability on this operation. I'm really pesimistic about this one.
    Also, I'm assuming that retrieving the list of opened documents, or the "active" document will be possible at any time. Please, correct me if wrong.
    Thank you very much for your time, for reading and helping. Im' not asking you to tell me how to implement every single feature, I just need to know if I will be able to implement them when I get some knowledge.
    Have a great day. Greets.
    Message was edited by: fernandoarrabal reason: bad phrasing

    Two things.
    First – Adobe no longer supports Reader 7 or 8, so you would be on your own for those.
    Second, in order to develop a plugin for Reader you need to obtain a license from Adobe.  Details and forms are in the Acrobat SDK.   Start this process ASAP as that will tell you whether you will be able to do your plugin or not.

  • Developing CS5 plugin on CS6

    I need to develop a plugin for Photoshop CS5 for a Mac. Can this be done on Photoshop CS6 on a Mac?
    This is called Forward Compatibility, and I couldn't find information about this in the SDK documentation.
    Thank you in advance.

    I think those plugins build with the CS6 sdk should run under CS5 without much problems.

  • Plugin for IndesignCS4

    Hai Friends...
                             How to create one plugin for Indesign CS4.
                             I need to control "Save" and "Exit" option inside the Indesign application...
    Thanks in Advance,
    Divya.

    http://www.google.com/url?sa=t&source=web&cd=1&ved=0CBUQFjAA&url=http%3A%2F%2Fwww.adobe.co m%2Fdevnet%2Findesign%2Fpdfs%2Fgetting-started.pdf&rct=j&q=getting%20started%20indesign%20 cs4%20plugin&ei=Du9iTLGhBoH_8Aba88GMCQ&usg=AFQjCNGmSW1vAoGcPhfk4FILCXJ-SMT2qA&cad=rja
    I would start reading that, its a getting started document.  You also need to download the SDK.

  • Developing a plugin using XCode 4

    Hi Everyone,
    I was recently inspired to develop a plugin for Illustrator CS6 on my Mac. I've run into a few problems though, because apparently I'm trying to build the plugin in an unsupported environment. I'm using OS X 10.8 (Mountain Lion) and XCode 4.4. Now, I realize that Mountain Lion isn't public yet (I'm an Apple developer so I have access to the prerelease stuff), but regardless, I think that the problem is that I don't have the correct SDK for the development. XCode 4.4 only has 10.7 and 10.8 SDKs with it, and I looked for a XCode 3.2.5 download, but it stopped being supported on Lion. If I have to, I can fetch a copy of 10.5 or 10.6 and develop using it, but I would really like to just use my main machine to do the development. Does anyone have any thoughts on this?
    Thanks

    Think you can copy SDKs to Developer directory and set default compiller to gcc 4.0 in project settings, for all AI SDK samples.

Maybe you are looking for