I would like to make links for a custom movie control panal on a page with a movie embeded called "video" I need to know how to control that movie from those links. What I have so far is:
<embed src="videos/movie.mpg" width="400" height="350" autostart="true" ShowControls="false" id="video" name="video">
</embed>
div align="center">
<a href="#" onClick="video.setFullScre
en()"> Full Screen</a>
<a href="#" onClick="video.stop()">Sto
p</a>
<a href="#" onClick="video.play()">Pla
y</a>
<a href="#" onClick="video.stop()">Sto
p</a>
</div>
FullScreen Does not work. I cant get it to work. I read that it might work if i put true in. but i dont know where to put the true in.
is there a way i can make a link called fast forward and volume.
thank you.
Start Free Trial