Anyone know of a way to have an input text box, a scrolling text box, and a send button that work in the way an instant message does?
Say you enter text in input box and click submit it shows in scrolling box.
Then you enter more text in input box and click submit and it shows up beneath what you previously typed.
??? Something very simple but I can’t figure out how to get the text to stay in the scrolling box.
Right now it’s very basic. myTxt is a dynamic box (no scolling) and when send_btn is clicked it just replace the text that was in there.
myTxt.text = "";
send_btn.onRelease = function() {
trace(input_txt.text);
_root.myTxt.text = input_txt.text;
}