notiXML = new XML();
notiXML.ignoreWhite = true;
sectionPreloader("goOn");
notiXML.load("http://localhost/notixml.php?num="+random(999));
trace("estado "+notiXML.status);
notiXML.onLoad = function (success)
{
if (success)
{
var root = this.firstChild;
trace("Noti publi: "+root.childNodes.length);//arroja 17
var j = 1;
while (j <= root.childNodes.length)
{
var winot = _parent.contenido.prodnoti.scroller.holder.attachMovie("pestana", "win" + j,j);
trace("ruta "+winot);
winot.id = root.childNodes[j - 1].attributes.id;
winot.connoti.text = root.childNodes[j - 1].firstChild.nodeValue;
trace("ver:"+winot.connoti.text);
winot.winnoti.titnot.text = root.childNodes[j - 1].attributes.tit;
winot.preloadThumb(root.childNodes[j - 1].attributes.ruta,"carga");
winot._y = (210*j)-190;
winot._x = 0;
++j;
} // end while
sectionPreloader("goOff");
//return (null);
} // end if
};
