andymarsh Report post Posted February 9, 2008 (edited) Hi, We've been using Fusion Charts in FileMaker 9 successfully on Mac. Installing the update breaks charts in FileMaker 9 web viewer on Mac OSX 10.5. The chart doesn't render, all that is displayed is "FusionCharts." text. The following code is at fault, removing it from the .js file fixes things and the chart displays. getSWFHTML: function() { var swfNode = ""; if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { netscape plugin architecture swfNode = ' width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" '; swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" '; var params = this.getParams(); for(var key in params){ swfNode += [key] +'="'+ params[key] +'" '; } var pairs = this.getVariablePairs().join("&"); if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; } swfNode += '/>'; } else { // PC IE swfNode = ''; swfNode += ''; var params = this.getParams(); for(var key in params) { swfNode += ''; } var pairs = this.getVariablePairs().join("&"); if(pairs.length > 0) {swfNode += '';} swfNode += ""; } return swfNode; }, Edited February 9, 2008 by Guest Share this post Link to post Share on other sites
FusionCharts Support Report post Posted April 22, 2010 Hi, Could you please try the attached js file? FusionCharts.zip Share this post Link to post Share on other sites