Skip to content

Instantly share code, notes, and snippets.

@zurdors
Last active September 3, 2018 23:29
Show Gist options
  • Save zurdors/7a81e91db9df0a0bd1539d2ac1d0b78f to your computer and use it in GitHub Desktop.
Save zurdors/7a81e91db9df0a0bd1539d2ac1d0b78f to your computer and use it in GitHub Desktop.
AppleScript para copiar y pegar la imagen descargada en una nueva nota de Evernote, asignar etiquetas a esa nueva nota y mover la nota a la libreta de tu preferencia.
tell application "Evernote"
tell application "Finder" to set file_name to (name of theFile)
activate
set theData to (the clipboard as text)
set the clipboard to theData
set defaultTag to {"etiqueta-01", "etiqueta-02"}
set append_text to "Captura de pantalla completa de " & theData & " | Inspiración"
create note from file theFile notebook {"El nombre de mi libreta de capturas de pantalla"} title append_text tags defaultTag
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment