Changing Attributes
In the Description class for this .fla, I'm needing to change the attribute assigned to the TitleTxt variable. For example, from this
private function changeTitle() {
// change title text
TitleTxt.text = node.attributes.title;
to this
private function changeTitle() {
// change title text
TitleTxt.text = node.attributes.header;
I've tried doing this as I've noted above (and changed the data.xml file to reflect the change from title="something" to header="something", but can't get the TitleTxt content to show up. Am I needing to make another change somewhere to make this work?
The TB.data from that same class is showing fine and I can see that ThumbnailsList is getting the _global.FDESCR data due to being able to see the TB.data.
I can provide all code info if needed, but if this "title" attribute can't be changed, please let me know. I'm looking to purchase a special commercial license of this product, but have to know I can make it work as I need it to.
Thanks...
|