Hey arkitx, thanks for the assist. Yeah I can load data all day long using:
if (loaded){}
no problems, it's pulling the data that's tweeking me.
When I use your code I'm a little confused as to where it populates my txtfields. I currently have this:
ActionScript Code:
function showText(xml:XML) {
trace("Permission: "+permission);
var node = xml;
for (var i = 0; i<node.length; i++) {
if (xml[i].nodeName == "name") {
trace(xml[i].firstChild.nodeValue.split(",")[1]);
ffname1_1_txt.text = xml[i].nodeName == "name";//this is where i would pull the name for "name"
}
if (xml[i].nodeName == "typerank") {
trace(xml[i].firstChild.nodeValue);
ffscore1_1_txt.text = xml[i].nodeName == "typerank";//this is where i would pull the score for "typerank"
}
}
}
but my text fields are still empty. I know I must sound like a total newb, mostly because I am . . .
thanks!