Forum Discussion
360tv
13 years agoStreaming Star
I have a question about the last post in this thread.
The item.UserRating is giving me trouble when I put in showList[showIndex].starrating, which contains the values I want, it gives me a type miss match.
same if I do
if I "print srating" or "print showList[showIndex].starrating" it gives me a number.
So I'm trying to get something in my AddRatingButton that won't crash with a type miss match.
The item.UserRating is giving me trouble when I put in showList[showIndex].starrating, which contains the values I want, it gives me a type miss match.
same if I do
srating = showList[showIndex].starrating
screen.ClearButtons()
if regread(show.contentid) <> invalid and regread(show.contentid).toint() >=30 then
screen.AddButton(1, "Resume playing")
screen.AddButton(2, "Play from beginning")
screen.AddRatingButton(3, 0, srating)
if I "print srating" or "print showList[showIndex].starrating" it gives me a number.
So I'm trying to get something in my AddRatingButton that won't crash with a type miss match.