I have some flash object embeded in the my DNN skin and want to work around the "activation" issue in IE. I have sucessfully used the
swfojbect.js script on several of my other non DNN websites but I can't get this to work with DNN. On my dev server I dropped the JS in the root and then put a reference in default.aspx like this -
bfundy01
Member
20 Points
6 Posts
DNN and Eolas
Jul 18, 2006 01:11 AM|LINK
<script src="<%= Page.ResolveUrl("swfobject.js") %>"></script>
Then used the standard notation for this in my skin page
<div id="flashcontent">
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("f1.swf", "f1", "369", "296", "#FFFFFF", true);
so.write("flashcontent");
// ]]>
</script>
</div>
with no luck. What is needed in order the get this to work?
Or, if nobody has tried this method, what else will work with DNN to avoid this issue?