krugliak Report post Posted January 14, 2008 Hello All the Examples shows how to create the HTML file. the examples shows path for the DATA.xml and SWF file that sits in the same directory. i need to use a UNC to this directory because i use the HTML in a far browser. the problem is that the param name="movie" cannot get a specific UNC path. Why? example that Works: <html> <head> <title>My First FusionCharts</title> </head> <body bgcolor="#ffffff"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="900" height="300" id="Column3D" > <param name="FlashVars" value="&dataURL=tblbi03c$FusionChartsAmiFirstChartData.xml"> <param name="quality" value="high" /> <param name="movie" value="..FusionChartsColumn3D.swf" /> <embed src="tblbi03c$FusionChartsAmiFirstChartColumn3D.swf" flashVars="&dataURL=tblbi03c$FusionChartsAmiFirstChartData.xml" quality="high" width="900" height="300" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> </body> </html> example Not Works <html> <head> <title>My First FusionCharts</title> </head> <body bgcolor="#ffffff"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="900" height="300" id="Column3D" > <param name="FlashVars" value="&dataURL=tblbi03c$FusionChartsAmiFirstChartData.xml"> <param name="quality" value="high" /> <param name="movie" value="tblbi03c$FusionChartsAmiFirstChartColumn3D.swf" /> <embed src="tblbi03c$FusionChartsAmiFirstChartColumn3D.swf" flashVars="&dataURL=tblbi03c$FusionChartsAmiFirstChartData.xml" quality="high" width="900" height="300" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> </body> </html> THNKS, Amir Krugliak Share this post Link to post Share on other sites
Pallav Report post Posted January 14, 2008 Amir, To get UNC file for chart, we would recommend setting up a local proxy page that would get the file and relay to the chart. Share this post Link to post Share on other sites