Thanks for your reply, have solve the problem. Just change the execution sequence. render the charter first and set the xmlurl later. Before:
this.myChart.setXMLUrl(flashVars.data_file); this.myChart.render(this.config.chartCont); Now:
this.myChart.render(this.config.chartCont);
this.myChart.setXMLUrl(flashVars.data_file);
Tested on IE,OPEAR,CHROME,FIREFOX