InDesign Plugins to Package Files

InDesign CC won't allow me to package my jobs until I install or activate the following plug ins:
SUITCASEIDCS3PLUGIN.PLN
FUSIONPROUICS3.PLN
Where can I find these plug ins and what is the best way to install?
thanks

Export the file to IDML and reopen it.

Similar Messages

  • InDesign Freeze when "Packaging" files.

    New Mac with Snow Leopard, 10.6.6 Just updated to CS5. "Packaging" will not complete on some documents (at least two files so far) if I ask it to gather the fonts as well. The same files works fine in CS4. Fonts are not protected.
    I use FontAgent Pro 4.0.3 to handle fonts. I've flushed all font caches with Cocktail 4.8. Still no cigar.
    Anybody else seen this behavior?
    Thanks.

    I am getting the exact same problem. Upgraded to 7.0.3 as well. Packaging my current document always freezes InDesign, and upon restarting it opens two versions of the same document as though there are two separate aliases. Packaging progress gets just to the very end of the progress bar, a folder does get created with the links and fonts subfolders, and an INDD file is created (but cannot be opened). InDesign doesn't budge once the progress bar freezes, and a force quit is required. I've been able to package several others prior to this in the past week. I'll try a few things with the document itself.
    New Macbook Pro purchased in late October, Snow Leopard, 10.6.6, CS5.

  • InDesign does not package fonts used in placed .AI files

    When we package a project for our print vendor, placed .AI files containing fonts do not get collected. I know those fonts are embedded in the .AI file when printing from InDesign, but sometimes our prep vendors need to make last minute edits to these .AI files before they RIP the project. Is there a way to have InDesign collect fonts from .AI files? I know we could use Illustrator .EPS format and uncheck "Embed Fonts", but our vendors prefer .AI files. Any add-on plugins available to solve this problem or other workarounds?

    I suppose you could open each .ai file, go to select> object> text objects, copy, then paste into InDesign, save and package. Then delete the pasted type after packaging. This does not work with Zaph dingbats, symbol, or probably other "ornamental" fonts, which are converted to outline upon pasting.

  • 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

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

  • Can you package files in Premiere Pro CS6 like you do in Indesign so you don't looses links?

    Can you package files in Premiere Pro CS6 like you do in Indesign so you don't looses links?
    We are sorting out our filing system and want to be able to move files and rushes to new locations without loosing the links between them, is their a way of doing this? When using InDesign you package a file and it creates a folder of links and fonts, something like this would be useful.

    Have a look at the Project Manager.

  • "The selected package file requires an InDesign document that cannot be found."

    Hello,
    I often get this error message "The selected packaged file requires an InDesign document that cannot be found.  How do you want to continue?" when opening in InDesign CS5.5
    My options are "Browse to locate this document." and "Save the contents of the package to disk."
    When I selected "Browse to locate this document." and I located the appropriate InDesign file, it prompts me to browse for the file again.  Its a never ended cycle.
    I'm not sure how to solve this problem.  I'm not familiar with the procedure if I "save the contents of the package to disk."  Can someone help me out with this?
    Thanks!

    Well, there’s your answer. Pretty simple…don’t do that.
    But if the damage has been done, you can change the extension of the idap file to zip and unzip the contents. You’ll find all the updated InCopy stories there.
    Overwrite the ones on your harddrive and you should be good to go.
    Bob

  • InDesign CC freezes when packaging files.

    InDesign CC freezes when packaging files. Just spinning beachball. Need to Force Quit. Tried resetting Prefs at startup (holding down keys), but no change. Looking for path to  Default and Data files, but not finding them in Library. (D'oh!) Downloaded most recent CC versionlast night. Any ideas or should I try CC (2014)

    Hi Pam,
    I would certainly give CC2014 a try.
    Other than that, make sure there’s no illegal characters like slashes in the file or folder names and that the path is not too long.

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

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

  • "An error has occurred opening the package file" in InCopy

    Hi there,
    I have created an InCopy package file from InDesign CS3 (Mac).  I am able to open this package file in InCopy CS3 (Mac) without error.  However, two editors working in InCopy CS4 (Windows) on different machines receive the following error message when trying to open the .incp file:
    "An error has occurred opening the package file"
    I have read AnneMarie's excellent cautionary tales about working in a mixed CS3 / CS4 environment, but my understanding was that simply opening the initial .incp file was unlikely to produce an error.
    Can anyone suggest what might be causing the error?  Should we conclude that the error stems solely from a CS3 / CS4 conflict?
    Thanks!
    --Stephen

    Great tip about the masked filetype, I hadn't realized these packages were so easily extractable.
    However, the error message you're receiving is adding a new layer of complexity.  A quick search on these forums reveals this thread:
    http://forums.adobe.com/message/2278850
    That thread suggests to me that the error may be related to Snow Leopard.  We're using Mac OS 10.5.7 here at work.  Could I trouble you to open the file on your Windows machine to attempt to replicate the same error we're receiving in Windows here?
    And are there any known issues that could prevent a user from opening a package file?
    Thanks.
    --Stephen

  • Why does InDesign sometimes NOT package fonts?

    Hi. I'm using the latest version of InDesign and lately, when I package files, I've noticed that the 'document fonts' folder is not always created in the finished packaged folder. There seems to be no pattern to when it does or does not include them. For instance, on one job it did include them, then on the same job when the artwork had been updated, it did not. Same typefaces etc. Any ideas?

    Okay. So you do not have the latest version but you do have the most recent patch for CS5. I know there were some issues with Type 1 fonts but I’ve heard nothing about issues with Opentype or TrueType especially on Windows.
    Sorry, but I really don’t what to tell you.
    Bob

  • 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

  • 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

  • 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

Maybe you are looking for

  • Two iPhones and two iTunes accounts on one computer

    My wife and I both have identical iPhones and my wife wants to give her laptop to my son. I thought that I could manage her iPhone from the same computer that I manage my iPhone from but I am having issues. If I logout of iTunes and login with her ID

  • Need help with my serial ata drive

    Ok.  I have has a series of issues and am now just back online.  Here is my main problem at this point.   I have a dual boot running on a wd raptor 36gig.   I updated my bios to 2.30 from 1.0 and this drive disapeared.   I managed to get it back by c

  • Problem with Perl Function

    Hello, My MacBook Pro is running on Mac OS X v 10.6.5 (Snow Leopard), and I was trying to run a perl script on the terminal. The script contains perl functions, such as chomp, split, next; however, the perl in my MacBook could not read (recognize) th

  • Alternative for result from other query  and merge dimension option option

    Hi Everyone , Am Developing one webi report over bex Query. Actual scenario is output of one webi report should be the input of other webi report. Eg: Table 1 2010        Cus 1 2010        Cus 2 2011        Cus 3 table 2 cus1    m1   100 cus2    m2  

  • Jca and jms

    hi, i ned to impliment a jca (java connector architecture) in jms, help me. thanks