There is nothing special about that really, it is just another way of getting the various params and attributes to the tags. Here I've entered wmode transparent in all three possible places (additions red):
Code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','750','height','215','src','images/navigation','quality','high','wmode','transparent','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','images/navigation' ); //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=7,0,19,0" width="750" height="215">
<param name="movie" value="images/navigation.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<embed src="images/navigation.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="750" height="215" wmode="transparent"></embed>
</object>
</noscript>
Be sure to scroll the code area to see all three additions. This has already been used successfully by others (it works).
Bookmarks