美文网首页Alfred
Alfred操作印象笔记

Alfred操作印象笔记

作者: 鸭梨山大哎 | 来源:发表于2017-02-13 09:25 被阅读64次

    比如利用Alfred创建印象笔记笔记本。
    设置关键词触发
    如图

    Paste_Image.png Paste_Image.png
    on alfred_script(q)
    tell application "Evernote"
    create notebook q
    end tell
    end alfred_script
    

    查询笔记

    on alfred_script(q)
    tell application "Evernote"
    activate
    open collection window with query string q
    end tell
    end alfred_script
    

    打开特定的笔记本

    tell application "Evernote"
    activate
        open collection window with query string "notebook:日记生活"
        
    end tell
    

    相关文章

      网友评论

        本文标题:Alfred操作印象笔记

        本文链接:https://www.haomeiwen.com/subject/wluzittx.html