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

CEP Panel not showing up in Illustrator 2025

New Here ,
May 18, 2025 May 18, 2025

Hi,
we are developing an internal CEP extension panel for Adobe Illustrator 2025 (Windows, Czech localization). We followed all the recommended steps:

  • The panel folder is located in:
    C:\Users\<user>\AppData\Roaming\Adobe\CEP\extensions\cz.tvoje.panel.illustrator

  • The manifest file is present and references index.html and index.js

  • We have added PlayerDebugMode = 1 in the registry under:
    HKEY_CURRENT_USER\Software\Adobe\CSXS.12

  • The index.html and all paths are valid

  • We tried both the user-level and program files CEP folders

  • The panel does not appear under Window > Extensions (only "Libraries" is listed)

Is there anything new in Illustrator 2025 that prevents CEP panels from showing up?
Is CEP still supported in AI 2025 or do we need to migrate to UXP now?

Thank you very much for any advice or guidance!

TOPICS
Scripting
229
Translate
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
Community Expert ,
May 18, 2025 May 18, 2025

@petr_5255 -Yes, the CEP panel still works in Illustrator. Could you please share the manifest file content?"

Best regards
Translate
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 ,
May 20, 2025 May 20, 2025
LATEST

Yes, here is the manifest.xml content for the panel:

<?xml version="1.0" encoding="UTF-8"?>
<ExtensionManifest Version="7.0" ExtensionBundleId="cz.tvoje.panel" ExtensionBundleVersion="1.0" ExtensionBundleName="Illustrator GUI Panel">
<ExtensionList>
<Extension Id="cz.tvoje.panel.illustrator" Version="1.0"/>
</ExtensionList>

<ExecutionEnvironment>
<HostList>
<Host Name="ILST" Version="[16.0,99.0]"/>
</HostList>
<LocaleList>
<Locale Code="All"/>
</LocaleList>
<RequiredRuntimeList>
<RequiredRuntime Name="CSXS" Version="6.0"/>
</RequiredRuntimeList>
</ExecutionEnvironment>

<DispatchInfoList>
<Extension Id="cz.tvoje.panel.illustrator">
<DispatchInfo>
<Resources>
<MainPath>index.html</MainPath>
<ScriptPath>index.js</ScriptPath>
<CEFCommandLine>
<Parameter>--enable-nodejs</Parameter>
</CEFCommandLine>
</Resources>
<Lifecycle>
<AutoVisible>true</AutoVisible>
</Lifecycle>
<UI>
<Type>Panel</Type>
<Menu>Illustrator GUI</Menu>
<Geometry>
<Size>
<Width>400</Width>
<Height>500</Height>
</Size>
</Geometry>
</UI>
</DispatchInfo>
</Extension>
</DispatchInfoList>
</ExtensionManifest>

Translate
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