Hi
I'm relatively new to Actionscript coding and have a small problem in Flash.
I want to track the x property of a symbol (in this case a movie clip) and display the x property of that movie clip in a text field. However I want the text field to update the x property of the movie clip as it moves across the workspace. At the minute all the code I have does is track the starting x property and display that in the text field.
Here's my code:
var xCo = box.x; //Box is the symbol's instance name
xCo_txt.text = xCo; //xCo_txt is the text fields instance name
Thanks for any help and if any more information is required please ask and I will provide it.
Andy