我正在尝试从 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 命令起作用?