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

I can't install a custom extension on Photoshop CC 2015, help!

Participant ,
Sep 10, 2015 Sep 10, 2015

Copy link to clipboard

Copied

Hi there,

I've developed several small plugins for Photoshop CC 2014 and as I was developing them I would just add them to the CEP folder for testing and update the manifest file and they would appear on Photoshop.

But I updated to CC 2015 and now I've done the same process, but the extensions don't show up in Photoshop. Am I missing something?

Can anyone help me put this right?

Thanks in advance

TOPICS
Actions and scripting

Views

618

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

correct answers 1 Correct answer

Participant , Sep 11, 2015 Sep 11, 2015

Thanks people, I just found that I hadn't reset the plist cache on the mac. This post helps on this: osx - How do I close cfprefsd so that I can update Flash on mavericks - Ask Different

Votes

Translate

Translate
Adobe
Adobe Employee ,
Sep 10, 2015 Sep 10, 2015

Copy link to clipboard

Copied

Hi,

PS CC 2015 doesn't support all the plugins.

Also you can try moving the same plugins from PS CC 2014 to PS CC 2015.

~Jitendra

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
Participant ,
Sep 10, 2015 Sep 10, 2015

Copy link to clipboard

Copied

I'm just starting to develop a new plugin and added the folder to the CEP folder. My folder is called "com.myscript.extension" and I have the following manifest:

<?xml version="1.0" encoding="UTF-8"?>

<ExtensionManifest ExtensionBundleId="com.myscript.extension" ExtensionBundleName="MyScript" ExtensionBundleVersion="1.0" Version="5.0">

    <ExtensionList>

        <Extension Id="com.myscript.extension" Version="1.0"/>

    </ExtensionList>

    <ExecutionEnvironment>

        <HostList>

            <Host Name="PHXS" Version="[16.0,16.9]"/>

            <Host Name="PHSP" Version="[16.0,16.9]"/>

        </HostList>

        <LocaleList>

            <Locale Code="All"/>

        </LocaleList>

        <RequiredRuntimeList>

            <RequiredRuntime Name="CSXS" Version="6.0"/>

        </RequiredRuntimeList>

    </ExecutionEnvironment>

    <DispatchInfoList>

        <Extension Id="com.myscript.extension">

            <DispatchInfo>

                <Resources>

                    <MainPath>./index.html</MainPath>

                    <ScriptPath>./source.jsx</ScriptPath>

                </Resources>

                <UI>

                    <Type>Panel</Type>

                    <Menu>Extension</Menu>

                    <Geometry>

                        <MinSize>

                            <Height>400</Height>

                            <Width>400</Width>

                        </MinSize>

                        <Size>

                            <Height>400</Height>

                            <Width>400</Width>

                        </Size>

                    </Geometry>

                    <Icons>

                        <Icon Type="Normal">./icons/dark.png</Icon>

                        <Icon Type="RollOver">./icons/dark.png</Icon>

                        <Icon Type="DarkNormal">./icons/light.png</Icon>

                        <Icon Type="DarkRollOver">./icons/light.png</Icon>

                    </Icons>

                </UI>

            </DispatchInfo>

        </Extension>

    </DispatchInfoList>

</ExtensionManifest>

What am I doing wrong?

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 ,
Sep 11, 2015 Sep 11, 2015

Copy link to clipboard

Copied

Moving to Photoshop Scripting forums for help

-Mandhir

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
Advocate ,
Sep 11, 2015 Sep 11, 2015

Copy link to clipboard

Copied

Hi,

try changing Version="6.0" in line 02 and report back.

Davide Barranca

---

www.davidebarranca.com

www.cs-extensions.com

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
Participant ,
Sep 11, 2015 Sep 11, 2015

Copy link to clipboard

Copied

LATEST

Thanks people, I just found that I hadn't reset the plist cache on the mac. This post helps on this: osx - How do I close cfprefsd so that I can update Flash on mavericks - Ask Different

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