Hi all I am using this method to fix the Active Content issue,
http://www.adobe.com/devnet/activecontent/articles/devletter.html#multipleoccurrences
but now I have come across a situation when I have to append the end of the .swf.
EG: Active content fix script. It does not use the extension .swf
<script type=“text/javascript” >
AC_FL_RunContent(
‘codebase’, ‘https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0’,
‘width’, ‘764’,
‘height’, ‘141’,
‘src’, ‘images/footer_graphic_1_about’,
‘quality’, ‘high’,
‘pluginspage’, ‘https://www.macromedia.com/go/getflashplayer’,
‘align’, ‘middle’,
‘play’, ‘true’,
‘loop’, ‘true’,
‘scale’, ‘showall’,
‘wmode’, ‘window’,
‘devicefont’, ‘false’,
‘id’, ‘footer_graphic_1_about’,
‘name’, ‘images/footer_graphic_1_about’,
‘menu’, ‘true’,
‘allowScriptAccess’,‘sameDomain’,
‘movie’, ‘images/footer_graphic_1_about’,
‘salign’, ‘’
); //end AC code
</script>
I need to add .swf?<%response.write qs%>" to the images/footer_graphic_1_about, because I am passing a variable through the .swf.
Eg: images/footer_graphic_1_about.swf?intro=no
Any help would be great.