Xcode Applescript Terms List

Can someone please give me a list of xcode terms available for use in xcode user scripts?

Sample scripts start with the line:

using terms from the Xcode application

- this means that there is a set of terms related to xcode.

My googling hasn't changed anything.

Thank you Adam.

+4
source share
2 answers

Whenever you see tell whatever or using terms from application whatever , look for whatever.sdef to document concepts that he understands. /Applications/Utilities/AppleScript Editor.app will help you with this (File> Open Dictionary).

+2
source

Open the AppleScript editor and select Window-> Library. A list of applications will appear. Double-click the application in this list to open its AppleScript API.

If the required application (Xcode in this case) is not in the library window, click the "+" sign at the top and tell the library where Xcode lives. This should cause Xcode to appear in the list.

+2
source

Source: https://habr.com/ru/post/1345607/


All Articles