PTT評價

[軟體] 請問哪步錯了?

看板MAC標題[軟體] 請問哪步錯了?作者
mofassfox
(狐狸)
時間推噓 推:0 噓:0 →:12

簡體的時候都沒問題,切成繁體就抓不到設定裡的顯示器
主要是19行一直抓不到,請大大解惑

手機截圖請見諒
https://i.imgur.com/1IcBDgB.jpeg


on findLastTargetIndex(targetItem, itemList)
set lastIndex to 0
repeat with i from (count of itemList) to 1 by -1
if item i of itemList is targetItem then
set lastIndex to i
exit repeat
end if
end repeat
return lastIndex
end findLastTargetIndex

beep 1
beep 1
tell application "System Settings"
activate
delay 1
tell application "System Events"
tell process "System Settings"
click menu item "顯示器" of menu "顯示" of menu bar item "顯示" of menu bar 1
delay 0.3
tell group 1 of group 2 of splitter group 1 of group 1 of window "顯示器"
try
click pop up button "添加"
delay 0.3
-- 获取所有菜单项的名称
set menuItems to name of menu items of menu "添加" of pop up button "添加"
-- 通过名字查找要准确一些,这里去找最后一个名字的索引,因为如果 ipadpro 有
妙控键盘,就会出现两个名字,我们需要最后一个名字,第一个名字是连接键鼠的
set targetIndex to (my findLastTargetIndex("XXX‘s iPad", menuItems))

-- 点击目标菜单项
click menu item targetIndex of menu "添加" of pop up button "添加"
on error
delay 0.5
end try
end tell
end tell
end tell
end tell
delay 1
beep 1
tell application "System Settings" to quit

--

※ PTT 留言評論
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 111.250.101.58 (臺灣)

※ 文章網址:
https://www.ptt.cc/MAC/E.isUKZHbIKwCc

※ 編輯: mofassfox (111.250.101.58 臺灣), 12/23/2024 21:31:57

tyf9912/23 21:41顯示 添加 都是支語,你自己要依據Mac介面的用詞改掉

mofassfox12/23 21:42應該是添加的問題但不知道該換什麼

mofassfox12/23 21:44然後顯示不對的話我也不知道該換什麼了……

tyf9912/23 21:46你自己看看頂部選單有什麼字

mofassfox12/23 21:51指令詞彙裡找不到類似的……

tyf9912/23 22:07把那段砍了吧,一般我都這樣用 https://imgur.com/js7Qdds

tyf9912/23 22:10至於按鈕什麼的,你要用entire contents去找

mofassfox12/23 22:16這樣底下要全改,我沒有那麼強QQ

tyf9912/23 22:29https://imgur.com/PUap0km

tyf9912/23 22:29我不知道你那添加的按鈕是幹啥用的,你可從上面的回傳值找

mofassfox12/23 22:30這個是用來開機自動抓ipad當螢幕用的,我嘗試看看

mofassfox12/23 22:41嗯……我不會舉一反三QQ