Skip to main content
Participant
March 20, 2012
Question

Is there a way to dynamically display the y value of a symbol?

  • March 20, 2012
  • 1 reply
  • 447 views

In the finished swf, I would like to display the y value of a symbol...as in display the altitude of a plane as the user moves the object vertically.

This topic has been closed for replies.

1 reply

Ned Murphy
Legend
March 20, 2012

Yes, create a textfield and display the y property of the object, updating it anytime it changes....

theTextField.text = String(theMC.y);

Participant
March 20, 2012

Thanks Ned. I'll try to make it work. Still researching.