मैं मैक के Dictionary.app में जोड़ने के लिए एक कस्टम शब्दकोश ऐड-ऑन विकसित कर रहा हूं।
मैं चाहता हूं कि मेरा उपयोगकर्ता डिवेलपर के रूप में मुझे ऐड-ऑन की त्रुटियों या उसकी टिप्पणियों (यदि कोई हो) की रिपोर्ट दे। अब तक, मैं निम्नलिखित AppleScript का उपयोग करके Mail.app का उपयोग करके मुझे ऐसी रिपोर्ट भेज रहा हूं।
tell application "Finder"
set current_path to (container of (path to me) as string) & "VT_icon.icns"
end tell
display dialog "Intro. to Dict Add-on." with title "My Dictionary for Mac" with icon file current_path buttons {"Cancel", "OK"} default button "OK" giving up after 500
if the button returned of the result is "OK" then
tell application "System Events"
if not (exists application process "Dictionary") then
tell application "Dictionary" to activate
end if
set frontmost of process "Dictionary" to true
end tell
delay 2
tell application "System Events"
set the clipboard to ""
keystroke tab
keystroke tab
keystroke "a" using command down
delay 1
keystroke "c" using command down
delay 1
set selected_text to (the clipboard as text)
end tell
tell application "Mail"
set myMessage to make new outgoing message at the beginning of outgoing messages with properties {subject:"Về: My Dictionary for Mac"}
tell myMessage to make new to recipient at beginning of to recipients with properties {address:"myemail@hotmail.com"}
set myMessage's content to "My precoded message: " & (the clipboard as text)
set myMessage's visible to true
activate
end tell
end if
अब तक सब ठीक है। उपरोक्त लिपि त्रुटिपूर्ण रूप से काम करती है। हालाँकि , एक बड़ी समस्या उत्पन्न होती है:The user cannot submit reports if s/he does not use or configure Mail.app to send email.
तो मेरा सवाल है: क्या मैं Mail.app का उपयोग किए बिना ईमेल भेजने के लिए एक Apple स्क्रिप्ट का उपयोग कर सकता हूं?
आपके यहाँ दो प्रश्न थे। यह साइट तब बेहतर काम करती है जब प्रति प्रश्न केवल एक प्रश्न हो। इस तरह, अन्य लोगों के लिए समाधान खोजना आसान हो जाता है यदि उनके पास एक ही समस्या है। मैंने आपका दूसरा प्रश्न संपादित कर दिया है।
—
nohillside
इसके अलावा, उपयोगकर्ता फीडबैक प्राप्त करने का वैकल्पिक साधन सॉफ्टवेयर विकास में जाएगा जो आस्कडिफरेंट पर ऑफ-टॉपिक है।
—
nohillside