-
- webdesyne

-
Total Posts: 2
Joined: 2008-09-27
|
If you are using a javascript for adding the necessary AC_FL_RunContent.js, be sure to add this code [’wmode’,’opaque’ ]within your string. See my code, just before the closing parenthesis:
<script language="JavaScript\" type="text/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’,’name’,’home_photos’,’width’,’666’,’height’,’301’,’align’,’middle’,’id’,’home_photos’,’src’,’home_photos’,’quality’,’high’,’bgcolor’,’#D8DDB5’,’allowscriptaccess’,’sameDomain’,’allowfullscreen’,’false’,’pluginspage’,’http://www.macromedia.com/go/getflashplayer’,’movie’,’home_photos_main5c’,’wmode’,’opaque’ ); //end AC code
}
</script>
Also, then in your object class, add this additional parameter:
param name="wmode" value="opaque" (I removed the html brackets, so this code would display. You’ll need to add < on each end > these brackets back.
This should work.
|