Ask a Question related to Macromedia ColdFusion, Design and Development.
-
CNaser #1
Charts Under SSL
I run an application with lots of charts. The application runs under SSL. The
problem is that some browsers (IE on XP especially) display the following
warning message: 'This page contains both secure and nonsecure items. Do you
want to continue?' I can't find a way to turn this warning off in IE 6.0. The
offending code in the chart out put is this line:
codebase='http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,2,0'
Since it is not an [url]https://.[/url].. url, the browser recognizes it as 'insecure'.
Any suggestions on how to overcome this?
CNaser Guest
-
Pie charts
can anyone give me an example or point me in the right direction of dynamically creating a pie chart? Thanks -
CF MX 7 and the charts?
We are planing on upgrading from version 6.1 to MX 7. I have read that the chart functions were overworked completely. We have some reports running... -
3 d pie charts
Does illustrator do 3-d pie charts. If so how? -
Need help with charts
I am trying to do a chart in Illustrator 8 but when I enter all the information I get a random bar first that goes up to 5000 even thought the... -
Using Charts.
right click the chart and select edit chart to enter the data you want. "Lee" <lee@nospam.com> wrote in message... -
xentrix #2
Re: Charts Under SSL
Make your call to cfchart from within a cfsavecontent, e.g.
<cfcsavecontent variable="mychart">
<cfchart .....>
</cfchart>
</cfcsavecontent>
Now do a Replace on the mychart variable, like so
<cfset mychart = Replace(mychart,"http://","https://") />
And then output it
<cfoutput>#mychart#</cfoutput>
Andy
xentrix Guest



Reply With Quote

