In my appDetailScreen.brs is where my PlayStart is: How would I change it here to really make it work? I also have VOD in my xml files versus live links.
ElseIf msg.isButtonPressed()
Print"ButtonPressed"
If msg.GetIndex()=1
If showlist[showindex].contentformat<>"audio"
PlayStart=RegRead(showList[showIndex].ContentId)
If PlayStart<>invalid
showList[showIndex].PlayStart=PlayStart.ToInt()
End If
'Add 02-27-13
If showList[showIndex].StreamUrls[0]="INVALID"
ShowErrorDialog("No Video Available Yet")
Else
'end 02-27-13
showVideoScreen(showList[showIndex])
End If
End If
End If