Much closer now. I have the page with outlines for each video and a small icon at the top left. I have the activex installed (I reinstalled to make sure).
I also need to do this in IE and not Firefox (not my choice)
Here is the code I have for the html page - any ideas.
BTW - Thanks a lot for the help, I am trying to come up to speed from zero very quickly
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "
http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<BODY marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<embed type="application/x-vlc-plugin" name="v1" width="720" height="352" target="UDP://@239.1.1.128"/>
//This address is a streaming multicast address
<embed type="application/x-vlc-plugin" name="v2" width="720" height="352"
target="
http://web.mit.edu/www/cwf/utah.mkv"/>
<br>
<a href="javascript:null();" onclick='document.v1.play()'>play-1</a>
<a href="javascript:null();" onclick='document.v1.mute()'>mute-1</a>
<a href="javascript:null();" onclick='document.v2.play()'>play-2</a>
<a href="javascript:null();" onclick='document.v2.mute()'>mute-2</a>
</BODY>
</HTML>