Click to See Complete Forum and Search --> : Create HTML with perl or CGI
zzzarmando
11-07-2005, 02:59 PM
i am in charge of a web site that link to different training videos, currently it is setup to open a full media player window, i want to create a script which create a single page to embed any of the videos within a ie window.
please help
Ultimater
11-07-2005, 03:05 PM
Alright, got something to work with?
zzzarmando
11-08-2005, 01:21 PM
i have 1 page with 5 links to a wmv each.the way i have it now when i click any link, it opens media player in full menu. i want to configure that page to "create" a second page inserting a file name as a variable so there is only one "second page". this is because the list will be increasing eventually.
Ultimater
11-08-2005, 01:45 PM
You'd use the object HTML tag then. For example:
<object width=400 height=300
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject">
<param name="URL" value="http://www.m90.org/gallery/video/smoking%20gorilla0-619.wmv">
<embed type="application/x-mplayer2"
name="MediaPlayer"
width=400
height=300
src="http://www.m90.org/gallery/video/smoking%20gorilla0-619.wmv"
showcontrols="0">
</embed>
</object>
zzzarmando
11-08-2005, 07:34 PM
this is what i have on first page:
<p align="left"><font size="2">Mega Meeting</font><br>
<input type="radio" name="vid" onclick="seevideo()" value="1" /> Megameeting Video Conference<br><br>
<font size="2">Mail Server</font><br>
<input type="radio" name="vid" onclick="seevideo()" value="2" /> Mail Server Overview<br>
<input type="radio" name="vid" onclick="seevideo()" value="3" /> Workgroup Sharing<br><br>
<font size="2">Karts</font><br>
<input type="radio" name="vid" onclick="seevideo()" value="4" /> Editando Karts (Espaņol)<br>
<input type="radio" name="vid" onclick="seevideo()" value="5" /> Reconstruir base de datos, Lineas rojas en log (Espaņol)</p>
how can i rollover the choise to the following (second page):
document.write('<html><head><title>Instructonal Videos</title><b>Video ' + vid + '<b><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><link rel="stylesheet" href="../images/styles.css" type="text/css"></head><body><p><img border="0" dynsrc="../files/video' + vid + '.wmv" start="fileopen" align="center" width="100%" height="100%"></p></body></html>')
the videos file names are video1.wmv, video2.wmv,....