I embeded a swf file in an html page and it works on local machine but it doesn't work from the xampp server. I'm using IE ver. 9. Any help please? Here is the js code
<script src="AC_RunActiveContent.js" language="javascript"></script>
<title>Lesson_One </title>
<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', '780',
'height', '460',
'src', 'FlashPage1',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'FlashPage1',
'bgcolor', '#ffffff',
'name', 'FlashPage1',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'Flashpage1',
'salign', ''
);
}
</script>