如何使用adobe扩展构建器为adobe prelude创建模板

时间:2017-09-06 12:22:52

标签: adobe extension-builder3

我是adobe扩展构建器的新手。我想使用adobe扩展构建器来进行adobe前奏。我已经在spring工具套件中安装了adobe prelude并配置了adobe扩展构建器,我甚至创建了一个.zxp文件,但我无法在adobe前奏中使用该扩展。 这是我遵循的链接  http://127.0.0.1:57868/help/index.jsp?nav=%2F3_0

即使对我来说,adobe prelude中也没有启用扩展选项。Click here to view the adobe prelude screen-shot

<?xml version="1.0" encoding="UTF-8"?>
<ExtensionManifest Version="4.0" ExtensionBundleId="com.example.AdobeDemo" 
ExtensionBundleVersion="1.0.0"
    ExtensionBundleName="AdobeDemo" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ExtensionList>
    <Extension Id="com.example.AdobeDemo.extension1" Version="1.0" />
</ExtensionList>
<ExecutionEnvironment>
    <HostList>
        <Host Name="PRLD" Version="[2.0,2.9]" />
    </HostList>
    <LocaleList>
        <Locale Code="All" />
    </LocaleList>
    <RequiredRuntimeList>
        <RequiredRuntime Name="CSXS" Version="4.0" />

    </RequiredRuntimeList>
</ExecutionEnvironment>
<DispatchInfoList>
    <Extension Id="com.example.AdobeDemo.extension1">
        <DispatchInfo >
            <Resources>
            <MainPath>./index.html</MainPath>
            <ScriptPath>./AdobeDemo.jsx</ScriptPath>
            </Resources>
            <Lifecycle>
                <AutoVisible>true</AutoVisible>
            </Lifecycle>
            <UI>
                <Type>Panel</Type>
                <Menu>AdobeDemo</Menu>
                <Geometry>
                    <Size>
                        <Height>200</Height>
                        <Width>200</Width>
                    </Size>
                </Geometry>
            </UI>
        </DispatchInfo>
    </Extension>
</DispatchInfoList>
</ExtensionManifest>

1 个答案:

答案 0 :(得分:0)

看起来您的Expand.xml的manifest.xml具有错误的语法,可能导致扩展菜单被禁用。开始扩展开发的更好方法是查看https://github.com/Adobe-CEP/CEP-Resources处的示例和文档。您可以使用其中一个示例扩展作为bootstrapper来开始您的工作。