I just need some guidance here... I am using 4 or 5 input text fields, name, age, score, etc. etc. I also have a couple combo boxes with about 4 choices each, and 2 radio (yes or no) buttons.

This is all on frame 1. The hope is the user will come in and fill out the form, checking the appropriate boxes and radios, and then filling in the input text boxes.

There is then a submit button. Once clicked we go off to frame 2. Here I have a single multiline dynamic text box. What I am trying to do is get the infor from Frame 1 into the text box on frame 2, all neat and readable with spaces, line breaks, etc.

I have gotten as far as to get the input text info over, but not the check boxes or radios, and the input text shows up as one word.

Example if the user says Name: Joe, Age: 23, Score: 50,000, Do you Like Games? Yes radio checked, Interests: RPG checked, Action Checked, Adventure checked.

I want Frame 2 to show:

-------------------------------------
Welcome Joe
Your age is 23
Your Score is 50,000

Because you like games and your interests include:
RPG
Action
Adventure

We want you to do something funny!
---------------------------------------------

Notice that all info is on it's own line and there is added text, also notice the extra carriage returns.

Currently I get this:

-----------------------
Joe2350,000
------------------------

Any help would be appreciated!

~MoN