标签: cocoa macos
我想了解Divvy,Cinch,SizeUp等应用如何调整/移动属于其他应用的窗口?我知道这可能涉及私有API。或者他们都使用AppleScript?那里有关于如何做的资源吗?
答案 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