I have a chart loaded with swfobject. How can I load the variables dynamically? As in changing the values without reloading the swf? Here is my js:
swfobject.embedSWF(
"/media/open-flash-chart.swf", "chart-demo",
"400", "250", "9.0.0", "/media/expressInstall.swf",
{"data-file":"{% url monitor-graph %}"} );
Im using django, so I grab the data from the view pointing at "monitor-graphs". Thanks.