无法使用Applescript激活Atom

时间:2018-01-12 07:59:45

标签: applescript atom-editor

我正在尝试切换到Atom并使用基本的Applescript调整窗口大小:

tell application "Atom"
    activate
    set bounds of front window to {0, 495, 1680, 1050}
end tell

如果Atom没有打开,它会启动,但是脚本会抛出错误并且不会调整窗口大小:

An error of type -10810 has occurred.

如果Atom已经运行,它只会抛出一个错误,甚至不会切换到Atom:

"Atom Helper got an error: Application isn’t running."

1 个答案:

答案 0 :(得分:0)

哦,好吧我只是注意到,由于某些原因,每当我运行脚本时它会自动将“Atom”更改为“Atom Helper”。因此将其更改为引用完整路径"/Applications/Atom.app,现在它完全符合我的要求。

tell application "/Applications/Atom.app"
    activate
    set bounds of front window to {0, 495, 1680, 1050}
end tell