Sometimes I get "success", sometimes I get "no success, no error"
What gives? Same results across the wire as far as I can see...
//=========================
var baseXML = new XML();
var baseURL = "http://pbG42.local/cgi-bin/fRealWidget_PG.cgi";
baseXML.ignoreWhite = true;
baseXML.onLoad = loadXML;
// also, button to trigger it
//---
//---------------------------------
function loadXML(success:Boolean):Void {
if (success) {
//process XML content
trace("laodXML - success" );
trace (" loaded = " + this.loaded);
trace( this);
} else if (this.status == 0) {
trace( "no success, no error" );
} else {
//display error message
trace("loadXML - error " + this.status);
}
}
darkblueB - 26 Nov 2007 04:16 GMT
using Flash Professional v8.0
darkblueB - 26 Nov 2007 06:39 GMT
y, and this.loaded comes back as FALSE, success is FALSE,
but the XML response string is there ?!
weird