我是Automator和AppleScript的新手。我看到了一些关于自定义Dock的链接,但它们似乎比我需要(或理解)做得更多。有没有快速,简短的方法来做到这一点?
答案 0 :(得分:1)
您可以通过AppleScript设置Dock放大倍率,如下所示:
tell application "System Events"
tell dock preferences
set properties to {magnification:true, magnification size:1.5}
end tell
end tell