media player question

how do i change the following code so that i can have a list rather then a dropdown box that loads into embedded player? The dropdown will load into player but i dont want a dropdown. any help?

<html>
<head>

</head>
<body bgcolor="6699cc" >


<center>WILL ONLY WORK IN INTERNET EXPLORER<BR><BR>

<OBJECT ID="MediaPlayer" width=320 height=310 classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/ mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby= "Loading Media Player" type="application/x-oleobject">
<PARAM NAME="FileName" VALUE="video/ceramica.avi">
<PARAM NAME="AutoStart" Value="True">
<PARAM NAME="ShowControls" VALUE="True">
<PARAM NAME="ShowStatusBar" VALUE="True">
<EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC="video/ceramica.avi" width=320 height=310 name="MediaPlayer" autostart="True" ShowStatusBar=1 ShowControls=1 >
</EMBED>
</OBJECT>

<FORM name="MediaForm">
<select NAME="VidChange" onChange="{document.MediaPlayer.FileName = document.MediaForm.VidChange.options[document.MediaForm.VidChange.selectedIndex].value}">

<option VALUE="http://davidmorin.net/clips/david.mpg">ethan at bat
<OPTION VALUE="http://davidmorin.net/clips/david.mpg">test
<OPTION VALUE="http://davidmorin.net/clips/david.mpg">test
<OPTION VALUE="http://davidmorin.net/clips/david.mpg">test

<OPTION VALUE="http://davidmorin.net/clips/david.mpg">test
</SELECT>

<BR><BR>

<BR>

</HTML>
[1790 byte] By [davidjmorin] at [2007-11-20 11:16:23]
# 1 Re: media player question
By changing the size attribute of the select tag, you can show that many options at one time. Then it won't be a drop-down, but a scrolling selectable box.
PeejAvery at 2007-11-8 0:43:20 >
# 2 Re: media player question
size attribute is located where? how would it look?
davidjmorin at 2007-11-8 0:44:15 >
# 3 Re: media player question
As I have stated in multiple previous posts, please start searching.

The HTML Reference ( http://w3schools.com/tags/default.asp) will give you more information on tags. Look up the <select> and you will see the size attribute.
PeejAvery at 2007-11-8 0:45:16 >
# 4 Re: media player question
Sorry Im At Work And Cannot Go To Alot Of Pages That Being One Of Them Nor Can I Use Google Yahoo Etc. Sorry To Be A Bother.
davidjmorin at 2007-11-8 0:46:19 >
# 5 Re: media player question
What kind of work won't let you use search engines? Are you using company time to do personal work?

<select size="10" ...>
PeejAvery at 2007-11-8 0:47:23 >
# 6 Re: media player question
i sure am hahaha. i work for verizon wireless. ive found about 5 sites that i can get to this one being one of them. ive been searching for months too if that tells ya anytning
davidjmorin at 2007-11-8 0:48:25 >
# 7 Re: media player question
so i like that i can do that by just expanding the dropbox. but is there a way to do it with a link on the page? i searched a few sites and all i could get is a popup window that played in; the same player. same idea but i dont want the popup window.
davidjmorin at 2007-11-8 0:49:26 >
# 8 Re: media player question
Use the javascript call in the href attribute.

<script type="text/javascript">
function playMovie(src){
document.MediaPlayer.FileName = src;
}
</script>

<a href="javascript:playMovie('http://davidmorin.net/clips/david.mpg')">Test.mov</a>
PeejAvery at 2007-11-8 0:50:21 >