Evernoteノートから添付ファイルをエクスポートするための非常に単純なAppleScriptの作成で重大な問題が発生しています。次のコードを数回使用しましたが、機能しているように見えますが、実際には、イベントログに正しい応答が表示されていても、サイレントに失敗します。
Evernoteの最近のバージョンには、AppleScriptのサポートに関する重大な問題があると聞きました。EvernoteとAppleScriptの「エキスパート」がいる場合は、スクリプトを見直して、何かを忘れていないことを確認してください。
Mac OS X10.8.2とMacAppStoreバージョンのEvernote5.0.5(400805)を使用しています。
コード:
set ExportPath to "LegatusHD1:Users:me:Downloads:Test"
set theAttachments to {}
set selectedItems to {}
tell application "Evernote"
set selectedItems to selection
repeat with selectedItem in selectedItems
set theAttachments to (attachments of selectedItem)
repeat with theAttachment in theAttachments
set theFilename to (ExportPath & ":" & theAttachment's filename)
write theAttachment to theFilename
set theFilename to ""
end repeat
end repeat
end tell