如何使用AppleScript将窗口移动到某个桌面?

时间:2012-03-19 17:53:32

标签: applescript

我在桌面1(OS X Lion)上有一个应用程序/窗口,我想将它移到桌面3.有关如何执行此操作的任何见解?没什么大不了的,但如果可能的话,我想确保有3个,只有3个桌面可用。

2 个答案:

答案 0 :(得分:1)

This answer应提供有关如何安置应用程序的线索,特别是......

tell application "System Events"
    set x to application bindings of spaces preferences of expose preferences
    set x to {|com.apple.textedit|:4} & x  -- Have TextEdit appear in space 4
    set application bindings of spaces preferences of expose preferences to x
end tell

我想移动一个窗口并没有太大的不同。

答案 1 :(得分:0)

使用键盘快捷键切换到不同的桌面时,移动窗口是有效的。

使用鼠标,单击并按住标题栏,就像在桌面上移动窗口一样,然后按ctrl + 3。必须映射Ctrl + 3才能在键盘快捷键界面中移动到桌面3。 Ctrl + Right两次也可以。然后释放鼠标按钮。