"koshermetal" wrote:
Still having problems figuring this out.
Anyone have any suggestions on how to make the categories on the Channel appear from right to left instead of left to right? It automatically goes to the left-most category when loaded....what is the fix?
Thanks in advance for the help!
"joetesta" wrote:
The other day I started with a fresh SDK & went through this and confirmed that it is correct / successfully removes the leafs. The ONLY thing I left out is that you need to update your XML to include a 'feed' for the top level 'category' elements.
cheers,
Joe
"joetesta" wrote:"edunn@lifeminute.tv" wrote:
So have these modifications been successful for anyone? I tried applying them to my app, and it came up with a number of syntax errors in appHomeScreen.brs
I'd really like to get those subcategories out of there. I'm wondering if I made a mistake of my own somewhere...
Thanks so much everyone.
Hi there - see my post here: http://forums.roku.com/viewtopic.php?f=34&t=26563#p304237
The other day I started with a fresh SDK & went through this and confirmed that it is correct / successfully removes the leafs. The ONLY thing I left out is that you need to update your XML to include a 'feed' for the top level 'category' elements.
cheers,
Joe
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<categories>
<category title="Category1" description="The first Category"
sd_img="http://www.##EXAMPLE##.com/images/category1_sd.png"
hd_img="http://www.##EXAMPLE##.com/images/category1_hd.png"
feed="http://www.##EXAMPLE##.com/feeds/category1.xml" >
</category>
<category title="Category2" description="The next Category"
sd_img="http://www.##EXAMPLE##.com/images/category2_sd.png"
hd_img="http://www.##EXAMPLE##.com/images/category2_hd.png"
feed="http://www.##EXAMPLE##.com/feeds/category2.xml" >
</category>
</categories>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<feed>
<item sdImg="http://www.##EXAMPLE##.com/Global/images/167970.jpg" hdImg="http://www.##EXAMPLE##.com/Global/images/167970.jpg">
<title>My first Title</title>
<contentId>167970</contentId>
<ContentType>movie</ContentType>
<contentQuality>SD</contentQuality>
<streamFormat>mp4</streamFormat>
<media>
<streamQuality>SD</streamQuality>
<streamBitrate>600</streamBitrate>
<streamUrl>https://secure.##EXAMPLE##.com/167970_600.mp4</streamUrl>
</media>
<media>
<streamQuality>SD</streamQuality>
<streamBitrate>2500</streamBitrate>
<streamUrl>https://secure.##EXAMPLE##.com/167970_2500.mp4</streamUrl>
</media>
<synopsis>The first movie in my list</synopsis>
<actors>Starring: some really cool actors!</actors>
<director>Bob</director>
<releasedate>Released: 2008</releasedate>
<runtime>8500</runtime>
<hdBifUrl>http://www.##EXAMPLE##.com/167970/bif_hd.bif</hdBifUrl>
<sdBifUrl>http://www.##EXAMPLE##.com/167970/bif_sd.bif</sdBifUrl>
</item>
</feed>