I'm trying to make a web page that plays some videos in random and indefinite with VBScript and the tag <embed>
.I have found an example but use JavaScript and HTML5, attachment link.
HTML5 video how to play two videos in one video element
<video id="myvideo"width="320" height="240">
<embed src="images\s1.mp4" type="video/mp4" showcontrols="0" loop="true" autostart="true"/>
<embed src="images\s2.mp4"type="video/mp4" showcontrols="0" loop="true" autostart="true"/>
</video>