Hi there, I am using ASP.Net (VB.Net) to generate some charts ... the output is the following code
<div id="chartdiv">
<script type="text/javascript">
var myChart4 = new FusionCharts("FusionCharts/Pie3d.swf", "myChartId4", "500", "300");
myChart4.setDataXML("<chart caption='Outcome of Accident' xAxisName='Type' yAxisName='Count' showValues='0' formatNumberScale='0' showBorder='1'><set label='A fatality' value='3' /><set label='A major injury or condition' value='2' /><set label='An injury to a member of the public meaning they had to be taken from the scene of the accident to a hospital' value='5' /><set label='An injury to an employee or self employed person preventing them from doing normal work for more than 3 days' value='1' /><set label='Non reportable' value='1' /><set label='Other' value='1' /><set label='Unknown at present' value='1' /></chart>");
myChart4.render("chartdiv");
</script>
</div>
This works absolutely fine in Firefox, Safari, Chrome but not in IE8 or IE7 when under SSL. It just seems to do nothing. I downloaded the SWFs from your site today so they are the latest version.