Hey! I try to find out the text size of a textfield in the following example
field.text = aaaaaaa ;
trace(field.textWidth);
setTimeput(function(){
field.text = aa ;
trace(field.textWidth);
},2000)
The number is always the same. Why? I need the text width so I can adjust size for a background movieclip. Thx!