Sto cercando di automatizzare la costruzione di un documento e sto cercando un modo per inserire immagini in un documento di Pages con AppleScript. Ad esempio:
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
Niente di ciò che ho provato fino ad ora funziona: "crea nuovo grafico", "crea nuova immagine", "inserisci dati immagine" e così via. Non escludo la possibilità che non sia possibile (ho usato AppleScript abbastanza a lungo, quindi non sarebbe una sorpresa), ma sarebbe bello se potesse essere persuaso a funzionare.
Soluzione
La soluzione@ jackjr300 funziona alla grande. Finalmente sono andato con questo incantesimo:
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