I have an issue trying the suggestions on this thread. After trying the first suggestion.....
only highlighting
elseif msg.isRequestFailed()
print "Video request failure: "; msg.GetIndex(); " " msg.GetData()
elseif msg.isStatusMessage()
print "Video status: "; msg.GetIndex(); " " msg.GetData()
and replacing with
elseif msg.isRequestFailed()
print "Video request failure: "; msg.GetIndex(); " " msg.GetData()
RegWrite(episode.contentId, "0")
elseif msg.isFullResult()
print "Playback completed"
RegWrite(episode.contentId, "0")
elseif msg.isStatusMessage()
print "Video status: "; msg.GetIndex(); " " msg.GetData()
Im getting to error msgs...
syntax error: unexpected token "elseif", expected "end"
and
Syntax error: unexpected token "elseif", expected one of "endif", or "End"
and the resume play back button is still showing up when video ends....
ANY HELP WOULD BE APPRECIATED!