Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question
Does it work in Firefox? – uınbɐɥs Jul 12 '12 at 22:15
'src', 'FlashPage1' this doesn't seems right. Where is the swf file? try to put the actual swf file like 'src', 'domain/FlashPage1.swf'; – Dhanesh Jul 13 '12 at 4:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.