मैं एक दस्तावेज़ के निर्माण को स्वचालित करने की कोशिश कर रहा हूं, और AppleScript के साथ पेज दस्तावेज़ में चित्र सम्मिलित करने का एक तरीका ढूंढ रहा हूं। उदाहरण के लिए:
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
कुछ भी नहीं मैंने अभी तक काम करने की कोशिश की है - "नया ग्राफिक बनाओ", "नई छवि बनाओ", "छवि डेटा डालें" और इसी तरह। मैं इस संभावना से इनकार नहीं कर रहा हूं कि यह बिल्कुल संभव नहीं है (मैंने ऐप्पलस्क्रिप्ट को लंबे समय तक इस्तेमाल किया है, ताकि यह आश्चर्यचकित न हो) लेकिन यह अच्छा होगा यदि इसे काम करने के लिए राजी किया जा सके।
उपाय
@ jackjr300 का समाधान बढ़िया काम करता है। मैं अंत में इस भस्म के साथ गया:
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