These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Newbee question...How to add a test field into another textfield?

chirpy
Registered: Oct 28 2008
Posts: 3

Everytime i try to add a a test field into a text box i am unable to do so. If i add a text field the whole text becomes the text field itself erasing all the other text i have entered. The text is a part of a table row which is flowed. Please help.

My Product Information:
LiveCycle Designer, Windows
Runolfr
Registered: Oct 1 2008
Posts: 119
I'm not sure exactly what you mean.

You're trying to concatenate a string from one text field onto the end of another?

As far as I know, you would need to do that in javascript. The following should do it, although there may be easier ways:

var newText = text1.rawValue + text2.rawValue;
text1.rawValue = newText;