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

After upgrade to 19.2 HTML extension not working

Community Beginner ,
Dec 03, 2015 Dec 03, 2015

Hello

Upgraded to latested AI (19.2.0) and noticed that html extensions do not seem to be working

Even a very simple "hello world" pane is not displaying correctly

See below for the files. When selecting Window/Extensions/Hello World the first time, nothing happens. The second time the pane pops up but with empty content

All tips welcome!

Tx

Peter

index.html

<!doctype html>

<html>

  <body>

   <div style="color:red"> Hello world </div>

  </body>

</html>


CSXS/manifest.xml

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

<ExtensionManifest ExtensionBundleId="com.example.helloworld" ExtensionBundleName="Hello world" ExtensionBundleVersion="1.0" Version="4.0">

  <ExtensionList>

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

  </ExtensionList>

  <ExecutionEnvironment>

    <HostList>

      <Host Name="ILST" Version="[14.0,19.9]"/>

    </HostList>

    <LocaleList>

      <Locale Code="All"/>

    </LocaleList>

    <RequiredRuntimeList>

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

    </RequiredRuntimeList>

  </ExecutionEnvironment>

  <DispatchInfoList>

    <Extension Id="com.example.helloworld.extension">

      <DispatchInfo>

        <Resources>

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

        </Resources>

        <UI>

          <Type>Panel</Type>

          <Menu>Hello world</Menu>

          <Geometry>

            <Size>

              <Height>400</Height>

              <Width>400</Width>

            </Size>

          </Geometry>

        </UI>

      </DispatchInfo>

    </Extension>

  </DispatchInfoList>

</ExtensionManifest>


TOPICS
SDK
697
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
Enthusiast ,
Dec 31, 2015 Dec 31, 2015

What is the CEP revision you used?

Try to upgrade to the latest revision. -6 or 6.1)

Then update the manifest version value.

This should be better.

<ExtensionManifest ExtensionBundleId="com.example.helloworld" ExtensionBundleName="Hello world" ExtensionBundleVersion="1.0" Version="6.0">

Thomas.

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
Advocate ,
Jan 01, 2016 Jan 01, 2016

Don't you need to set AutoVisible to true to automatically show and hide using the menu?

        </Resources>

        <Lifecycle>

          <AutoVisible>true</AutoVisible>

        </Lifecycle>

        <UI>

          <Type>Panel</Type>

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
Participant ,
Jan 09, 2016 Jan 09, 2016

Try changing the value:

<ExtensionManifest ExtensionBundleId="com.example.helloworld" ExtensionBundleName="Hello world" ExtensionBundleVersion="1.0" Version="5.0">

<HostList>

<Host Name="ILST" Version="18.0" />

</HostList>

<RequiredRuntimeList>

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

</RequiredRuntimeList>

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 25, 2016 May 25, 2016
LATEST

Set these property

  • On Mac, open the file ~/Library/Preferences/com.adobe.CSXS.4.plist and add a row with key PlayerDebugMode, of type String, and value 1.
  • On Windows, open the registry key HKEY_CURRENT_USER/Software/Adobe/CSXS.4 and add a key named PlayerDebugMode, of type String, and value 1.

It will show the extension in Illustrator 19.2 version

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