0
我試圖選擇OSX中的某個終端選項卡並向其發送擊鍵。但是OSX 10.8.4中的終端似乎沒有爲標籤的自定義標題存儲「終端」,即使您爲檢查員設置了自定義標題。有任何想法嗎?這是我想用它來選擇合適的標籤代碼:無法檢索OSX終端選項卡的自定義標題
tell application "Terminal"
set allWindows to number of windows
repeat with i from 1 to allWindows
set allTabs to number of tabs of window i
repeat with j from 1 to allTabs
if custom title of tab j of window i contains "blah" then
set frontmost of window i to true
set selected of tab j of window i to true
end if
end repeat
end repeat
end tell
謝謝,但似乎沒有工作。 – cayblood
@CarlYoungblood啊,在這種情況下,我會建議查看AppleScript庫並查看是否可以找到正確的語法。 – scohe001