Create TOC

2012년 9월 1일

OS/X - Alfred를 이용해서 Evernote에 바로 글 적기

Alfred에 아래와 같은 applescript를 등록하면 "m 적을 내용" 이런 식으로 바로 Evernote에 메모를 추가할 수 있다.

on alfred_script(q)
  tell me
    do shell script "open /Applications/Evernote.app"
  end tell
  tell application "Evernote"
    set note1 to create note title q with text q notebook "노트를 추가할 노트북 이름"
    open note window with note1
    activate
  end tell
end alfred_script