AppleScript का उपयोग करके पेज दस्तावेज़ में चित्र सम्मिलित करें


1

मैं एक दस्तावेज़ के निर्माण को स्वचालित करने की कोशिश कर रहा हूं, और 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

जवाबों:


1

यहाँ एक उदाहरण है जो काम करता है।

set thisImage to choose file with prompt "Select an image"
tell application "Pages"
  tell (make new document)
      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
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.