Jump to content

Applescript Help...Create Note with Browser URL


Recommended Posts

Hello...

I need some assistance with an AppleScript I'm writing to create a note from a web page.  I would like the script to add the URL of the web page to the note.   I'm having trouble writing the line to do that.

The script will reside in ~/Library/PDF Services/ to make it available as an option in the PDF dropdown menu in the print dialog.  AppleScript file is attached...screenshot below.

Any and all assistance will be appreciated.

Lew

=====

070DCB60-08BC-4EA2-8857-D19A07E87169.thumb.png.c74a77b1636f073fd32bfddc1a5ec182.png

Save to Evernote.scpt

Link to comment
  • Level 5*
4 hours ago, Lew said:

I would like the script to add the URL of the web page to the note.   I'm having trouble writing the line to do that.

Wow - that actually works
I learned something today

Changes for Add myURL to note

tell application "Evernote"
     
set theNote to create note title theName from file theFile notebook hardcodedNotebook
     
set source URL of theNote to myURL
end tell

btw - You're retrieving page url from the browser.  I'd also retrieve page name

Link to comment
2 hours ago, DTLow said:

Wow - that actually works
I learned something today

Thank you very much!!  We both learned something.

I'll take you up on your suggestion to add the page name...good idea

Link to comment

With help from @DTLow I was able to complete an AppleScript that creates a note in Evernote from a webpage in Safari or Chrome in a selected notebook.  It also adds the original browser URL along with the date, in the format I prefer, and page name as the note's title.

The AppleScript file is attached along with a screenshot below.  Hopefully this will be of value to others...

 

image.thumb.png.1cf7983e815c963a1220882f7daecac3.png

Save to Evernote.scpt

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...