[EMAIL PROTECTED] wrote: > has anyone used cfchart on a secure page. I have a flash pie chart > and it keeps asking if I want to display the page as it contains both > secure and insecure items. > > Brian Knott
I'd imagine it's because of the non-secure URL in the codebase attribute of the <object> tag that embeds the flash. Try capturing the result of the <cfchart> inside a <cfsavecontent>, then running a replace over it: ReplaceNoCase(myChart, "http://", "https://", "All"); Should do the trick. -- Lindsay Evans. Developer, Red Square Productions. [p] 8596.4000 [f] 8596.4001 [w] www.redsquare.com.au --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004
