If (m.video.state = "playing")
if m.video.duration = m.video.duration - 5 then
m.yourCustomLabel.text = "Your video will resume in 5 seconds"
end if
end if
If (m.video.state = "finished")
m.video.control = "stop"
m.videocontent = m.yourVideoList.content.getChild(1)
m.video.content = m.videocontent
m.yourCustomLabel.text = ""
m.video.control = "play"
end if
"destruk" wrote:
This thread is from 2016...