hi,
For my Fl 3.0/AS 2.0 app, I get an error "Unable to load data" on my N79, if the xml that I am loading is not found. This happens while I am checking the onLoad event for the xml to carry on further functions. While on the emulator, I can trace the the onLoad event was not a success with the trace command in the else part.
********************************************
loadvid.onLoad = function(success)
{
trace("success" + success);
if(success == true)
{
parseTheXML();
}
else
{
trace("xml not found");
}
}
********************************************
I have observed the same error while on a slower connection also. How can I catch this error? What other events can be used to check that the request for the xml has been turned down or the xml cannot be found to be loaded?
Regards,
Supriya Tenany





