views:

1898

answers:

2

I have a dynamic text field (textLabel) inside a Movie Clip (textMC). I am tring to set the text attribute like this:

textMC.textLabel.text = "this is my text";

This works fine, until I add key frames to textLabel. I need to animate textLabel. But when it hits a keyframe, it changes back to the text I created on the stage. How can I make the actionscript changes persistem over several keyframes?

A: 

Be sure in all the keyframes you textfield is named 'textLabel'. If in a frame it's called different then your code won't work.

victor hugo
Sorry, I was not descriptive enough. I have added some detail.
Armitage
I have decided to removed the timeline animation and I am now doing the animation in Actionscript. Tedious, yes, but its working.
Armitage
A: 

I have this same problem, only mine just doesn't work even without having multiple keyframes. I'm puzzled