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
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
Take a look at the MediaRSSToolkit.brs source file in the deviantart SDK example.
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
Do you mean something like this?
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
Thanks for the help. It works now.