Passing Input Text To Dynamic Text
I am not much of an actionscript guy, and I need a little help with something.
I have two separate text input fields (line1 and line2) that I want to pass their contents to two dynamic text fields (result1 and result2) within the same frame.
line1 ---> result1
line2 ---> result2
I would like to do this so that when you type in the text it updates at the same time as you type).
Can you help?
Maybe you can adapt this...
Code:
line1.onChanged = function(tf_txt:TextField) {
result1.text = tf_txt.text;
};
line2.onChanged = function(tf_txt:TextField) {
result2.text = tf_txt.text;
};