"tacticalcity" wrote:
Sadly the port thing is over my head as well. New at this.
I wasn't able to find anything in that particular file using keyword "Rating" and "find" to make that particular edit. I am assuming it would be set to "true" and I would mark it "false".
But I did find something in the showFeed.brs file. A line that reads
item.StarRating = "90"
I tried to comment it out...
''item.StarRating = "90"
but all that did was just make the rating zero. I want to remove those stars from that page all together.
I haven't downloaded or looked at the examples in years, but in the version I have in the file
appPosterScreen.brs in the function
showPosterScreen there's the lines:
screen.SetContentList(getShowsForCategoryItem(category, m.curCategory))
screen.Show()
just add
screen.SetStaticRatingEnabled(false) before the
show:
screen.SetContentList(getShowsForCategoryItem(category, m.curCategory))
screen.SetStaticRatingEnabled(false)
screen.Show()
If you're going to do much development, learning how to use the debug console would be time very well spent.
😄 -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.