Whatever message this page gives is out now! Go check it out!
ColdFusion.Mediaplayer.startPlay("name") |
Parameter | Description |
name | Specifies the value of the name attribute of the cfmediaplayer tag. |
<h3>This is an example of the Mediaplayer.startplay function. Clicking the Start Play button plays the video.</h3>
<script language="JavaScript" type="text/javascript">
function onStart() {
ColdFusion.Mediaplayer.startPlay('Myvideo');
};
</script>
<br>
<form>
<input type="button" name="startplay" value="Start Play" onClick="onStart()">
</form>
<cfmediaplayer name="Myvideo" source="/xyz/video.flv"
width=500 height=400 align="middle"
quality="high" fullscreencontrol="true"/>