I am sure you have all noticed the annoying "Click to activate and use this control" messages you get on pages with flash, windows media or other embedded objects. Well there is a way around that, using some java script offered by both Adobe (http://www.adobe.com/devnet/activecontent/articles/devletter.html) and Microsoft (http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/overview/activating_activex.asp). Silly that it even exist if there is a way around it, but that is a different subject.
If you go to www.wiredneuron.com/dnn you will see that the flash at the top works without having to click first. Which is exactly what the javascript is supposed to do. However, if you click on any link you will see that the flash does not even load. Even if you click the "Home" link, this happens. Seems that it happens to evey page except for www.wiredneuron.com/dnn.
I am not sure why it would work fine on the main page but not on the rest.
I placed the following into the <head> of the default.aspx located in the dnn root:
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script src="Scripts/AC_ActiveX.js" type="text/javascript"></script>
The scripts were placed in www.wiredneuron.com/dnn/Scripts
The following is the HTML from my skin.html file:
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body bgcolor="#000000" text="#FFFFFF">
<table width="900" border="0" align="center">
<tr>
<td width="900" height="25" valign="top">
<table width="900" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" background="TOP.jpg"><table width="900" border="0" cellspacing="0" cellpadding="0">
<tr valign="middle">
<td width="35" height="25" nowrap="nowrap"> </td>
<td height="25" align="left" nowrap="nowrap">[USER] | [LOGIN]</td>
<td height="25" align="right" nowrap="nowrap">[CURRENTDATE]</td>
<td width="35" height="25" nowrap="nowrap"> </td>
</tr>
</table></td>
</tr>
<tr>
<td>
<div align="center">
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','900','height','100','src','<%= SkinPath %>Blue_Synapse2','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','<%= SkinPath %>Blue_Synapse2' ); //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=7,0,19,0" width="900" height="100">
<param name="movie" value="Blue_Synapse2.swf" />
<param name="quality" value="high" />
<embed src="Blue_Synapse2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="900" height="100"></embed>
</object></noscript>
</div></td>
</tr>
<tr>
<td height="25" background="btm.jpg"><table width="900" border="0" cellspacing="0" cellpadding="0">
<tr valign="middle">
<td width="30"> </td>
<td nowrap="nowrap">[SOLPARTMENU]</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td width="900" valign="top"><div align="center">[BREADCRUMB]</div>
<div align="center"></div></td>
</tr>
<tr>
<td valign="top"><div align="center">[CONTENTPANE:3]</div></td>
</tr>
<tr>
<td width="704" valign="top"><table width="900" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td width="150"><div align="center">[CONTENTPANE:2]</div></td>
<td width="25"><div align="center"></div></td>
<td><div align="center">[CONTENTPANE]</div>
<div align="center"></div></td>
</tr>
</table></td>
</tr>
</table>
<table width="900" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center" bgcolor="#9999CC"> </td>
</tr>
<tr>
<td align="center" bgcolor="#0000CC"> </td>
</tr>
<tr>
<td align="center" bgcolor="#000066"> </td>
</tr>
</table>
</body>
</html>
Can anyone offer any assistance with this?