Is it possible to direct RSS feeds to an external reader, rather than use Omniweb? OW's feed capabilities are pretty primitive, so I prefer to use Newsfire.
These forums are now read-only. Please visit our new forums to participate in discussion. A new account will be required to post in the new forums. For more info on the switch, see this post. Thank you!
|
Member
2006-11-02, 06:19 PM
Is it possible to direct RSS feeds to an external reader, rather than use Omniweb? OW's feed capabilities are pretty primitive, so I prefer to use Newsfire.
Post 1
|
Member
2006-11-03, 01:39 AM
Quote:
Post 2
|
Member
2006-11-03, 01:40 AM
It's coming in 5.5.2 apparently!
Post 3
|
Member
2006-11-03, 03:08 AM
Quote:
How do you do it with AppleScript?
Post 4
|
Member
2006-11-03, 03:53 AM
Thanks ... even something like Camino has which simply forwards feeds to your reader of choice would be great. I dont think any of the browsers handle RSS particularly well, while there are a few really good readers.
Any Applescript hints in the meantime are most welcome!
Post 5
|
Member
2006-11-03, 08:19 AM
Even more useful would be to include a preference that would allow RSS feeds to be handled in web-based readers like Google Reader, Bloglines or Netnewsgator too.
Post 6
|
Member
2006-11-03, 07:34 PM
Quote:
This script is for Vienna, a free RSS reader. If you're using another program, you will probably have to check out that program's dictionary in Script Editor to see how to add a subscription to it. Assuming the program you're is scriptable. Code:
set theClipboard to (the clipboard) -- checks that clipboard has something resembling a URL if class of (the clipboard) is not Unicode text then display dialog "The contents of the clipboard are not Unicode Text" with title "Error" with icon stop error number -128 end if -- checks/corrects that RSS URL begins with http & not feed if theClipboard begins with "feed:" then set theClipboard to (characters 6 thru (length of theClipboard) of theClipboard) as text end if repeat until theClipboard begins with "http://" if theClipboard does not start with "http://" then set newRSSURL to text returned of (display dialog "The URL of the RSS feed doesn't begin with \"http:\". Please correct." default answer theClipboard with title "Attention" with icon stop) end if set theClipboard to newRSSURL end repeat tell application "Vienna" create new subscription for (theClipboard) end tell
Post 7
|
Member
2007-01-05, 07:00 AM
Quote:
Post 8
|
I don't get it. I use NewsFire... And if I show the status bar in OW, it displays an icon that RSS feed(s) were detected. I click, select the feed, and get handed off to NewsFire, where I subscribe to that feed.
Seems like it works as intended, what's not working here? I admit I haven't been following this, so forgive my ignorance.
Post 9
|
Google reader isn't a separate application. It is a web-based solution. Personally, what I don't get is why people are so willing to provide Google with so much information about their lives, but that is an altogether different matter...
Post 10
|
Thread Tools | Search this Thread |
Display Modes | |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
External Keyboard / iPad. | ucs308 | OmniFocus for iPad | 1 | 2010-05-11 08:57 PM |
Hyperlink to external info | stmind | OmniPlan General | 5 | 2010-03-04 07:29 AM |
external hdd has to spin up as I use omnifocus | dwbrown77 | OmniFocus 1 for Mac | 0 | 2010-02-02 04:58 AM |
Quick Look external links | laertes | OmniGraffle General | 0 | 2008-11-12 03:36 AM |
[Rss] external newsreader? | whamoo | OmniWeb Feature Requests | 1 | 2006-10-24 12:57 PM |