• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

PSPaletteMenu category doesn't work for automation plugins

New Here ,
Jul 23, 2007 Jul 23, 2007

Copy link to clipboard

Copied

Hello,

I would like to have a menu item under Photoshop "Window" menu for my automation plugin.
There is a notice in the PIPL.r file that goes with SDK:

// Use PSPaletteMenu category to add a menu item on the Window (i.e., palette) menu.
// This is currently only enabled for automation plugins.
PSPaletteMenu ="**Palette**";

However when write my PiPL res like in example below

resource 'PiPL' (ListenerResourceID, plugInName " PiPL", purgeable)
{
{
Kind { Actions },
Name { plugInName "..." },
Category { "**Palette**" }, // or Category { PSPaletteMenu }
Version { (latestActionsPlugInVersion << 16) | latestActionsPlugInSubVersion },

...................

menu is not shown under Window menu :(

Want to note that if I specify Category { PSHelpMenu } it works correctly and menu item is shown under Help menu. PSPaletteMenu also doesn't work for Listener plugin that ships with PS SDK.

Looks like plugin is not recognized as automation plugin, but I have correct info.plist props (on MacOS X version)

What should be done to have my plugin menu item under "Window" menu?

Regards,
Mac Developer
TOPICS
SDK

Views

486

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
New Here ,
Jul 30, 2007 Jul 30, 2007

Copy link to clipboard

Copied

Any feedback on this? Is it possible to have my plugin's menu item under "Window" menu? (For Mac OS X / Windows)

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 14, 2007 Aug 14, 2007

Copy link to clipboard

Copied

Sorry, is this known issue?
Is it possible to have custom menu item under "Windows" menu?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Aug 17, 2007 Aug 17, 2007

Copy link to clipboard

Copied

No. You cannot create a floating palette in Photoshop. See the FAQ in the SDK.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 17, 2007 Aug 17, 2007

Copy link to clipboard

Copied

LATEST
Hi Tom, thanks for your reply. Actually I'm not asking about floating palette (which I actually created and there is no issues observed). I just need my automation (!) plugin entry point to be called with kPSDoIt ("Do It") selector action after menu item is chosen under Window menu. (like it works in case PSHelpMenu)

In the PIPL.r file that goes with SDK it states that

// Use PSPaletteMenu category to add a menu item on the Window (i.e., palette) menu.
// This is currently only enabled for automation plugins.
PSPaletteMenu ="**Palette**";

Is it documentation issue?

Regards,
Mac Developer

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines