View Single Post
  #12 (permalink)  
Old 06-29-2004, 07:37 AM
Robert Robert is offline
Registered User
 
Join Date: Jun 2004
Posts: 2
HTML/JAVA Code for Windows Media Player

This is the Java script i use to put Windows Media Player on my webiste which I am in the process of making I'd imagine this would be the easiest type to use. Just put the video names in the sections were I've put "ENTER FILE NAME HERE"

<!--- START CONTENT --->

<!--- else NOT sponsored --->
<div style="margin:14px; font-size:16px; color:"black" align="center">
<b>ENTER FILE NAME HERE(THIS WILL BE YOUR TITLE OF VIDEO).wmv</b></div><br>
<object id="MediaPlayer1"
classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
standby="Loading Microsoft Windows Media Player components...">
<param name="Filename" value="ENTER FILE NAME HERE.wmv">
<param name="AnimationAtStart" value="true">
<param name="TransparentAtStart" value="false">
<param name="ShowControls" value="true">
<param name="PlayCount" value="true">
<embed width="320" height="285" src="ENTER FILE NAME HERE.wmv" controller=true autoplay=true playeveryframe=false pluginspage="plugin.html">
</object>
<br><br>

<!--- END CONTENT --->
Reply With Quote