onClipEvent (mouseDown) {
redwidth=getProperty ( _root.red, _width) ;
_root.displayvalue.text=redwidth;
}
Because this is inside an onClipEven triggered by a down click on the mouse button, the movie will first display the default text value on the stage. After that click, however, the target fields text will change, displaying the dynamic value called by the function--as long as you leave the quotes off so that Flash recognizes that it needs to display the value of the variable. If you leave the quotes on, then it will display the actual word redwidth (or whatever youve named your variable).


