green
06-06-2006, 06:35 PM
Hi,
I'm trying to design a tool for learners of Spanish which compiles a series of Spanish phrases to create completed letters. The first part I have done and the user is finally presented with a number of separate textboxes each one with one phrase (in order) of the completed letter.
For example: 1st box "Hola,"; 2nd box "¿qué tal?" etc. etc.
(Code:
<form name="yourform1">
<p style="font-family:Arial,sans-serif; font-size:10pt; margin-top:1; margin-bottom:1;" align="left"><font face="Arial"><span style="font-size:10pt;">
<input type=text name=msgs1 size="28" style="background-color:rgb(247,225,213); border-style:none;">
<input type=text name=msgs2 size="28" style="background-color:rgb(247,225,213); border-style:none;"></span></font></p>
</form>
My question is: HOW CAN I SEND ALL those values (all phrases together) to one textbox so they appear in an easily copiable final letter eg.:
Final letter textbox: Hola, ¿Qué tal? etc. etc.
(Code:
<form name="form10">
<p><textarea name="complete_letter" rows="20" cols="50"></textarea></p>
</form>)
Of course, the user could copy the values one by one but I'm looking for a one click alternative eg. highlighting all textboxes together and then copy and paste to final textbox, (or is that impossible?) or a passText function.
Is there any way to do this? I'd greatly appreciate anyone's help?
(Please talk to me like a beginner programmer!!!)
Regards, Green
I'm trying to design a tool for learners of Spanish which compiles a series of Spanish phrases to create completed letters. The first part I have done and the user is finally presented with a number of separate textboxes each one with one phrase (in order) of the completed letter.
For example: 1st box "Hola,"; 2nd box "¿qué tal?" etc. etc.
(Code:
<form name="yourform1">
<p style="font-family:Arial,sans-serif; font-size:10pt; margin-top:1; margin-bottom:1;" align="left"><font face="Arial"><span style="font-size:10pt;">
<input type=text name=msgs1 size="28" style="background-color:rgb(247,225,213); border-style:none;">
<input type=text name=msgs2 size="28" style="background-color:rgb(247,225,213); border-style:none;"></span></font></p>
</form>
My question is: HOW CAN I SEND ALL those values (all phrases together) to one textbox so they appear in an easily copiable final letter eg.:
Final letter textbox: Hola, ¿Qué tal? etc. etc.
(Code:
<form name="form10">
<p><textarea name="complete_letter" rows="20" cols="50"></textarea></p>
</form>)
Of course, the user could copy the values one by one but I'm looking for a one click alternative eg. highlighting all textboxes together and then copy and paste to final textbox, (or is that impossible?) or a passText function.
Is there any way to do this? I'd greatly appreciate anyone's help?
(Please talk to me like a beginner programmer!!!)
Regards, Green