RSS Reader: Not just a one-feeder
Worth Continuing?
Friday, January 21, 2005 by dan.wright | Discussion: DesktopX

Beyond just being a feed for 1 site, my intention is to give the ability add/delete other feeds and keep them so they'll always be there. Obviously have a lot of work to do, but thought I'd get some feedback as I'm curious to know if anyone beyond me would think this'd be useful.
Reply #2 Friday, January 21, 2005 10:41 PM
Blah, I'm babbling ... I currently use RSSOwl for my rss feeds, but thought it might be cool to have a widget/dx object running all the time that I could store my more frequently read items ...

Reply #3 Friday, January 21, 2005 11:10 PM
Good Luck.

Reply #4 Saturday, January 22, 2005 1:58 AM

The 2nd one shows the "Add Feed" display ...

I'm working on the primary functionality, then I'll see about timers and such. If any *expert* dx scriptor (**cough** **cough**, Tiggz, _Martin_, **cough** **cough**
) has any advice/thoughts on how I might best accomplish this
, or anyone else for that matter. I realize I could setup a general timer, but am not sure about customizing for each feed.Or, am I just biting off more than I can, or should, chew with this?
Reply #5 Friday, October 7, 2005 4:33 AM
I've been playing around with your RSSReader object, loving it! But here are a few things I've had to change:
In the RSS_Listbox object I've had to add the following few lines:
storyUrl = Replace(storyUrl, "&_amp;", "&") 'to reformat XML feed [remove underscore]
storyDesc = xmlstripper("description", joedata)
storyDesc = RemoveXMLFormatting(storyDesc) 'see below for use
...
DesktopX.ScriptObject("RSSLinkTitle" & x).Object.ToolTipText = storyDesc
...
Function RemoveXMLFormatting(strInput)
strInput = Replace(strInput, "&_amp", "&") [remove underscore]
strInput = Replace(strInput, "'", "'")
strInput = Replace(strInput, """, """")
RemoveXMLFormatting = strInput
End Function
Note, this is due to recommendations I found at
Link while researching RSS.
Here's my question for you: do you know how to make it so that when you are entering a feed title you can press the "tab" key to move to the URL field? It would make it sooo much easier!
Yell back if you'd like a copy of the whole script I've modified or if you would like to collaborate further on this object?
Cheers and thanks for the great work!
Sincerely,
Random Precision
Reply #6 Tuesday, October 11, 2005 2:35 AM
Reply #7 Tuesday, October 11, 2005 2:36 AM

Reply #8 Tuesday, October 11, 2005 3:50 AM

Reply #9 Tuesday, October 11, 2005 2:52 PM
Please login to comment and/or vote for this skin.
Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:
- Richer content, access to many features that are disabled for guests like commenting on the forums and downloading skins.
- Access to a great community, with a massive database of many, many areas of interest.
- Access to contests & subscription offers like exclusive emails.
- It's simple, and FREE!







Reply #1 Friday, January 21, 2005 10:33 PM