Try this adapted for your script:

mioxml = new XML(); mioxml.ignoreWhite = true; mioxml.load("filexmlmio.xml"); mioxml.onLoad = function(success) { if (success) { // fai quello che ti pare tanto è tutto caricato magari puoi fare play(); } else { _root.newsMovie.newsText = "Non ho caricato il file xml"; } } }

bye