Hi All ! does anybody know if there is another way to check the network connection than the "Head request" ? I mean testing not from an URL, but on something else, maybe more reliable ?
var headRequest:URLRequest = new URLRequest(); headRequest.method = "HEAD"; headRequest.url = "http://www.google.com"; var connectTest:URLLoader = new URLLoader(headRequest); connectTest.addEventListener( HTTPStatusEvent.HTTP_STATUS, connectHttpStatusHandler ); Thx for Light !

