Skip to main content
Participant
July 26, 2007
Question

[CS 3 For Mac] Why I get the folder XXX.IndesignPlugin ?

  • July 26, 2007
  • 5 replies
  • 982 views
Hi
I build the project in xcode2.4.1 and get the folder instead of a file name of xxx.IndesignPlugin, Why?

Thanks
Castus
This topic has been closed for replies.

5 replies

Inspiring
July 27, 2007
> My plugin seems not to be loaded by the Indesign After I've copied the plugin file(It is a
> folder with .IndesignPluin extension in my system) into the Indesign CS3/plug-ins/
> directory. What's wrong with it??

there are a few possibilities I came across:

1. make sure your extension is ".InDesignPlugin".

2. make sure you have compiled the right target. I have compiled the Debug target (set by default when open the SDK projects) but I copied the one from "build/mac/release/SDK/..."

3. make sure it works with the SDK projects. If they don't, then you have a bigger problem than your own project.

4. Open an existing plugin package that shipped with CS3 and compare with yours... may be your bundle is ill formed?
_Castus_Author
Participant
July 27, 2007
Bundles are indeed just folders or directories on the file system, nothing magical about them. You can see that from the Terminal. Finder, however, will treat them as single entities, so double-clicking on those items will trigger specific actions instead of letting you to navigate into them like regular folders.

My problem is that I can navigate them like a regular folder. It can be opened like a reaular folder and will not trigger a specific action.
My plugin seems not to be loaded by the Indesign After I've copied the plugin file(It is a folder with .IndesignPluin extension in my system) into the Indesign CS3/plug-ins/ directory. What's wrong with it??

Thanks
Castus
_Castus_Author
Participant
July 27, 2007
Dirk, pete, Thank you indeed for your replies.
Inspiring
July 26, 2007
InDesign plugins are bundles.
Bundles are folders that the OS usually recognizes as package so it treats them as non-folders. For newly built plugins, the OS is a bit lame to catch up. This is just a cosmetic issue.

A simple fix is to use the finder contextual menu to zip and unzip the folder. There might also be some appropriate command line spell that you could use as build phase, if you find it tell us.

There is also a "show package contents" finder contextual menu that allows you to inspect the bundle later on - it is still a folder.

If you're missing the ".IndesignPlugin" name extension, that's a bug in the project template. Open the project in a text editor and search for a variable "extension..." don't know exact name.

Dirk