Hello,
For Mac Os X Terminal I am trying to launch Dreamweaver by below code:
open -b "com.adobe.Dreamweaver"
But it does not help.
What is the correct bundle identifier for Dreamweaver?
Thanks.
Hello,
For Mac Os X Terminal I am trying to launch Dreamweaver by below code:
open -b "com.adobe.Dreamweaver"
But it does not help.
What is the correct bundle identifier for Dreamweaver?
Thanks.
Have a look at the Info.plist
file in the Contents
folder of that application.
There you find something like:
<key>CFBundleIdentifier</key>
<string>com.apple.TextEdit</string>
See also How to Find a Bundle Identifier.
open -a "Dreamweaver CS 5"
would work. If you really need to know the bundle identifier, do the following:
$ cd /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/
$ ./lsregister -dump | grep -i adobe
lsregister
is a nice utility to know, if you need to access the LaunchServices
database sometimes.