Forum Discussion
RokuJoel
13 years agoBinge Watcher
Two things:
should be
My bad.
Second, the <streamformat> tag in your xml is inside the media tag, for the syntax above to work, you would need to have a streamformat tag and some code to parse it outside the media tag. I suggest you just use the ContentType tag
You will also need to handle the same in the case where button 1 is pressed
- Joel
if Showlist[ShowIndex].streamformat=".gif" or Showlist[Showindex].StreamFormat="image" then
should be
if Showlist[ShowIndex].streamformat=".gif" or Showlist[Showindex].contentType="image" then
My bad.
Second, the <streamformat> tag in your xml is inside the media tag, for the syntax above to work, you would need to have a streamformat tag and some code to parse it outside the media tag. I suggest you just use the ContentType tag
if Showlist[Showindex].contentType="image" then
You will also need to handle the same in the case where button 1 is pressed
- Joel