InDesign Plugin question

Hi All,
I was wondering if you or someone is currently looking for a new project. I am looking for a Adobe InDesign Plugin Developer who knows how to write extensions for the desktop publishing applications; Adobe InDesign and Quark.
Familiarity with scripting languages such as JavaScript, AppleScript, or VB Script.
Good problem solving abilities and strong programming skills.
Excellent communication skills and ability to work in a collaborative manner.
Experience on Macintosh and Windows systems.
Experience in XML.
Experience with server-side technologies such as J2EE, Tomcat, or other application servers helpful
Please feel free to call me or email me.
Thanks,
Crystal
949-202-5814 office
[email protected]

Hi Folks,
I am also after an Indesign Plugin developer.
I currently have a project I am developing - it is listed at getafreelancer.
https://www.getafreelancer.com/projects/Javascript/Adobe-Indesign-Index-Plugin-required.ht ml
Please bid, or contact me at the project for further clarification/information.
I am looking to get started straight away.
Leigh.

Similar Messages

  • Amazon Indesign Plugin Question

    Apparently this plugin only works in CS6
    Does it work well enough for me to back up my files from CC and buy (AGAIN) CS6?
    Is anybody just delighted with this plugin?
    Is there a way of creating a Kindle ebook without it when my files are all in indesign CC?

    First of all, it's still in beta, and, as you already know, doesn't yet support InDesign CC (nine months after its release).
    Not everyone is thrilled with it as you can see in the thread below:
                                      When will ID Include Integrated Kindle .mobi Export?                    
    If you're serious about creating eBooks, you should watch Anne-Marie Concepcion's new video on creating EPUB from InDesign CC on Lynda.com. She goes into the plusses and minuses of the Kindle plug-in versus an EPUB to KindleGen approach. (If you don't know what that means, you need to study some more, I'm afraid.)

  • Compile indesign plugin with Panel

    Hi!
    I make a new question with a tittle more explicit, because i didn't have answer to my last question.
    I have :
    - Xcode 3.2.1
    - SDK CS 5.5
    And i don't know how to do to have an Indesign plugin file.
    Can you help me ?
    I tried to do what they say to do in the "GETTING STARTED WITH ADOBE INDESIGN CS5.5 PLUG-IN DEVELOPMENT" PDF file but :
    - I tried to use DollyXs.sh : i don't know what to do !
    - i tried with the "SDK project template" but after they say that : "Open WFPID.h in your IDE and find the widget definitions for the dialog, as shown here:"
    But where is "WFPID.h" ? Is it in finder ? in xcode project ?
    Please help me.
    Thanks

    Hi
    'Getting started' has enough details to create and build projects. It would be better to read again 'Build the plug-in' section.
    1. run application->terminal
    2. cd dollyxs path and run dollyxs.sh
    3. a tabbed window opens, with default values for dollyxTest project. if u want a project with different name change it
    4. next tabs are mac, win. set paths for mac and skip win.
    5. in final tab, select 'indesign product' and check panel/dialog and now Ok.
    Now a message will show that project is successfuly created.
    open project file in xcode, and build. now plugin file .pln will be created. copy it to the 'application/adobe indesign/plugins' folder. start/restart indesign.
    Unless u can start with sample plugins provided in sdk. Project files will be available in "D:\H\SDK\Adobe InDesign CS5 SDK\build\mac\prj".
    1. open basicdialog / basicmenu prj.
    2. build
    3. 'application/adobe indesign/plugins' folder. start/restart indesign.
    regards
    Ays. Hakkim

  • How to read an external XML file in a indesign Plugin?

    Hi All,
    Can you please guide in reading an external XML file in a indesign Plugin in MAC system. I am an windows user.We are using this file for reading some inputs.
    Thanks,
    Daniel

    Hello Daniel,
    I am uncertain about the actual question. If you are developing a plug-in or otherwise interfacing with the guts of ID, I suggest asking the question in the SDK forum:
    InDesign SDK Forum
    Otherwise, what is it you are wanting to know concerning importing XML into InDesign?
    Mike

  • Make an Indesign plugin

    Hi !
    I need help to make a indesign plugin with panel. It's doesn't work for me !
    I have :
    - Xcode 3.2.1
    - SDK CS 5.5
    When i open a exemple project that is working (many exemple project make error when i build them) and when i build it, it create many files in the folder "Release.build". Some .dat, .dep, .sh, etc.
    What can i do with these files ? Why i don't have a .InDesignPlugin file ?
    And a second question, how can i make panel interface (with buttons, champ, etc.) ?
    Thank you for help !!

    Yes i started with "getting-started.pdf" and i have take a fast look to "plugin-programming-guide-vol1" and "plugin-programming-guide-vol2" but i can't open the first exemple and i can't do the same things.
    So i have some notion of C++ but my problem is to use xcode or sdk. How compilate the plugin to run the plugin in indesign (to have a .indesignplugin file) ? I do "build" but i have many file and i don't know what do after with these files .
    And how make the panel with buttons or else things ?
    Thanks

  • Xcode to InDesign plugin

    I have a stand alone Xcode app I created that I have to attach to InDesign as a panel. I assume by porting it to be an InDesign plugin. How do I go about doing this?

    You will need to get the plug-in SDK available from http://www.adobe.com/devnet/indesign/sdk.html
    Documentation for getting started with the SDK is included in the SDK, and this forum is a great place to post questions if you get stuck.

  • How to give call to dll in indesign plugin

    Hello All ,
    I am developing one indesign plugin on Mac OS X 10.4.
    I want to give a call to one dll in pluging code.
    But the problem with mac os x according to my knowladge ,dll need to be build in same project where we are calling that dll.
    That is why I build a xyz.dylib in same project for indesign plugin as one of the target. and I am coping it in Indesignplugin package content that is with release mode build.but dll gets build in debug mode.On Mac OS X I am using dlopen and dlsym call . But I am not able to call a dll present in indesign plugin package content. Any idea How to call a dll in indesign plugin on Mac OS X.Should we need tyo build a xyz.dylib file in release mode ?
    Thanks,
    Pallavi.

    Seems to me I don't understand something, or text format plugin isn't quite well example. But, I got some code from sdk to create layer with automation like this:
    SPErr MakeLayer(void) {
    PIActionDescriptor descriptor = NULL;
    PIActionReference reference = NULL;
    PIActionDescriptor result = NULL;
    SPErr error = kSPNoError;
    error = sPSActionDescriptor->Make(&descriptor);
    if (error)
    goto returnError;
    // Move this to the top of the routine!
    error = sPSActionReference->Make(&reference);
    if (error)
    goto returnError;
    error = sPSActionReference->PutClass(reference, classLayer);
    if (error)
    goto returnError;
    error = sPSActionDescriptor->PutReference(descriptor, keyNull, reference);
    if (error)
    goto returnError;
    error = sPSActionControl->Play(&result, eventMake, descriptor,
    plugInDialogSilent);
    if (error)
    goto returnError;
    returnError:
    if (result != NULL) sPSActionDescriptor->Free(result);
    if (descriptor != NULL) sPSActionDescriptor->Free(descriptor);
    if (reference != NULL) sPSActionReference->Free(reference);
    return error;
    and wrote aeta resource:
    resource 'aete' (16000, "myFile" " dictionary", purgeable)
    1, 0, english, roman,
    vendorName,
    "description",
    plugInClassID,
    1,
    1,
    vendorName " myFormat",
    plugInAETEComment,
    plugInClassID,
    plugInEventID,
    NO_REPLY,
    IMAGE_DIRECT_PARAMETER,
    "create",
    keyMyCreate,
    typeMyCreate,
    "create type",
    flagsEnumeratedParameter
    typeMyCreate,
    "layer",
    createLayer,
    "make layer"
    And what now? Is any better examples?

  • Missing  SMD Channel Model.sdk.InDesign Plugin

    Hello everybody!
    I got an InDesign file from a print office today. When I try to open it, I get a message that advises me to not open the file because the SMD Channel.sdk.InDesign Plugin isn't available on my system.
    Like a good girl I googled the problem and yes there are already some posts about that problem. Also in this forum there's already an existing discussion about it: Link InDesign Discussion
    But for the solutions they offer I should open the document but I simply can't. Because when I press "OK" only
    another warning appears that says that I can't open the document and that I should update my modules or  update to the current verison
    of InDesign. When I press "OK" again nothing further happens. (Pictures below)
    Operating System: Windows Vista
    InDesign Version: CS 5
    Sorry that the screenshots are in german. I hope you can use them anyway.
    Thanks for your help! -- Jannie

    Hi Jannie,
    This is not a big issue, it seems that the document you are using was created from a later version of InDesign than the one you are using to open it. Since you are using CS5 the document is probably created using CS5.5 or CS6, and you cannot open a doc of later version in a previous version of InDesign for obvious reasons.
    And for the reason this problem(your first screenshot) occurs is that every plugin in InDesign can save some persistent data on the document and if it does so then whenver you open such a document and the plugin is not loaded then this prompt occurs. However if the developer coding the plugin has some foresight he can avoid such alerts to the user by using Ignoretags resource in the plugin code.
    Hope my explanation cleared out the confusions you had on this behavior of InDesign
    Thanks
    -Manan

  • Terms and conditions for InDesign plugin for B2B?

    Hello Community,
    we are developing a commercial plugin for Adobe InDesign for B2B.
    For this purpose we need some information about how to write terms and conditions for Adobe InDesign plugins. Which requirements should we write in the terms and conditions? If Adobe InDesign CC is expired, the plugin can’t also be used? Are there anybody who have useful terms and conditions for such plugins or which plugin company use some useful terms and conditions?
    regards,
    Raymond

    There are not many developers here. Try the InDesign SDK forum where you'll find more developers.

  • Boost regex not working inside indesign plugin

    Hi, While i was writing the below code in a separate project inside visual studio express, It works fine!
    Now when I am using the same code in a Adobe InDesign plugin then boost::regex_search fails..
    I am not getting the exact reason...
    Any idea for resolving this will be great help.
    void MTSTestFunctions::ParseAllMarker(std::wstring& inText, std::vector &outMarkerInfoVec)
        std::wstring::const_iterator start = inText.begin();
        std::wstring::const_iterator end = inText.end();
        boost::wregex pattern(L"((<.*?>)|(\\[[^[].*?[^]]\\])|(\\[\\[.*?\\]\\]))");
        boost::wsmatch what;
        boost::match_flag_type flags = boost::match_default;
        int32 index = 0;
        try
            while(boost::regex_search(start, end, what, pattern, flags))
                MarkerInfo tmpMarkerInfo;
                tmpMarkerInfo.mMarkerText.assign(what[0]);
                tmpMarkerInfo.mStartIndex = (what.position() + index);
                index += what.position();
                tmpMarkerInfo.mEndIndex = (index += what.position());
                tmpMarkerInfo.mMarkerTextLength = (index + what.length());
                index += what.length();
                // update search position:
                start = what[0].second;
                // update flags:
                flags |= boost::match_prev_avail;
                flags |= boost::match_not_bob;
        catch(std::runtime_error ex)
    Thanks

    Hi,
    If I modify by above code as below for using std::tr1::regex the I gets the same crash...and error.
    void MTSTestFunctions::ParseAllMarker(std::wstring& inTextO, std::vector<MarkerInfo> &outMarkerInfoVec)
        std::wstring inText;
        inText.assign(inTextO);
        std::wstring::const_iterator start = inText.begin();
        std::wstring::const_iterator end = inText.end();
        std::tr1::wregex pattern(L"((<.*?>)|(\\[[^[].*?[^]]\\])|(\\[\\[.*?\\]\\]))");
        std::tr1::wsmatch what;
        std::tr1::regex_constants::match_flag_type flags =  std::tr1::regex_constants::match_default;
        int32 index = 0;
        try
            while(std::tr1::regex_search(start, end, what, pattern, flags))
                MarkerInfo tmpMarkerInfo;
                tmpMarkerInfo.mMarkerText.assign(what[0]);
                tmpMarkerInfo.mStartIndex = (what.position() + index);
                index += what.position();
                tmpMarkerInfo.mEndIndex = (index += what.position());
                tmpMarkerInfo.mMarkerTextLength = (index + what.length());
                index += what.length();
                // update search position:
                start = what[0].second;
                // update flags:
                flags |=  std::tr1::regex_constants::match_prev_avail;
                //flags |=  std::tr1::regex_constants::match_not_bob;
        catch(std::runtime_error ex)

  • 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.

  • Flex Indesign plugin

    Hi guys,
    I am trying to build an Indesign plugin with flex and CreativeSuiteSDK.
    When trying to execute this statement in a shell:
    java -jar ucf.jar -package -storetype PKCS12 -keystore myCert.pfx -storepass mypasswd
    myExtension.zxp -C "./myExtension"
    I get this error:
    not enough arguments
    usage:
      ucf -package ( -storetype <type> ( -keystore <store> )? ( -storepass <pass> )? ( -keypass <pass> )? ( -providerName <name> )? ( -tsa <url> )? )? <ucf-file> <fileOrDir>* (( -C <dir> <fileOrDir>+ ) | ( -e <file> <path> ))*
      ucf -help
    I am working with this tutorial: http://www.google.com/url?sa=t&source=web&cd=1&ved=0CBkQFjAA&url=http%3A%2F%2Fwww.adobe.co m%2Fcontent%2Fdam%2FAdobe%2Fen%2Fdevnet%2Fcreativesuite%2Fpdfs%2FCS_SDK_Guide.pdf&rct=j&q= Using%20the%20Adobe%20Creative%20Suite%205%20SDK&ei=Lw40TZS6BIe_4gbRlLWJDw&usg=AFQjCNHLg2F xFL7DVPiQkErqqhQnB8zMPg&cad=rja
    Thanks for your help

    Similar bug(#3710667) was exist in CC before 9.2.2 update as you can see in release notes of 9.2.2(CC last update) here. before fix simple selected text drag & drop did not work from any application except TextEdit .I have also spent hours before this update to find out bug I used ClipBoardViewer sample App to find out current Drop flavour and its content it may help you and before fix I find some workAround first is add flavour in your drop which Indesign understand even if you are not adding any data for that flavour so that you start receiving couldAcceptType() and under this call parse your actual data from PasteBoard and remove all data from pasteBoard so that another next helper will not consume it. as you mention even after adding text flavour your couldAcceptType() not hit so may be this WorkAround not work for you but it worked for me.
    second is just a finding  i.e before doing drag and drop on indesign create one new document (from Indesign UI not programmatically ) save it on disk close it and reopen it after it every drag & drop will start working work .

  • Howto: InDesign plugin

    Hi I'm a novice here.
    What do I need to start writing programs for InDesign plugin?
    any particular development software for that?
    and where to download the SDK?
    Advice needed. Thanks in advance.

    Hello,
    first you should get the CS4 SDK from Adobe
    you will have to do changes to your code, so it is good to have a backup of your CS3 project
    most of the changes you will do is:
    update the project to be able to see the new CS4 SDK(new libraries needed, include path changed etc)
    go throught the Advisory document (in the SDK doc folder) which describes API changes between CS3 and CS4 - fix those in your code. This might be easy or more complicated, most of the time it is ok)
    After the "visible" and "obvious" things were fixed and you are able to compile you need to go through the new features in CS4 and make sure your plugin still does what is was supposed to do (I thing it was links in CS4)
    it is possible to hold sourcecode for different CS versions in one project tree, by using preprocessor macros
    have on mind, CS3->CS4 transition is straightforward, CSx -> CS5 needs model separation
    Hope this shows at least the beginning of the path//Adam

  • InDesign plugin that supports table templates?

    I'm looking for an application or plugin for Indesign that supports the creation of table templates, or something similar. The idea would be to allow different data to be applied to a pre-designed table template in order to create multiple similar tables for a given InDesign document. Does anything like this exist out there?

    1. What is the back-end server requirements to be able to render the finished PDFs?
    You need either a Windows or Mac server and a licensed copy of Adobe InDesign Server ("IDS"). IDS takes SOAP requests that tell it what script to run, and scripting the server is generally the best approach unless you have some really special type of situation where a C++ plugin is needed. Certainly updating templates and generating PDF can be done with a script. You send a SOAP request to the server telling it what script to run and what template to load, and where to put the PDF. You can download a trial of IDS from Adobe.com.
    2. Does anyone have experience building the InDesign Plugins that can connect to a back-end rendering server?
    Our company, Silicon Publishing, has a ton of experience connecting to InDesign Server, as we have been a solution provider and re-seller 8 years, producing large-scale solutions for Shutterfly, Royal Carribean, Nike and many others. We can render on the server via plugins, CS and/or CC extensions, and/or scripting. This is definitely our sort of project, and we can either consult/train or build a complete solution. You can contact me at [email protected]

  • Porting an InDesign Plugin from InDesign CC to InDesign CC 2014 the plugin complies successfully with the InDesign CC 2014 SDK but at run time presents this error and is disabled. Does anyone know what might be the issue?

    Porting an InDesign Plugin from InDesign CC to InDesign CC 2014 the plugin complies successfully with the InDesign CC 2014 SDK but at run time presents this error and is disabled. Does anyone know what might be the issue?
    Run TimeError Message Presented when InDesign CC 2014 runs:
    Adobe InDesign cannot load the FastFractions.InDesignPlugin plug-in. The FastFractions.InDesignPlugin plug-in requires the 9.0 version of InDesign. Please contact the vendor to get a compatible version of FastFractions.InDesignPlugin.
    Show this alert again?

    As already told this means that the plugin has not been ported correctly. Some part of it for ex InDesign libraries or frameworks are being referenced from the CC sdk instead of the CC2014 sdk. To troubleshoot it i would advise you to rename the folder containing the CC sdk on your machine and then compile the project, it will fail to compile and you will get to know straightaway what aspects of the ported project are still accessing the old sdk. Fix the errors and your plugin will load fine.
    Thanks,
    Manan

Maybe you are looking for

  • VISUAL C++로 PRO*C COMPILE하기.

    제품 : PRECOMPILERS 작성날짜 : 1998-11-16 Visual C++를 이용하여 pro*c를 이용하는 방법을 정리한다. 아래의 내용은 Visual C++ 5.0과 windows95용 Pro*c 8.0을 기준으로 기술 되었다. 아래의 방법은 새로운 project를 생성해서 이곳에 Sample.pc 를 precompile하고 compile, link하여 실행 화일을 만드는 과정을 설명한다. 1. 새로운 project를 생성한다. -

  • Re-Installing iPhoto on 10.6.8

    Hi ! - Bought iPhoto on the Mac App Store a few months ago - Did a clean install of 10.6.8 today. - Tried to install newest iPhoto version. --> This failed, because the latest iPhoto needs at least 10.7.4 How do I get a working version of iPhoto for

  • Command + H Hide active window option disabled

    Not sure what I did, but all of a sudden I can no longer use the Keyboard Shortcut, Command + H to hide windows. When I click on the menu, like Firefox, it shows it in the list, but it's grayed out and it won't let me select it. Somehow I must have a

  • Is it possible to increase user exit time out for a partcular user

    Dear Sir/madam, Is it possible to increase the User Time Out for a Particular user ? We do it through RZ10 and as per I know when it is changed, it is effected to all the users. Pls advice. Thanks, Pranab

  • BP Master Data Query

    I have a BP Master Record. I need to export it to an excel file for testing. when i open a record for export the Export to Excel icon is grayed out. How do i do the export?Please help me on the same Thanks, Kanthi.