利用KM结合印象笔记做一个单词收藏本

和这个并无什么大的不同,只是想法不一样!
http://www.jianshu.com/p/21ba22862b87
直接上图和代码

利用KM结合印象笔记做一个单词收藏本_第1张图片
Paste_Image.png

tell application "Keyboard Maestro Engine"
    set x to value of variable "dd"
    tell application "Evernote"
        set notebook1 to notebook "00.收集箱"
        set mynotes to (get every note in notebook1 whose title is "单词")
        if (count of mynotes) is equal to 1 then
            set note1 to item 1 of mynotes
            tell note1 to append text x
        end if
    end tell
end tell

使用时按下command+c和trigger即可!

你可能感兴趣的:(利用KM结合印象笔记做一个单词收藏本)