ken2400
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2010
05:39 AM
My first channel, how do I add RSS feed
Working on my first channel.
How do I add RSS feeds.
Looking for some example code.
I know how add them to Mediafly and other.
Thanks
How do I add RSS feeds.
Looking for some example code.
I know how add them to Mediafly and other.
Thanks
4 REPLIES 4
TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2010
06:52 AM
Re: My first channel, how do I add RSS feed
Take a look at the MediaRSSToolkit.brs source file in the deviantart SDK example.
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
ken2400
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2010
07:57 PM
Re: My first channel, how do I add RSS feed
So I am making some progress by using deviantart.
I would like to build an Associative Array like the one below using a loop.
How can I do it?
Using it to build selections on the screen.
gmainmenudata = [
{ShortDescriptionLine1:"testit", ShortDescriptionLine2:"SlideShow User Favorites", HDPosterUrl:ghdposter, SDPosterUrl:gsdposter}
{ShortDescriptionLine1:"Daily Deviations", ShortDescriptionLine2:"SlideShow Daily Deviation", HDPosterUrl:ghdposter, SDPosterUrl:gsdposter}
]
Thanks
I would like to build an Associative Array like the one below using a loop.
How can I do it?
Using it to build selections on the screen.
gmainmenudata = [
{ShortDescriptionLine1:"testit", ShortDescriptionLine2:"SlideShow User Favorites", HDPosterUrl:ghdposter, SDPosterUrl:gsdposter}
{ShortDescriptionLine1:"Daily Deviations", ShortDescriptionLine2:"SlideShow Daily Deviation", HDPosterUrl:ghdposter, SDPosterUrl:gsdposter}
]
Thanks
renojim
Community Streaming Expert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2010
11:04 PM
Re: My first channel, how do I add RSS feed
Do you mean something like this?
-JT
description1 = ["testit","Daily Deviations"]
description2 = ["SlideShow User Favorites","SlideShow Daily Deviation"]
gmainmenudata = []
for i = 0 to description1.Count() - 1
gmainmenudata.Push({ShortDescriptionLine1:description1[i],
ShortDescriptionLine2:description2[i],
HDPosterUrl:ghdposter,
SDPosterUrl:gsdposter})
end for
-JT
Roku Community Streaming Expert
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.
ken2400
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2010
08:58 PM
Re: My first channel, how do I add RSS feed
Thanks for the help. It works now.