>I am not used to seeing these blue buttons. From the screenshots you've it appears that your current VSCode project contains no debugging configurations; this would prevent successful debugging. Are you attempting to execute your local .jsx from within a different directory, than the one from within which it previously worked? You're not making any QE DOM calls, so app.enableQE() doesn't do anything, nor does it use the active sequence, so I'm not sure why they'd be relevant... Do you have the latest ExtendScript debugger installed? If so, you can use VSCode's "Run --> Add Configuration..." to add one. Here's my local "Run a script named test.jsx, in PPro beta" configuration:
{
"type": "extendscript-debug",
"request": "launch",
"name": "Beta",
"hostAppSpecifier": "premiereprobeta-25.0",
"script": "~/estk/test.jsx",
},
I open my "~/estk" directory in VSCode, select the Debug button (from the left edge of the VSCode screen), then "Run --> Start Debugging".
... View more