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

Outbound plugin not gets loaded on mac

New Here ,
Jan 07, 2011 Jan 07, 2011

Copy link to clipboard

Copied

Hi

I am using adobe photoshop sdk CS5 on mac 10.6 snow leopard, I've build the outbound sample and copied the plugin to the import-export plugin folder. But when i am launching the photoshop application outbound menu is not showing under File->Export neither its about box.

What may be reason for this behaviour?

Thanks

TOPICS
SDK

Views

713

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 ,
Jan 10, 2011 Jan 10, 2011

Copy link to clipboard

Copied

any suggestion

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 ,
Jan 10, 2011 Jan 10, 2011

Copy link to clipboard

Copied

LATEST

I would double check the PiPL property for the entrypoint. I think I had a bunch of them wrong in the early drops of the SDK and I might still have that one wrong. Double check against a plug-in that is working for you. Here is the one from Dissolve:

#ifdef __PIMac__

  #if (defined(__i386__))

    CodeMacIntel32 { "PluginMain" },

  #endif

  #if (defined(__x86_64__))

    CodeMacIntel64 { "PluginMain" },

  #endif

#else

  #if defined(_WIN64)

    CodeWin64X86 { "PluginMain" },

  #else

    CodeWin32X86 { "PluginMain" },

  #endif

#endif

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