Hi all,

I've got a video (flv) imported into a flash file. It plays fine from the flash player but when I export the HTML file the skin is showing but it keeps buffering and won't play the flv. All the files are in the same directory. I haven't got a clue what's wrong. This is the HTML code generated by Flash (CS3, AS3 player 9)
Code:
<script language="javascript">
	if (AC_FL_RunContent == 0) {
		alert("This page requires AC_RunActiveContent.js.");
	} else {
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
			'width', '240',
			'height', '192',
			'src', 'video',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'window',
			'devicefont', 'false',
			'id', 'video',
			'bgcolor', '#000000',
			'name', 'video',
			'menu', 'true',
			'allowFullScreen', 'false',
			'allowScriptAccess','sameDomain',
			'movie', 'video',
			'salign', ''
			); //end AC code
	}
</script>
<noscript>
	<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="240" height="192" id="video" align="middle">
	<param name="allowScriptAccess" value="sameDomain" />
	<param name="allowFullScreen" value="false" />
	<param name="movie" value="video.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" />	<embed src="video.swf" quality="high" bgcolor="#000000" width="240" height="192" name="video" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
	</object>
</noscript>
I really hope someone can help. Thanks a lot in advance, danielle.