CS3 Publishing to enable changes in HTML

I’ve created this sweet slideshow. I publish the .swf and .html file. Then copy the code from the flash published .html file and embed into another .html file on my website. Within the second .html file I wish to change some of the param code, but for some reason its not all showing up as it did at another time. So apparantly I have changed a setting somewhere when publishing. Does anyone know what setting is causing all the code not to show up?

NO param settings anymore…see below :frowning:

<script language=“JavaScript” type=“text/javascript”>
<!–
if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
alert(“This page requires AC_RunActiveContent.js.”);
} else {
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) { // if we’ve detected an acceptable version
// embed the flash movie
AC_FL_RunContent(
‘codebase’, ‘http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0’,
‘width’, ‘550’,
‘height’, ‘500’,
‘src’, ‘education’,
‘quality’, ‘medium’,
‘pluginspage’, ‘http://www.macromedia.com/go/getflashplayer’,
‘align’, ‘middle’,
‘play’, ‘true’,
‘loop’, ‘true’,
‘scale’, ‘showall’,
‘wmode’, ‘transparent’,
‘devicefont’, ‘false’,
‘id’, ‘education’,
‘bgcolor’, ‘#ffffff’,
‘name’, ‘education’,
‘menu’, ‘true’,
‘allowScriptAccess’,‘sameDomain’,
‘allowFullScreen’,‘false’,
‘movie’, ‘education’,
‘salign’, ‘’
); //end AC code
} else { // flash is too old or we can’t detect the plugin
var alternateContent = ‘Alternate HTML content should be placed here.’

  • ‘This content requires the Adobe Flash Player.’
  • ‘<a href=http://www.macromedia.com/go/getflash/>Get Flash</a>’;
    document.write(alternateContent); // insert non-flash content
    }
    }
    // -->
    </script>
    <noscript>
    // Provide alternate content for browsers that do not support scripting
    // or for those that have scripting disabled.
    Alternate HTML content should be placed here. This content requires the Adobe Flash Player.
    <a href="<A href=“http://www.macromedia.com/go/getflash/">Get">http://www.macromedia.com/go/getflash/”>Get Flash</a>
    </noscript>