My .mp4 will only download, I want it to open a new page and play.
i have struggled days. want .mp4 open new page , play .mp4 have. here work:
<table width="775" border="0" cellspacing="3" id="animations">
<tr>
<td width="169" height="20" class="style3"></td>
<td class="style3"><u><span class="style2"><a onclick="mm_openbrwindow('../graphfldr/cartoons/lips.mp4','','width=600,height=500')">lip s</a></span></u></td>
<td width="330" class="style3">
<u> <a onclick="mm_openbrwindow('../graphfldr/cartoons/tasteandsmell.mp4','','width=500,height=3 50')">taste , smell</a></u></td>
</tr>
<tr>
<td class="style3"> </td>
<td class="style3"><u> <a onclick="mm_openbrwindow('../graphfldr/cartoons/touchandhearing.mp4','','width=500,height =350'">touch , sound</a></u></td>
<td class="style3"><u> <a onclick="mm_openbrwindow('../graphfldr/cartoons/eyes.mp4','','width=500,height=350'">sigh t</a></u></td>
</tr>
<tr>
<td height="22" class="style3"> </td>
<td class="style3"><u><span class="style2"> <a onclick="mm_openbrwindow('../graphfldr/cartoons/moonlong.gif','','width=550,height=70')"> moonsurfing logo</a></span></u></td>
<td class="style3"> </td>
</tr>
<tr>
<td class="style3"> </td>
<td class="style3"> </td>
<td class="style3"> </td>
</tr>
</table>
the 1 works last 1 listed moonlong.gif. ones marked .mp4 have page show , item downloads. must have .mp4 play in window?
the way you're doing it, people need player , plugins installed view video. not ideal.
use html5 & <video> tag.
<!doctype html >
<html >
<head>
<meta charset="utf-8" />
<title>html5 video</title>
</head>
<body>
<video controls poster="your_poster_image.jpg">
<source src="your_video.mp4" type="video/mp4"></source>
</video>
</body>
</html>
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment