使用远程桌面 AppleScript 词典
你可以在脚本编辑器中查看远程桌面 AppleScript 词典。
每个可用脚本控制的 App 都包含 AppleScript 词典,即 App 可以理解的对象和信息列表。例如,在远程桌面词典中,存在名为“computer list”且具有此条目的对象:
computer list n [inh. item] : A list which holds computers.
ELEMENTS
contains computers; contained by application.
PROPERTIES
id (Unicode text, r/o) : The unique identifier (UUID) of the computer list.
name (Unicode text) : The name of the computer list.
“computer list”是包含其他对象(此处为“computers”)且拥有“id”和“name”等属性的对象。查询时,此对象可以返回属性值(按指定的 Unicode 文本),但不能从脚本中更改“id”(其标签 r/o 表示只读)。借助脚本中的“动词”或信息可以对此对象执行操作。
此词典还包含“动词”或信息。这些动词是词典中可对对象执行的命令。例如,在远程桌面词典中,存在名为“add”且具有此条目的动词:
add v : Add a computer to a task.
add computer : The computer.
to computer list : The computer list (or task) to add the computer to.
此条目告诉你动词可以执行的操作及执行方式。此条目表示远程桌面可以将指定电脑添加到电脑列表。对象“computer”和“computer list”正在由“add”执行操作。
打开 AppleScript 编辑器 。
选取“文件”>“打开词典”,然后选取“远程桌面”。