text( ) method should be used to return only the text nodes of an element
package{
import flash.display.Sprite;
publicclass Main extends Sprite{
public function Main(){
var fruit:XML = <fruit>
<name>Apple</name>
An apple a day...
</fruit>;
for each ( var textNode:XML in fruit.text( ) ) {
trace( textNode );
}
}
}
}