Hi,
I am currently facing some problems loading an online XML file. The strange thing is,
that when I test the project in Adobe Device Central, the XML file DOES get downloaded & parsed,
but when I run the swf on my device, it doesn't.
In the onLoad handler of the XML object, the success-parameter returns "false", even though my device has asked me for a network connection.
-> The publish settings are set to "Access Network only" by the way!
the code:
Code:import mx.utils.Delegate; var resultXML = new XML(); resultXML.ignoreWhite = true; resultXML.onLoad = Delegate.create(this, locationFileLoaded); resultXML.load("http://twitter.com/statuses/user_timeline/16983611.rss"); //resulthandler function locationFileLoaded(success:Boolean):Void{ if(success){ fscommand2("StartVibrate",800,10,1); } }




