Skip to main content
Participant
May 18, 2025
Question

CEP Panel not showing up in Illustrator 2025

  • May 18, 2025
  • 1 reply
  • 624 views

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!

1 reply

Charu Rajput
Community Expert
Community Expert
May 18, 2025

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

Best regards
petr_5255Author
Participant
May 20, 2025

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>