Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
tacticalcity
Visitor

Re: Cannot get video to play

I found that in the file where you said it would be and made the change. Won't be able to test it out until I get home tonight (at the office). But thank you in advanced for the help.


"renojim" wrote:
"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
0 Kudos