Estoy intentando automatizar la construcción de un documento y estoy buscando una manera de insertar imágenes en un documento de Pages con AppleScript. Por ejemplo:
tell application "Pages"
make new document
tell document 1
tell body text
make new paragraph at end with data ¬
"another paragraph" with properties {paragraph style:"Body"}
make new image at end with properties ??? :(
end tell
end tell
end tell
Nada de lo que he probado hasta ahora funciona: "crear un gráfico nuevo", "crear una imagen nueva", "insertar datos de imagen", etc. No estoy descartando la posibilidad de que no sea posible (he usado AppleScript durante el tiempo suficiente, por lo que no sería una sorpresa), pero sería bueno si pudiera ser persuadido para que funcione.
Solución
La solución de@ jackjr300 funciona muy bien. Finalmente fui con este encantamiento:
set fname to "/Users/me/Desktop/picture.png"
set thisImage to POSIX path of fname
tell application "Pages"
tell document 1
tell body text
make new paragraph at end with data "another paragraph" with properties {paragraph style:"Body"}
make new image at after last paragraph with properties {image data:thisImage}
end tell
end tell
end tell