Well i,m trying to get Data in a var string out of an xml by looping through a array ; see example
It works if I type in bv.
string = symbolAtrributes.x_pos;

but
string = symbolAtrributes.eval(itemAttributesArray[h]);
or
string = symbolAtrributes.itemAttributesArray[h];

doesn't work??


example;

var itemAttributesArray = new Array('type','id','date','x_pos','y_pos')


for(h=0; h < itemAttributesArray.length;h++){
string = symbolAtrributes.eval(itemAttributesArray[h]);
}