> A shot in the dark. Verify the existence of the script
> [i]/CFIDE/scripts/CF_RunActiveContent.js[/i]. Open IE andhttp://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=...
> ash&promoid=BIOW
My solution to the problem was to strip out the JavaScript and use the
NOSCRIPT code. The following code also includes a fix for when you create a
chart in SSL mode (HTTPS), it alleviates the message that the page contains
secure and non-secure code:
<cfset sChartFormat = "flash">
<cfsavecontent variable="sChartContent">
<cfchart
format = "#sChartFormat#"
...
>
<cfchartseries
...
>
</cfchartseries>
</cfchart>
</cfsavecontent>
<cfif sChartFormat IS "flash">
<cfif CGI.HTTPS IS "on">
<cfset sChartContent = Replace(sChartContent, "http://", "https://",
"all")>
</cfif>
<cfset sChartContent = REReplaceNoCase(sChartContent, "</?NOSCRIPT>", "",
"all")>
<cfset sChartContent = REReplaceNoCase(sChartContent, "(?:<script.*?>)((\n|\
r|.)*?)(?:<\/script>)", "", "all")>
</cfif>
#sChartContent#
Jortegon - 19 Jan 2010 20:15 GMT
Thank you jerrybucci!!! Your solution works for me perfectly!!! :)
>My solution to the problem was to strip out the JavaScript and use the
>NOSCRIPT code. The following code also includes a fix for when you create a
[quoted text clipped - 32 lines]
>
>#sChartContent#
zapdos - 07 Jul 2010 16:09 GMT
This solution was great. It worked for me. I was getting the problem in IE
with CFAjax (another reason to hate ADOBE).
thanks jerrybucci
>My solution to the problem was to strip out the JavaScript and use the
>NOSCRIPT code. The following code also includes a fix for when you create a
[quoted text clipped - 32 lines]
>
>#sChartContent#