Skip to content

Instantly share code, notes, and snippets.

@flagranterror
Created February 16, 2012 20:15
Show Gist options
  • Save flagranterror/1847524 to your computer and use it in GitHub Desktop.
Save flagranterror/1847524 to your computer and use it in GitHub Desktop.
Send selected story to Reading List
--Grab selected story pertinents
tell application "NetNewsWire"
set u to (URL of selectedHeadline)
set t to (title of selectedHeadline)
end tell
--Hand off to Safari
tell application "Safari"
add reading list item (u as string)
end tell
--Report Success
display alert ("Sent \"" & (t as string) & "\" to Reading List")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment