Adobe Illustrator 加载插件时出错
Adobe Illustrator Error loading plugins
我正在学习 adobe illustrator CS4 sdk 包中提供的简单 Hello World 教程。
我在 Visual studio 2013 年按照所有步骤编写了 C++ 代码,它成功构建,没有任何错误,并生成了 2 个文件 *.aip 和 *.ilk。
现在教程说将插件二进制文件放在插画家的插件文件夹中。
它没有指定哪个文件是二进制文件(我假设是 *.aip 文件)和 illustrator 的插件路径(我认为这是路径 "C:\Program Files (x86)\Adobe\Adobe Illustrator CS4\Plug-ins")
现在,当我启动 adobe illustrator 应用程序时,在启动时出现以下错误。
加载插件时出错。
*.aip
谁能告诉我哪里出了问题。路径错了吗?文件错了吗?还是我遗漏了一些明显的步骤?
我找到了解决方案。问题是该教程是特定于 32 位系统的,没有提到我们必须为 运行 我们的 64 位插件所做的 1 项更改。
我将 x64 平台添加到我的项目中。以下是步骤:
Select "Build | Configuration Manager..." 菜单项。
在 "Configuration Manager" 对话框中,从 "Active solution platform" 下拉列表中选择“”。
在 "New Solution Platform" 对话框中,应该已经在顶部下拉菜单中选择了 "x64",并且应该在 "Copy settings from:" 下拉菜单中选择了 "win32"(并且 "Create new project platforms" 复选框应被选中。单击确定,您现在可以使用 x64 平台构建 64 位版本。
Browse to this folder:
C:\Program Files\Adobe\Adobe Illustrator CS5\Support Files\Required
look for a duplicate ADMplugin.apl
file (probably named ADMplugin(1).apl
) and delete it.
AI should start normally.
I had the control panel.aip issue and this worked for me. I tracked down the problem by temporarily removing the plug-ins folder from this directory...
C:\Program Files\Adobe\Adobe Illustrator CS5
...then starting Illustrator. The program crashes on startup. When the crash report appears, looking at the content of crash report points to ADMplugin.apl
.
来源:http://www.techrepublic.com/forums/discussions/illustrator-cs5-error-loading-plugins/
我正在学习 adobe illustrator CS4 sdk 包中提供的简单 Hello World 教程。
我在 Visual studio 2013 年按照所有步骤编写了 C++ 代码,它成功构建,没有任何错误,并生成了 2 个文件 *.aip 和 *.ilk。
现在教程说将插件二进制文件放在插画家的插件文件夹中。
它没有指定哪个文件是二进制文件(我假设是 *.aip 文件)和 illustrator 的插件路径(我认为这是路径 "C:\Program Files (x86)\Adobe\Adobe Illustrator CS4\Plug-ins")
现在,当我启动 adobe illustrator 应用程序时,在启动时出现以下错误。
加载插件时出错。 *.aip
谁能告诉我哪里出了问题。路径错了吗?文件错了吗?还是我遗漏了一些明显的步骤?
我找到了解决方案。问题是该教程是特定于 32 位系统的,没有提到我们必须为 运行 我们的 64 位插件所做的 1 项更改。
我将 x64 平台添加到我的项目中。以下是步骤:
Select "Build | Configuration Manager..." 菜单项。
在 "Configuration Manager" 对话框中,从 "Active solution platform" 下拉列表中选择“”。
在 "New Solution Platform" 对话框中,应该已经在顶部下拉菜单中选择了 "x64",并且应该在 "Copy settings from:" 下拉菜单中选择了 "win32"(并且 "Create new project platforms" 复选框应被选中。单击确定,您现在可以使用 x64 平台构建 64 位版本。
Browse to this folder:
C:\Program Files\Adobe\Adobe Illustrator CS5\Support Files\Required
look for a duplicate
ADMplugin.apl
file (probably namedADMplugin(1).apl
) and delete it.AI should start normally.
I had the control panel.aip issue and this worked for me. I tracked down the problem by temporarily removing the plug-ins folder from this directory...
C:\Program Files\Adobe\Adobe Illustrator CS5
...then starting Illustrator. The program crashes on startup. When the crash report appears, looking at the content of crash report points to
ADMplugin.apl
.
来源:http://www.techrepublic.com/forums/discussions/illustrator-cs5-error-loading-plugins/