hi there
what is the easiest way for me to add an interactive flash file in to a standard page?
I have the following code, but unsure if all the associated java will be enabled etc.
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>agpn_map</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<body bgcolor="#ffffff">
<!–url's used in the movie–>
<a href="http://www.agpn.com.au/divisions-directory/act"></a>
<a href="http://www.agpn.com.au/divisions-directory/nt"></a>
<a href="http://www.agpn.com.au/divisions-directory/nsw2"></a>
<a href="http://www.agpn.com.au/divisions-directory/vic"></a>
<a href="http://www.agpn.com.au/divisions-directory/tas"></a>
<a href="http://www.agpn.com.au/divisions-directory/sa"></a>
<a href="http://www.agpn.com.au/divisions-directory/wa"></a>
<!–text used in the movie–>
<!-- saved from url=(0013)about:internet -->
<script language="javascript">
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=6,0,0,0',
'width', '235',
'height', '208',
'src', 'agpn_map',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'agpn_map',
'bgcolor', '#ffffff',
'name', 'agpn_map',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'agpn_map',
'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=6,0,0,0" width="235" height="208" id="agpn_map" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="agpn_map.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /> <embed src="agpn_map.swf" quality="high" bgcolor="#ffffff" width="235" height="208" name="agpn_map" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</noscript>
</body>
</html>
Thanks :rolleyes:
[quote]
hi there
what is the easiest way for me to add an interactive flash file in to a standard page?
I have the following code, but unsure if all the associated java will be enabled etc.
[/quote]
The code within the <body> tag can be added directly using the Raw HTML content type.
This is covered in our Concepts Manual, but as a quick explanation this involves clicking “Insert Container” from the “Edit Contents” screen. Select “Raw HTML” for the Content Type. If you do not want the content surrounded by a <div> then also select “Raw HTML” as the Presentation Type. Click the “Ok” Button.
A standard textarea will appear into which you can paste the code within <body>, but excluding the begin and end tags. Paste the code in and click “Commit”.
The portion within the <head> tag should be added as part of a Design. This is a template applied to any Page asset.
The Designs Manual will explain how to add standard title and metadata structures.
If the Javascript within the <head> tag is for this page only, it could be included within your Raw HTML cell. Otherwise if it is applicable to many pages, you may wish to include this within a Design. Referenced JavaScript, linked pages, and files should also be uploaded as assets so they can be tracked and moved without needing to edit URLs when this occurs.
That’s just a quick starter guide - for more detail please consult our Documentation Page.