Created
March 16, 2013 22:00
-
-
Save anoved/5178510 to your computer and use it in GitHub Desktop.
A simple Applescript to add the current article from Vienna (an RSS reader) to your Safari Reading List. Save to ~/Library/Scripts/Applications/Vienna.
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 "Vienna" | |
set the_article to current article | |
set article_URL to the link of the_article | |
set article_title to the title of the_article | |
set article_intro to (body of the_article as text) | |
tell application "Safari" to add reading list item article_URL with title article_title and preview text article_intro | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment