Hello all,
I have a quick question. I have an array made up of nodes pulled from an XML file. Is it possible to change the text attributes (i.e. color or alpha) of one of these chunks of text.
So a very typical situation. XML is loaded into arrays. The text is loaded with a for loop into an empty movieslip. Looks like this:
text_obj.xmlNode1[n]
So lets say I want to do something to the color of array position 1. I set up a little function…
dummyButton.onPress = function(){
text_obj.xmlNode1[0].color = 0xff0000;
}
Seems like it should work, but doesn’t Can I do this with dynamic text? Is there a workaround? I basically need to call out portions of the text during an animation. Think animated text highlighting.
Thanks!