Replies: 1 comment 1 reply
-
I don't know if it's all about your changes, but I wonder if it could be related to this #30. What if you try running version 1.8? It's weird enough that v.1.9 isn't working on Windows specifically, perhaps the debugger lands on the same bug... If it's unrelated, I might not have anything to offer since when it comes to Adobe script debugging, I only use |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've made some modifications to the script and I'm trying to debug the issue. The problem is that VSCode debug dies at
app.open( mockupPSD.file );
when the debugger is executed because it can't find the mockup files. The "mockupPSD.file" shows the relative path as expected and traverses upward as expected from settings config. But I can't get the debugger past opening the mockup file.When I drop the script in PS, it runs and does open the file, but dies shortly there after. Currently debugging with alerts, but hoping someone here can help with VSCode config. I'm assuming it's a context issue where the debugger is executing versus when it works fine in PS.
I've tried
"cwd": "${workspaceFolder}"
,"script": "${file}"
, and some otherlaunch.json
config settings, but those have failed. I'm running a Mac M1 with VSCode emulation in Rosetta and PS 2024.Beta Was this translation helpful? Give feedback.
All reactions