Running FrameMaker Scripts From Visual Studio I'm using Visual Studio (VS) to develop and test FrameMaker scripts. All works fine, but to test a script from inside Visual Studio I have to click F5 (Run > Start Debugging), then select the host application (FrameMaker 2020, ver 16.0) from a dropdown list of about a dozen apps. Is there a way to configure VS so script simply executes when I press F5. I'm guessing it has something to do with configurations, but I have no idea what change(s) to make to configure FrameMaker 2020 as the default. The settings.json currently reads:{
"editor.minimap.enabled": false,
"workbench.colorTheme": "Tomorrow Night Blue",
"launch": {
"configurations": [
{
"type": "extendscript-debug",
"request": "launch",
"name": "Launch Script in ExtendScript Engine"
}
]
}
}