Actionscript 2 loading XML in FF and chrome but not in IE

MasterJ12105

New Member
I'm trying to load xml into my flash movie, this is working fine in FF and chrome but not in IE. The feed is http and there is an appropriate crossdomain.xml, but the value for success returns false when loading the xml feed from the same domain or from another domain. Can anyone help me understand where IE is having troubles with this onLoad() method.\[code\]var xmlFile = 'http://mydomain.co.uk/can-do/?mfeed=http://rss.mydomain.com/rssquery.ashx?cy=UK&pp=20&sort=rv.di.dt&baseurl=mydomain.co.uk';var xmlCount = 3;var xmlData:XML = new XML();xmlData.ignoreWhite = true;xmlData.load(xmlFile);xmlData.onLoad = function(success:Boolean) : Void { _root["job_0"]["jobtitle_0"].text = success;}stop();\[/code\]
 
Back
Top