Hay, i have a flash movie which loads a static XML file, the script for this looks like
list = "list.xml";
var listXml:XML = new XML();
listXml.ignoreWhite = true;
listXml.load(list);
I want to be able to change this 'list' variable dynamically, perhaps using flashVars.
like this
var flashvars = {
xmlpath: "list.xml"
};
Any idea's how to go about doing this?