Script to open a folder using AppleScript
I have a Filemaker Database and have been using AppleScript to open a Folder with Bridge forever.
For along time this script worked niecly:
set openFolder to "app.browseTo( '" & $path & "');"
tell application ("Adobe Bridge")
activate
do javascript openFolder
end tell
When "do javascript" stoped working I used this quick fix instread:
tell application "Adobe Bridge"
activate
open $path
end tell
Since Adobe Bridge 2024 this only works if a Bridge window is already open…
Can someone point me in the right direction?
