How to develop a simple plugin for adobe illustrator cs2 using xcode on mac os

I would like to know the steps to develop a simple plug-in for adobe illustrator cs2 using xcode on mac OS...anything like a dialog box displaying "hello World"... I m new to MAC OS...Please help...
Thanks in advance

Get the SDK and start playing with the sample plug-ins. Asking for something as general as "how do I get started" is asking a little much from this forum :) Try your hand at the SDK and come back to ask more specific questions as you run into them.
Bear in mind that this isn't an Xcode forum either, though I'm sure there are places to get good help on that!

Similar Messages

  • Cw 9.5 for creating plugins for adobe indesign cs2 in mac 10.4.8

    i am new to plugin creations.please anyone give me an basic idea of creating plugins for adobe indesign cs2.
    and how to debug the plugin, how to create it using code warrior 9.5, if any one know the site reference please inform me.
    thanks in advance
    subha

    i am new to plugin creations.please anyone give me an basic idea of creating plugins for adobe indesign cs2.
    and how to debug the plugin, how to create it using code warrior 9.5, if any one know the site reference please inform me.
    thanks in advance
    subha

  • How do I get my authorization code for adobe illustrator cs2?

    I have the adobe illustrator cs2 disc with serial number...etc. But I can not seem to get the authorization number, please help me?

    Bella,
    In addition to what Monika said, since the activation servers for CS2 were closed down, your unique serial number and your disks will fail. The only way is to download the non activation versions along with the generic serial number(s). And if you have the Premium, you will have to download Acrobat and GoLive separately as standalone versions.

  • How can i create a plugin for adobe in design CS3

    i'm trying to make a plugin to use it in adobe Indesign CS3 program but i can't
    i'm using Windows 7
    i had tryed to make a plugin using Eclips with indesign plugin editor and Visual studio C++ but i can't as i can;t find where can i write my code and there is also an error while debuging is that :
    <error PRJ0019: A tool returned an error code from "Performing Custom Build Step">
    after working out  this error "by adding the directory of Odfrc.exe in tools->VC++ Directories->executable file" another error raise to me :
    <Unknown compiler version - please run the configure tests and report the results> and the visual studio raise message box to me to specify the name of the executable file to be used for the debug session
    i don;t know wat can i do know all i need to create a plugin for indesign program so could any one help me ??

    Each version of the SDK has very specific demands for the compiler setup, and this in turn relies heavily on the operating system. The CS3 SDK probably was based on a much older version of Visual Studio.
    Compare your toolchain against the requirements that should be stated somewhere in the CS3 documentation. It's a solid bet you are years ahead -- there simply is no reason for Adobe to keep on supporting all OSes and compilers that continue to appear, for a version of InDesign that's by now 2.5 versions old.

  • Can't use my Adobe Illustrator CS2 with my new Mac Book Pro - is there any way to fix?

    I recently purchased a MacBook Pro only to find out AFTER I made the purchase that I would not be able to use my Illustrator CS2! Do I really have to purchase a complete version of CS5 or is there another way around this? Does anyone know if OSX 10.7.2 will work with any upgrades to CS2?

    There is no Rosetta support in Lion, and most likely there never will be. You will have to update to CS5.

  • Serial number for adobe illustrator cs6

    how can  i find serial number for adobe illustrator cs6?

    You buy it to get a serial number. If you are referring to the trial pestering you, then refer to this:
    Adobe trial software expired early
    Mylenium

  • I would like to create a plugin for adobe acrobat pro 9.0...

    I would like to create a plugin for adobe acrobat pro 9.0 in order to compare pages, delete the same pages and mark pages from first compared document with new and mark pages from second compared document with original. I downloaded the SDK for adobe 9.0 but now I am not sure how to continue? Do I need Visual Studio or can I use another program that is a freeware? What other program do you recommend?  How can I open an .api file in order to see the code? Do I need to place the SDK files in a specific place?

    1. You will need Visual Studio. Getting your first plug-in to compile can be an ordeal, be sure to use a sample project and work with it exactly.
    2. API files are the work of other programmers. You cannot look inside, and to try to do so is a breach of most software licenses.
    3. API files are installed to the Acrobat plug-ins folder.
    4. You will not find samples or code to copy/paste. You should be an experienced C/C++ programmer, you should be familiar with the basics of the PDF file format ISO 32000-1, and you should be prepared to read thousands of pages of documentation.

  • Camera Raw plugin for Adobe CS

    I am running Adobe CS (rather than the most recent version of Photoshop) on my PC.
    I need to process RAW images from my Canon 30D.
    Can I use Camera Raw 3.4 with my Adobe CS, even though it came out to support CS2?

    robraws wrote:
    Where do you find DNG converter version 5.2?
    The Adobe DNG Converter version 5.2 is obsolete by now.
    At this point, you want the Adobe DNG Converter version 5.3, available here:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4369
    Incidentally, your question does not fit in a thread titled "Camera Raw plugin for Adobe CS' in Adobe Camera Raw".  You should have started your own thread instead of hijacking this one, where your question could have remained buried. Please keep that in mind next time.
    Please read this post by a forum host for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/375816?tstart=0
    Thanks!

  • How To Develop a Simple WebService App XI Scenarios

    Hi,
    How can I develop A simple Webservice for any scenario, for example, if am doing File to file scenario, and i want to develop a Webservice for the same scenario,
    I think in ID we have an option Under Tools "Define Webservice" where in we can use wsdl format of the message interfaces.
    How should i proceed to develop the Webservice?
    Regards,
    Varun

    Hi Varun,
    After creating the wsdl file u can deploy using MS visual studio.
    Follow the steps and run the scenario.
    use it in a Client Program in .NET : (assuming Maths as the WSDL and Webserice name)
    1.) Place maths.wsdl in C:/Sample/ folder
    2.) Open Visual studio command prompt using the Start Menu
            Start->Programs->Microsoft Visual Studio 2005->Visual Studio Tools->Visual Studio 2005 Command Prompt
    3.) In the Command prompt go to that directory
        > C: 
        > CD\
        > CD Sample
        > wsdl maths.wsdl /out:"c:\sample"
    4.) The previous step will create a file called Maths.cs , go to that folder and confirm this
    5.) Open Microsoft Visual Studio 2005, open the Client application where this webservice needs to be called
    6.) If your Client application is a web application, the see if the website has a folder called "App_Code"
        If not then create this folder. Right Click on this folder and click on "Add Existing Item"
    7.) Browse to C:/sample and select the Maths.cs file
    8.) If your client is a Desktop application , just add this file in a similar manner to the project(no need of creating any folder)
    9.) After the file gets added, open Maths.cs file
    10.) Add a namespace to it for convinience
            eg:
                namespace SAP
       This should come before the Class Declaration and close it after the class
        eg: See the red lines
        namespace SAP
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Web.Services.WebServiceBindingAttribute(Name = "Equi_get_NotifBinding", Namespace = "http://Equipment_Get_Notifications")]
        public partial class Equi_get_NotifService : System.Web.Services.Protocols.SoapHttpClientProtocol
          functions....
    11.) Save the Maths.cs file
    12.) Open the Webform or windows form code where this webserive will be called
    13.) The webservice will now be available here under the SAP namespace
            so when u type "SAP." u will get all the classes in it.
            Add credential in this code as shown below
        eg:
        private void GetNotifications()
            try
                SAP.Equi_get_NotifService ser1 = new SAP.Equi_get_NotifService();       //This is the Webserive Proxy class
                SAP.Equi_get_Notif_Request req = new SAP.Equi_get_Notif_Request();      //Request Class
                req.Equipment = SAPID;
                req.Date = Calendar1.SelectedDate;
                System.Net.CredentialCache ch = new System.Net.CredentialCache();                                    //Adding Credentials for authentication on webservice server
                System.Net.NetworkCredential cr = new System.Net.NetworkCredential("xisuper", "infotech");
                ch.Add(new Uri(ser1.Url), "Basic", cr);
                ser1.Credentials = ch;                // Assing this Credential to the ProxyClass.Credentials property as shown here
                SAP.Equi_get_Notif_ResponseNotifications[] res = ser1.Equi_get_Notif(req);        //Call the webservice, res is the responce object
                GridView1.DataSource = res;
                GridView1.DataBind();
            catch (Exception ex)
                Response.Write(ex.Message);
    "Award points if it is helpful"

  • How to install Flash Player plugin for FF3 from a Windows user account?

    Hello,
    How to install the Flash Player plugin for FireFox3 from a MS Windows (XP/Vista) standard user account (non admin account)?
    Launchuing "install_flash_player.exe" I get the message: You need admin privilege to install this software.
    Thanks.

    anandsrivastava.2612 wrote:
    i want plugin for adobe flash playe in my wesite
    I don't understand what you want - your visitors to download the plugin from your website?  Please explain!

  • HT5243 how do I find my password for adobe and Java

    how do I find my password for adobe and Java

    "Java" doesn't have a password, unless you mean your admin password for installing software. That's whatever password you (or the person who set your computer up) used to set up your admin account. That's the same password that you use when you start up the computer if you get asked for one. You cannot retrieve this password if you've forgotten it, but you can reset it and make a new one. See this support article if that's the case:
    http://support.apple.com/kb/PH14325
    "Adobe" is a company and likewise doesn't have a password. However, if you have Adobe cloud-based software you may well have set up a password with them. Adobe also require an account and password for downloading certain products. You'll need to contact Adobe to retrieve any such password if you've lost it.
    Try
    Adobe ID, sign-in, and account help

  • How to Force enable, silent updates for Adobe flash in windows 8

    How to Force enable updates, silently for Adobe flash in windows 8 using group policy?
    I have followed this Article:
    http://helpx.adobe.com/flash-player/kb/administration-configure-auto-update-notification.h tml
    http://gpyall.com/archives/disable-adobe-flash-updates-on-64-bit-windows-with-group-policy /
    This looks promising but not working.
    Also, I cannot even manually create a file, in Win 8  (C:\Windows\SysWOW64\Macromed\Flash)
    So how would group policy can put mms.cfg in this location with following vaule:
    AutoUpdateDisable=0
    SilentAutoUpdateEnable=1
    Thanks in Advance.

    You will find more information in http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flas h_player_11_7_admin_guide.pdf

  • Need MSI Download of Adobe Flash Plugin for Adobe Reader

    From this link:
    http://helpx.adobe.com/acrobat/using/flash-player-needed-acrobat-reader.html
    I found EXE Download of Adobe Flash Plugin for Adobe Reader/Acrobat:
    install_flash_player.exe
    I requested our Admin to deploy the above file via SMS but he told me it will be better if I can find an MSI Download insteade of EXE.
    Where I can get MSI Download of this EXE File?
    Tarek.

    Pat Willener wrote:
    Sorry, I misunderstood - yes, this will install the Flash Player plugin for non-IE browsers.  But so will install_flash_player.exe from your first post.
    According to the link you posted, it seems to be required to install the Flash Player plugin to view Flash content in PDF files.
    On the other hand I do not quite understand why there is a NPSWF32.dll file in C:\Program Files\Adobe\Reader 11.0\Reader ...
    Thanks again Pat, but apologies, as I am not quite sure I understand what you mean...
    This link you posted:
    http://www.adobe.com/products/flashplayer/distribution3.html
    ... will result of this distribution deployment allow the end-users to play Flash in PDF under Adobe Acorbat/Reader?
    Tarek.

  • Please tell me how to call javascript(.js) in my vb exe for adobe illustrator cs.

    Could you please please give some sample codings "how to call javascript in my vb exe for adobe illustrator cs". I called through doscript in my vb program, but some time it throws an error. If i run the script directly in illustrator it does not throws error. So Please advice me how to solve this problem.
    Thanks in advance,
    Prabudass E

    I'm not sure if this helps but it's from the CS4 scripting examples:
    Set appRef = CreateObject("Illustrator.Application")
    Set fileSystemObject = CreateObject("Scripting.FileSystemObject")
    ' Creating a folder browser in VBScript can be a problem (relying on either Windows API calls
    ' or use of ActiveX controls which may not be present on a given system). Instead, use
    ' Illustrator's built-in JavaScript to display a file browser. DoJavaScript can return a value,
    ' in this example it's the platform specific full path to the chosen template file.
    doJavaScript = "var templateFile = File.openDialog(""Select CalendarTemplate.ai file:""); if (templateFile) filePath = templateFile.fsName;"
    myFilePath = appRef.DoJavaScript(doJavaScript)

  • How to reset the factory defaults for Adobe Photoshop CS4? [was:need assistance]

    How to reset the factory defaults for Adobe Photoshop, CS4.  My 'image size' box is not quite right. Thank you.

    How to delete/reset Photoshop preferences
    Preference file functions, names, locations | Photoshop CS4
    To reset within the Image Size dialog press Alt (Option on Mac) and click Reset.

Maybe you are looking for

  • Dynamiclinkmediaserver has encountered an error while importing video

    I deinstalled everything adobe, ran the cleaner tool, cleaned the registry, trashed preferences... re-installed PhotoshopCC Still this error pops up everytime I try to import a video, I found posts about it dating from LR4.1 with not a single thread

  • What happened to my QT7 (Pro) controls?

    I have QT7 installed & registered (yes... from the utilities folder) but the controls are no longer accessible. I used to open MP3's and MP4's to audition, rehearse with and otherwise dissect music while I compose (for hire) and would create start/en

  • "change over currency in existing company"

    Hi Gurus, My client wants to change his currency from CAD to USD for an existing company. Can anybody tell me the impact of changing currency for an existing company to a new currency in a live scenario and configuration settings also. Thanks jais

  • Suppress requested acknowledgement / AckNotSupported

    Hi, We have a Rosettanet flow over the RNIF1.1 adapter. By default , this adapter will add the 'SystemErrAck' and 'ApplicationErrAck' during the conversion of the message into XI format. This message is send to an RFC receiver ( that doesn't support

  • An error occurred when connecting to the accounting system ID3DEV310

    Hi Friends, We are Implementing collaboration project 4.5 and want to link with project system in ECC 6.0. Both these are in the different servers. I have done the configuration on both the servers and also maintain the RFC (ID3DEV310) in Object Link