Hi. I'm also getting "Internet: Unable to connect to network. Try again later" from my FL2.0 swf.
It's generated by the code below.
When i test it on a physical N95 8GB by loading the swf directly from the file manager I get the error.
If i upload the same swf to my webserver, and browse to it via the browser using the URL, it loads up fine. The swf is published with 'Access Network Only' if that helps. Can anybody shed any light please?
Code:
var htmltext:String = ""
var feedcount:Number = 0;
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function(success)
{
if (success)
{
var nodes:Array = this.firstChild.firstChild.childNodes;
for( var i in nodes )
{
if (nodes[i].nodeName == "item")
{
feedcount++;
if (feedcount > 2)
{
break;
}
htmltext = htmltext + "<b><font size='12'>" + nodes[i].childNodes[0].firstChild + "</font></b><br /><font size='10'>" + nodes[i].childNodes[3].firstChild + "</font><br /><font size='10'>" + nodes[i].childNodes[4].firstChild + "</font><br /><font size='10' color='#0000ff'><a href='" + nodes[i].childNodes[1].firstChild + "' target='_blank'>Link to Page</a></font></br /><br /><br />";
rsscontent.htmlText = htmltext;
}
}
}
}
xml.load("http://www.myurl.co.uk/whatever.xml");