Is it possible to ask an OSX application which applescript commands it responds to, and if so, how?
Is it possible to ask an OSX application which applescript commands it responds to,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to look at the Dictionary for an application to see all of the classes and commands the application supports. To get to an application’s Dictionary in the the Applescript Editor go to
File > Open Dictionary.... A list of all the applications that the OS knows supports Applescript will appear, but the OS won’t catch them all so you can use the Browse button. If an application doesn’t support Applescript, then it won’t be selectable in the dialog window.The caveat to this is that there are certain commands that an application is supposed to support but don’t, or an application may only support the minimum requirements. These are all very, very simple like
open,quit, etc. Your mileage may vary.