jerry
November 6, 2002, 5:26pm
1
Hello there! =)
Oki, here goes, I have a input textbox, and below this box I would like to have a dynamic textbox that “duplicates” whats written in the inputbox!
For example, when you type your name in the input box, the dynamic text box would follow, at the same time!
How can this be done!?
system
November 6, 2002, 6:05pm
2
Thats simple!! Have the same variable name in the property inspector for both of them.
Hope this helps!!
system
November 6, 2002, 6:09pm
4
For example:
make the variable name of the input box “input”
and make the variable name of the dynamic box “follower”
now you can make a 2-frame-loop or assign the actions to a movieclip.
if you assign the following actions to a movieclip then it should look something like this:
onClipEvent(enterFrame) {
_root.follower = _root.input;
}
To make a 2-frame-loop assign the actions:
_root.follower = _root.input;
to the first frame of your movie and make a new keyframe in frame to! and that’s it!
system
November 6, 2002, 6:14pm
5
i wanted to answer this now:
enter_btn.onRelease = function() {
output1.text = input1.text;
}
sorry,
yours,
h88