If anyone could look at the code and let me know what i am doing wrong. I get the message saying i can play the video but than it doesn't allow me to video the video on this page. Also if anyone knows how to play a video with a the skin, play pause buttons that would also be a help.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
function CheckVid()
{
var start = Date.parse("Dec 5, 2008 08:00:00 CST");
var end = Date.parse("Dec 15, 2008 12:00:00 CST");
var now = new Date();
if (now > start && now < end)
{
document.getElementById('video').innerHTML = "You can watch the video";
}
else
{
document.getElementById('video').innerHTML = "You cannot watch the video";
}
}
</script>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>
<body onload="CheckVid()">
<div id="video" align="center">
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width','600','height','338','id','video','src ','FLVPlayer_Progressive','flashvars','&MM_ComponentVersion=1&skinName=Coro na_Skin_3&streamName=final_tour_01&autoPlay=true&autoRewind=false','quality ','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage',' http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','FLVPlayer_Progressive ' ); //end AC code
</script>
<noscript>
<object classid="clsid

27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="600" height="338" id="video">
<param name="video" value="FLVPlayer_Progressive.swf" />
<param name="salign" value="lt" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Corona_Skin_3&streamName=final_tour_ 01&autoPlay=true&autoRewind=false" />
<embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Corona_Skin_3&streamName=final_t our_01&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="600" height="338" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" />
</object>
</noscript>
</div>
</body>
</html>
Eric