0
from appscript import *
ps = app("Adobe Photoshop CS5")
s = ps.current_document.save
s._labelledargterms
給出:的Python appscript錯誤:OSERROR:-1700,不能做一些數據的期望類型
{'appending': 'DcXt',
'as_': 'fltp',
'copying': 'SaCp',
'in_': 'kfil',
'with_options': 'FmOp'}
我不能完全用什麼手段kfil
。有人可以解釋嗎?
我試圖做到以下幾點:
import mactypes
f = mactypes.File("foo.jpg")
s(as_=k.JPEG, in_=f)
這給了我:
CommandError: Command failed:
OSERROR: -1700
MESSAGE: Can't make some data into the expected type.
COMMAND: app(u'/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app').current_document.save(in_=mactypes.File(u'/Users/az/foo.jpg'), as_=k.JPEG)