Answered
Adobe Bridge scritp - Open path/folder in Bridge using javascript
At the end of the script execution, I need to open the created folder in Bridge.
Opens the selected folder, file:
app.document.chooseMenuItem('Open');Opens a folder in the system explorer:
Folder(myPath).execute();Opens a folder in a new Bridge window:
app.browseTo(myPath);How can I open the folder/path in Bridge in the same window using javascript?
