在 OSX snow leopard 中,如何仅使用键盘将窗口移动到另一个显示器?以及如何设置主显示器,以便每次启动应用程序时,它都会默认使用该设置的显示器?
谢谢
答案1
尝试尺寸- 它允许通过按键操作窗口。漂亮的小应用程序。
答案2
我一直在尝试自己解决这个问题:参见此处类似问题。我能做的最好的就是使用 AppleScript 设置应用程序前窗口的边界,以便将其放在第二台显示器上set bounds of front window to {2460, 256, 3299, 736}
。
就我而言,我使用 Quicktime 从 iTunes 启动电影,因此使用 AppleScript 开始是有意义的,但它可能不适合您:
tell application "iTunes"
set sel to item 1 of selection
set loc to (get location of sel)
end tell
tell application "QuickTime Player"
open loc
activate
set bounds of front window to {2460, 256, 3299, 736}
present front document
play front document
end tell