autorefreshing swf calling data from XML file

DjesikaKok

New Member
So i need to make an application witch is calling some data from XMl file. The XML data is going to be dynamic so i need to make an auto refresh in my swf. I've tried this\[code\]var interval = setInterval(my_function, 10000);\[/code\]because i have \[code\]my_xml = new XML();my_xml.load("direktno.xml");my_xml.onLoad = my_function;my_xml.ignoreWhite = true;function my_function(){ my function }\[/code\]But this only refreshes \[code\]my_function\[/code\] without reloading the XML file. Any ideas> Thank you
 
Back
Top