Last active
September 3, 2018 23:29
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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