Hi all,
I have a big issue. I have a custom html block that has a flash component. Now this flash component has all the images embeded into it and hence takes a while to load. So I wrote a javascript and an xml file that the my new flash component uses to rotate as well as added some effects.
The problem is I am not sure how to integrate this to dolphin. If it is just one swf file, I would drop the file in the images directory of admin and point to in the admin panel
But I am not sure how to do this. The code I have works standalone. But not inside dolphin.
Please help. Where do I put what file and how do i bring it all together.
Here is my file list,
xu.swf, xu.xml and AC_RunActiveContent.js.
Here is my html file
<head>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
<!--url's used in the movie-->
<!--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=9,0,0,0','width','550','height','360','id','xu','align','middle','src','xu','quality','high','salign','lt','bgcolor','#ffffff','name','xu','allowscriptaccess','sameDomain','allowfullscreen','false','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','xu' ); //end AC code
}
</script>
</head>
<body>
<p>
<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="550" height="360" id="xu" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="xu.swf" />
<param name="quality" value="high" />
<param name="salign" value="lt" />
<param name="bgcolor" value="#ffffff" />
<embed src="xu.swf" quality="high" salign="lt" bgcolor="#ffffff" width="550" height="360" name="xu" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</noscript>
</p>
</body>