I am trying to embed an .avi file into a webpage. This code works below, but it also pops up a blank popup which I don't need. Anyone know what the correct code should be or what I should delete? <A onclick="window.open('http://mywebsite.com/video.avi','','width=240,height=240,resizable=0')" href="javascript:;"><img src = "http://mywebsite.com/camerapicture.jpg" align="middle" border=0>View the Art Cook Video</a>
Hi Davey If you don't want any pop up - here's the code: <A href="http://mywebsite.com/video.avi"><img src = "http://mywebsite.com/camerapicture.jpg" align="middle" border=0>View the Art Cook Video</a></body> And if you want to embed the video with the player, the code: <object width="425" height="355"><param name="movie" value="http://mywebsite.com/video.avi"></param><param name="wmode" value="transparent"></param><embed src="http://mywebsite.com/video.avi" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>