我遇到了一个简单的脚本部分问题,我想获得系统事件的属性dock preferences
。我有以下内容:
tell application "System Events"
tell appearance preferences
set ap_prefs to (get the properties)
set ap_prefs to the properties
end tell
set a_pref to the properties of appearance preferences
-- Error Part
tell dock preferences
set d_prefs to (get the properties)
end tell
set d_pref to the properties of dock preferences
end tell
在上面的代码中,我以上面显示的所有方式访问appearance preferences
,但不是dock preferences
。它给出了错误error "System Events got an error: AppleEvent handler failed." number -10000
。
那是怎么回事,为什么只给出码头错误? Here @dj_bazzie_wazzie说:
错误-10000 ...大部分时间它不是目标错误,而是命令不完整或括号错误使用。
但我无法弄清楚究竟是什么方法。我已经尝试了所有我能想到的,也为什么不抛出appearance preferences
的异常?
干杯
答案 0 :(得分:0)
此?
tell application "System Events" to get properties of dock preferences