我最近搬到了一个新的工作站,不能使用VSCode和Extendscript Debugger来定位Adobe应用程序。workstaton以前安装了CS6,但现在我们使用CC。我正在使用Ilustrator 2019。
我可以针对Illustrator:
Illustrator 2019显示在底部的栏中:
AI 2019 looks like it is the target
但是,当我运行DeBugger时,它告诉我CS6没有运行,我不能运行CC2019?
使用MacOS 10.12.6 VSCode 1.50.1 ExtendscriptDebugger 1.1.2
发布于 2020-11-09 11:06:29
我认为您需要检查launch.json文件来设置targetSpecifier版本号。
例如,对于After Effects 2020,我使用此配置进行调试。此对象位于launch.json文件的configruations数组中:
{
"type": "extendscript-debug",
"request": "launch",
"name": "My app debug",
"program": "${workspaceFolder}/Scripts/source.jsx",
"trace" : true,
"targetSpecifier": "aftereffects-17.0",
"engineName": "main",
"preLaunchTask": "debug-my-app",
"dontBreakOnErrors" : true
}因此,您可能需要找出调试器所针对的Illustrator版本的targetSpecifier的值。
https://stackoverflow.com/questions/64702140
复制相似问题