【发布时间】:2015-02-24 03:36:40
【问题描述】:
请解释如何让 applescript 理解我想选择活动页面上的所有图像(在我的情况下将是一个),以调整图像大小并使框架适合内容。
tell application "Adobe InDesign CS6"
set myPagecount to count pages of active document
repeat with i from 1 to myPagecount
set thisImage to select every graphic frame of page i
tell content of thisImage
set height to "11in"
set width to "8.5in"
fit given frame to content
end tell
end repeat
end tell
这显然行不通……
谢谢!
【问题讨论】:
标签: resize applescript adobe-indesign