hola
necesito usar indexOf()
me funciona bien así:
var str:String = "The moon, the stars, the sea, the land";
trace(str.indexOf("the"));
pero si el texto sobre el cual hago la busqueda lo tomo de un xml de esta forma: (NO me funciona)
otraVar = this.firstChild.childNodes[i].childNodes[1].firstChild.nodeValue; //otraVar toma el valor correcto del xml //
var str:String = otraVar;
trace(str.indexOf("the"));
//pero el indexOf no lo puede prosesar
alguna idea