我想創建一個AppleScript點擊菜單但我不能永遠使用我,這裏的腳本是什麼菜單我想:AppleScript的點擊菜單欄選項
ELEMENT :
Role : menu item
Title: "sign in As..."
Description :
Help:
Application: SytemUIServer
ELEMENT PATCH (starting at leaf element):
menu Item "Sign in As..." (menu item 12)
menu (menu 1)
menu extra (menu bar item 2)
menu bar (menu bar 1)
application "SystemUIServer"
所以我做了幾個腳本,上一次是
ignoring application responses
tell application "System Events" to tell process "SystemUIServer"
click menu bar item 2 of menu bar 1
end tell
end ignoring
do shell script "killall System\\ Events"
delay 0.1
tell application "System Events" to tell process "SystemUIServer"
tell menu item 12 of menu 1 of menu bar item 2 of menu bar 1
click
end tell
end tell
而且我剛剛認識到,位置可改變(有一段時間我想點擊的項目是菜單項12某個時候它的10等)
元: 作用:菜單項 標題: 「登錄爲...」 說明: 幫助: 應用:SytemUIServer 元PATCH(開始於葉元素): 菜單項目「登錄爲。 ..「(菜單項12) 菜單(菜單1) 菜單額外(菜單欄項目2) 菜單欄(菜單欄1) 應用程序」SystemUIServer「 –