Search billions of records on Ancestry.com
   
Rigsby Home Rigsbys Records Photo's Surnames Orgins
God is our refuge and strength
a very present help in trouble. Ps.46:1
Credit for Code downloaded from Webmonkey
Embedding a Windows Media Player----This time we used a movie file
Go here to see how it works, not concerned with slideshow,  but the movie
Accounting for Netscape
we'll need to account for Netscape's method for calling embedded players, the EMBED tag. Here the EMBED tag is contained inside the OBJECT tag, so that the player will also work with Internet Explorer.
Copy and paste this code fragment into your HTML document, and then we'll modify it. Note: Some of these lines are truncated to fit on the screen. When you drop this code onto your page, make sure the URLs and longer lines of code appear in one line.

<OBJECT ID="MediaPlayer1" width=160 height=162

classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"

codebase="http://activex.microsoft.com/activex/
	controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902"

standby="Loading Microsoft Windows Media Player components..."

type="application/x-oleobject">

<PARAM NAME="FileName"
VALUE="http://freepages.genealogy.rootsweb.com/~baxter/chess/100_5272.avi">

<PARAM NAME="animationatStart" VALUE="true">

<PARAM NAME="transparentatStart" VALUE="true">

<PARAM NAME="autoStart" VALUE="true">

<PARAM NAME="showControls" VALUE="true">

<EMBED type="application/x-mplayer2"

pluginspage = "http://www.microsoft.com/Windows/MediaPlayer/"

SRC="http://freepages.genealogy.rootsweb.com/~baxter/chess/100_5272.avi"

name="MediaPlayer1"

width=160

height=162

AutoStart=true>

</EMBED>

</OBJECT>


When you've pasted this code in, simply change these two strings to point to your file. <PARAM NAME="FileName" VALUE="yourfilehere.asf"> and SRC="yourfilehere.asf"

Now, test the code in both browsers. This codebase is, I've noticed, variously effective for different versions of Netscape Navigator; some versions will attempt to load Java if ActiveX isn't installed. Always test carefully.