[eluser]oldrock[/eluser]
If i copy the code of embed source and paste it in the browser my flash file is getting displayed over there, but if i include it in my page as shown below its not getting included, i cant diagonise that where i m going wrong.
This is my view file Code.. Where my flash file gets included.
<div id="content-area">
<div id="flash">
AC_FL_RunContent = 0;
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', '900',
'height', '850',
'src', 'flash file7',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'flash file7',
'bgcolor', '#000000',
'name', 'flash file7',
'menu', 'true',
'allowFullScreen', 'true',
'allowScriptAccess','sameDomain',
'movie', 'flash file7',
'salign', ''
); //end AC code
}
[removed]
<noscript>
<?php
echo "sdfs";
echo base_url();?>
<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="900" height="850" id="flash file7" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="true" />
<param name="movie" value="flash file7.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" />
<embed src="<?php echo base_url().'system/application/views/flash.swf';?>" quality="high" bgcolor="#000000" width="900" height="850" name="flash file7" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</noscript>
</div>
thanks in advance