我想找到一种如何通过键盘快捷键禁用/启用热角的方法。 我找到了这个苹果脚本
property theSavedValues : {"Mission Control", "Desktop", "Dashboard", "Launchpad"} -- for example
tell application "System Preferences"
set current pane to pane id "com.apple.preference.expose"
tell application "System Events"
tell window "Mission Control" of process "System Preferences"
click button "Hot Corners…"
tell sheet 1
tell group 1
set theCurrentValues to value of pop up buttons
if theCurrentValues is {"-", "-", "-", "-"} then
repeat with i from 1 to 4
set thisValue to item i of theSavedValues
tell pop up button i
click
click menu item thisValue of menu 1
end tell
end repeat
else
copy theCurrentValues to theSavedValues
repeat with i from 1 to 4
tell pop up button i
click
click last menu item of menu 1
end tell
end repeat
end if
end tell
click button "OK"
end tell
end tell
end tell
quit
end tell
所以我使用这个苹果脚本在Automator中创建了一个服务,将它附加到键盘快捷键,每当我在automator中运行这个脚本时,它都有效但是当我点击快捷方式时,我得到“动作”运行AppleScript“遇到错误”。 有什么想法可以解决这个问题吗? 谢谢
答案 0 :(得分:8)
哦,天哪,我觉得这么愚蠢,唯一需要的是授予我使用此服务的app的访问权限:)。
您可以转到(Mac OS)设置 - >执行此操作。安全和隐私 - >辅助功能 - >并找到运行该服务的应用程序。 (就我而言,它是Finder。)