-- Evernote Autoimport versao 1.2 -- Acao de Pasta para importar arquivos automaticamente para o Evernote -- Copyright (c) 2012 Augusto Campos - BR-Mac.org -- Copying and distribution of this file, with or without modification, -- are permitted in any medium without royalty provided the copyright -- notice and this notice are preserved. This file is offered as-is, -- without any warranty. on adding folder items to theFolder after receiving theNewItems -- Edite as proximas 2 linhas se quiser definir outro nome de pasta -- e tag para os arquivos importados automaticamente set MyNB to "Autoimport" set MyTag to "Autoimport" set MyObject to (get info for item 1 of theNewItems) set MyFile to (theFolder as string) & (name of MyObject) as alias set MyTitle to the name of MyObject tell application "Evernote" activate create note from file (MyFile as alias) title MyTitle notebook MyNB tags MyTag end tell end adding folder items to -- Augusto Campos - BR-Mac.org