(B) Captions
Inserting Flash into a webpage
There are two ways to insert a flash file into a webpage. The first method is via JavaScript, The second method is via the object tag and brower hacks, a bit more accessible friendly but users have to click on flash in order to acativate.
To insert via Javascript
Because if the Eolas Patent lawsuit, Macromedia has created this workaround for inserting flash objects without first activating. The script also requires two additional files. Only Flash CS3 can generate this type of coding.
<script src="[path]/AC_RunActiveContent.js" type="text/javascript"></script>
The coding is quite tricky, specially if the flash files are located in another directory.
Located inside the HEAD: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',
'width', '534',
'height', '220',
'src', 'banner',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'opaque',
'devicefont', 'false',
'id', 'banner',
'bgcolor', '#ffffff',
'name', 'banner',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', '[path]/banner',
'salign', ''
); //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=9,0,0,0" width="534" height="220" id="banner" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="[path]banner.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />
</object>
</noscript>
To insert using OBJECT
This method is a bit more user friedly. Edit the text in bold/red to match your flash file.
Located inside the BODY:<object type="application/x-shockwave-flash"
data="movie.swf" width="300" height="135">
<!-- <![endif]-->
<!--[if IE]>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/
swflash.cab#version=6,0,0,0"
width="300" height="135">
<param name="movie" value="movie.swf" />
<!--><!--dgx-->
<param name="loop" value="true" />
<param name="menu" value="false" />
<p>This is alternative content.</p>
</object>
<!-- <![endif]-->
Play this sample Windows Media file: news640.asx
