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

Error loading plugins

Community Beginner ,
Mar 17, 2020 Mar 17, 2020

Hi,

I am developing illustrator plugin from AI-SDK2020 and able to build plugin, while testing we are getting error message on launching illustrator cc 2020. We are only getting this issue on integrating AI-SDK2020. any suggestion?. 

TOPICS
SDK , Third party plugins
1.8K
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 ,
Mar 18, 2020 Mar 18, 2020

The Pipl changed in CC2020. If you never add the pipl tool, you need to add it like below or remake your project from 2020's template project.

 

スクリーンショット 2020-03-19 13.04.54.pngexpand image

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
Community Beginner ,
Apr 22, 2020 Apr 22, 2020

I have added pipl tool as well and it still showing Error loading plugins but plugins is recognized on system info wizard.

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
Community Beginner ,
Apr 22, 2020 Apr 22, 2020

could you tell what platform you are using, and what the version of Illustrator is.

Perhaps a screenshot of the error would help too

 

Frank

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
Community Beginner ,
Apr 24, 2020 Apr 24, 2020

2020-04-24_13-28-07.jpgexpand image2020-04-24_13-13-22.jpgexpand image

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
Community Beginner ,
Apr 24, 2020 Apr 24, 2020

And this is my python cmmand to create pipl file

create_pipl.py -input "[{\"name\":\"My_Illustrator_2020_x64\",\"entry_point\":\"PluginMain\"}]"

 

Due to "Error on loading plugins" my breakpoint doesn't hit to "entry_point"

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
Community Beginner ,
Apr 24, 2020 Apr 24, 2020

From the screenshot I can see that you try to load the CC2020 plugin into an AI2019, and that does not work

The binary model in AI changed between 2019 and 2020, so plugins build with (e.g.) SDK2017 work in AI2017 AI2018 and AI2019, but not in AI2020, and vice versa, plugins build with SDK2020 only run correctly in AI2020

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
Community Beginner ,
Apr 24, 2020 Apr 24, 2020

2020-04-24_14-14-03.jpgexpand image

 

I am using AI 2020, 

 

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
Community Beginner ,
Apr 24, 2020 Apr 24, 2020

Indeed, sorry, it is 2020.

 

But the screenshot you added from Visual Studio contained a reason why your plugin was not loaded, but it was not visible in the screenshot. could you share that info?

 

Frank

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
Community Beginner ,
Apr 24, 2020 Apr 24, 2020

Module was built without symbols.

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
Community Beginner ,
Apr 24, 2020 Apr 24, 2020
LATEST

I would suggest to try the following:

- try a debug build first. Like that it is less probably that your compiler throws away code that is needed for loading

- remove (temporary) older SDK from your computer. also remove older versions of your plugin. As such you can be certain that you are really

  compiling with the 2020 SDK

 

Frank

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