使用 AppleScript,我想在Keynote 文档的每张幻灯片上更改特定图像的x和y位置。一旦 Keynote 运行并激活,下面的代码就可以工作了……
tell the front document
set the current slide to slide 1
tell the current slide
set thisImage to image 1
set position of thisImage to {10,10}
end tell -- current slide
end tell -- front document
……但它太脆弱了。如果我的图像不是第一个(“图像 1”),那么我将更改错误对象的位置。我在脚本字典或在线示例中找不到任何关于表达特定图像的对象说明符的内容。我尝试了几种变化,例如...
set thisImage to image with file name "my-file.png"
……无济于事。任何和所有的建议表示赞赏。谢谢!