That was much better.
I'm not sure which version of FrontPage you're using, so it would really
help if you copied the HTML that it generated into a message so we could
figure out the technical details. But from what I understand so far, when
you insert the video, it is inserting an ActiveX Control, probably an
instance of Windows Media Player, I would guess.
Internet Explorer and other browsers will continue to warn you about certain
things that may be misused by hackers and other evil-doers, so that's not
necessarily something to worry about. Putting a video into a web page is a
tough task, though, because of browser issues. Now, here is some HTML that
works in both Internet Explorer and FireFox, which I lifted from our company
web site. All you have to do is change the URL of the .WMV file:
<object
classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" width="320"
height="308" id="Player">
<param name="autoStart" value="True">
<param name="URL" value="sats2005.wmv">
<embed type="application/x-mplayer2"
pluginspage="
http://microsoft.com/windows/mediaplayer/en/download/"
id="Player" showcontrols="true" showstatusbar="-1" width="320" height="285"
src="sats2005.wmv" autostart="true"></embed>
</object>
It will launch an instance of Windows Media Player in an ActiveX Control
embedded in the page.
The "URL" parameter (and the "src" attribute in the embed tag) is the URL to
the media file you want to play.
--
HTH,
Kevin Spencer
Microsoft MVP
Chicken Salad Surgery
What You Seek Is What You Get.