Thank you for the update. I am still new to programming and especially VSCode and do not know how to reconfigure my launch.json to gain functionality I had in v1.1.2. I've read the "Details" section most of which is still over my head. I realize all of this is elementary to a true programmer, but I (and I am guessing others in this forum) are illustrators turned scripters and it can be daunting, intimidating and descouraging at time. Can someone show how this launch.json should be changed to function in v2.0 as it did in v1.1.2? I was able to get v2 to run a script in Illustrator but it does not stop at a set breakpoint now. {
"version": "0.2.0",
"configurations": [
{
"type": "extendscript-debug",
"request": "launch",
"name": "Illustrator",
"dontBreakOnErrors": true,
"program": "${file}",
// "targetSpecifier": "illustrator-24.064",
"targetSpecifier": "illustrator-26.064",
"stopOnEntry": false
},
]
}
... View more