How can I check if an HLS (M3U8) stream is available and if not show an error dialog?
Here's the code I'm using to play the video:
sub onButtonSelected()
'Ok'
if m.ButtonGroup.buttonSelected = 0
m.Video.visible = "true"
m.Video.control = "play"
m.Video.setFocus(true)
'Exit button pressed'
else
m.Exiter.control = "RUN"
end if
end sub