使用「遠端桌面」的 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」是包含其他物件(此例中為「computer」)的物件,且具有像「id」和其「name」的內容。在查詢時,此物件會傳回內容的值(如指出會以 Unicode text 顯示),但你無法從工序指令中更改「id」(其 r/o 的標籤表示唯讀)。此物件在工序指令中可由「動詞」(verb)或訊息來執行。
指令詞彙也包含「動詞」(verb)或訊息。這些指令詞彙中的動詞即是執行物件的指令。例如,在「遠端桌面」指令詞彙中,有一個名為「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 編寫程式」。
選擇「檔案」>「打開指令詞彙」,然後選擇「遠端桌面」。