Hi
The param on the
Video Node to display the video progress bar is called
enableUI.
You can define this in the XML in SG:
<Video id="videoId" enableUI="true" />
Or in your embedded Script or .brs file:
sub init()
m.video = m.top.findNode("videoId")
m.video.enableUI = true
end sub