Mac OS X - 以编程方式调整窗口大小

时间:2011-02-27 21:03:46

标签: cocoa macos

我想了解DivvyCinchSizeUp等应用如何调整/移动属于其他应用的窗口?我知道这可能涉及私有API。或者他们都使用AppleScript?那里有关于如何做的资源吗?

1 个答案:

答案 0 :(得分:7)

前后I wrote about using AppleScript to do just that。基本上,请执行以下操作:

tell application "MyApp"
    set the bounds of the first window to {x, y, width, height}
end tell