# CS3 Publishing to enable changes in HTML

**URL:** https://forum.kirupa.com/t/cs3-publishing-to-enable-changes-in-html/250584
**Category:** flash
**Created:** [January 30, 2008, 6:51pm UTC](https://forum.kirupa.com/t/cs3-publishing-to-enable-changes-in-html/250584 "2008-01-30T18:51:20Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mbailey](https://avatars.discourse-cdn.com/v4/letter/m/848f3c/32.png) [@mbailey](https://forum.kirupa.com/u/mbailey)
#### Post date: [January 30, 2008, 6:51pm UTC](https://forum.kirupa.com/t/cs3-publishing-to-enable-changes-in-html/250584/1 "2008-01-30T18:51:20Z")

</div>

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 ☹

\<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](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](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/%22%3EGet%22)\>[http://www.macromedia.com/go/getflash/](http://www.macromedia.com/go/getflash/)”\>Get Flash\</a\>  
\</noscript\>
