我在这里阅读过,但我没有找到任何解决这个愚蠢问题的方法。BBEdit 是最著名的 Mac 文本编辑器,它应该是可广泛编写脚本的,实际上也是如此。但是,.. 使用 Applescript 我试图执行菜单命令,但根本没有办法。或者更好,如果我另外尝试:
tell application "System Events"
tell process "BBEdit"
tell menu bar 1
tell menu bar item "Markup"
tell menu "Markup"
tell menu item "CSS"
tell menu "CSS"
click menu item "Format"
end tell
end tell
end tell
end tell
end tell
end tell
end tell
或者还有:
tell application "System Events" to keystroke "+" using {command down, shift down}
它们都可以从编辑器运行脚本,但是一旦我保存脚本并从 BBEdit 的 AS 菜单中选择它,它们就不起作用了。任何想法 ?谢谢。