我在創建一個非常簡單的AppleScript以從Evernote筆記導出附件時遇到了重大問題。我已經多次使用下面的代碼,它似乎可以工作,但實際上,它失敗了,即使事件日誌顯示正確的響應。使用AppleScript從Evernote導出附件
我聽說Evernote最近的版本有顯着的AppleScript支持問題。如果有人在印象筆記和AppleScript「專家」,我也非常感謝審查我的腳本,以確保我不會忘記任何東西。
我使用Mac OS X 10.8.2和Mac App Store版本的Evernote 5.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
的代碼似乎爲我工作... – adayzdone 2013-02-17 20:48:01
@adayzdone:您使用哪種版本的Evernote和Mac OS X?他們和我一樣嗎?您是否使用Mac OS X 10.8.2和Evernote 5.0.5(400805)? – Darkstar 2013-02-19 00:23:42
10.6.8和版本5.0.5(400808) – adayzdone 2013-02-19 01:23:50