I have a function which cycles through an array and adds lines of text to a textField.
for (var i:int = 0; i < results.length; i++) {
var furnList:Array = results*.split("#");
desc = furnList[0];
url = furnList[1];
label.appendText(desc + "
");
}
addChild(label);
Is it possible to add an event listener to each line of text? Or is there a better way of doing this?