2

我正在尝试从 OS X 上的 Python 以编程方式移动 Windows。

我在 Stackoverflow 上找到了一个 AppleScript 片段,它可以做到这一点,但我想用 Python 或另一种“真正的”脚本语言来做。

这是我的 Python 脚本,它不起作用。我在每个命令下面写了打印命令的输出。

#!/usr/bin/python

from Foundation import *
from ScriptingBridge import *

app = SBApplication.applicationWithBundleIdentifier_("com.apple.SystemEvents")

finderProc = app.processes().objectWithName_("Finder")

print finderProc
# <SystemEventsProcess @0x74b641f0: SystemEventsProcess "Finder" of application "System Events" (29683)>

finderWin = finderProc.windows()[0]

print finderWin
# <SystemEventsWindow @0x74b670e0: SystemEventsWindow 0 of SystemEventsProcess "Finder" of application "System Events" (29683)>

print finderWin.name()
# Macintosh HD

finderWin.setBounds_([[20,20],[100,100]])
# no visible result

finderWin.setPosition_([20,20])

最后一个命令 (setPosition_) 崩溃,但出现以下异常。

Traceback (most recent call last):
  File "/Users/mw/Projekte/Python/winlist.py", line 17, in <module>
    finderWin.setPosition_([20,20])
AttributeError: 'SystemEventsWindow' object has no attribute 'setPosition_'

如何使 setBounds 命令起作用?

4

2 回答 2

3

您不必通过系统事件来做到这一点(我怀疑这会起作用)。相反,直接在 Finder 应用程序上执行此操作:

from ScriptingBridge import *

app = SBApplication.applicationWithBundleIdentifier_("com.apple.Finder")
finderWin = app.windows()[0]
finderWin.setBounds_([[100,100],[100,100]])
finderWin.setPosition_([20,20])

您也不需要 Foundation 导入。

于 2013-05-16T23:33:38.787 回答
2

如果您想通过 Python 与 OS X 的辅助功能 API 进行交互,请尝试atomac。System Events 只是围绕各种系统 API 的 AppleScriptable 包装器,但 PyObjC 和其他 Python 库已经为您提供了对系统 API 的广泛访问,而无需处理任何 AS/SB 废话。

--

ps 您可能需要在“系统偏好设置”的“辅助功能”窗格中启用“辅助设备”选项,否则大多数辅助功能将不可用。

于 2013-05-18T23:17:00.443 回答