[Q] Automatically launching Illustrator 29.1 from Visual Studio Code Universal for MacOSX?
Dear All,
I recently switched from Mac Intel to Apple Silicon. I'm trying to launch Illustrator automatically from Visual Studio Code Universal (so Rosetta). However, I keep getting a popup asking me to specify which Adobe app to connect to. I'm sure I had it working on Intel without having to click a popup menu. My script runs fine otherwise, but I would like it to run without the popup.
Can anyone help? My Illustrator version is 29.1.
launch.json:
{
"type": "extendscript-debug",
"request": "attach",
"name": "Run in Transient Engine",
"hostAppSpecifier": "illustrator-29.064",
"engineName": "transient",
"hiddenTypes": ["builtin"]
}keybindings.json:
[
{
"key": "cmd+r",
"command": "extension.extendscript-debug.evalInAttachedHost",
"args": {
"debugLevel": 1,
"bringToFront": false,
"hostAppSpecifier": "illustrator-29.064"
}
},
{
"key": "cmd+shift+r",
"command": "extension.extendscript-debug.evalInAttachedHost",
"args": {
"debugLevel": 1,
"bringToFront": true,
"hostAppSpecifier": "illustrator-29.064"
}
}
]
