Hi.
You should initialize concatArray as "". Other than that, if you're not seeing those characters, the font family you're using is probably not embedded.
But if all you want to do is to display the items from the array, starting from the index 1, in a text field, I think it's eaiser to use some methods from the Array class. For example:
textField.text = evArr.slice(1).join("");
Regards,
JC
... View more