how to do wordwrap in text fields. | Community
Skip to main content
November 9, 2006

how to do wordwrap in text fields.

  • November 9, 2006
  • 5 replies
  • 7110 views
Hey guys. Here's my problem;



The person types in their answers into the form that I've created through Adobe Designer. When I view online or print out the form, the entire answer for any text field is not seen. Their answer will scroll towards the right endlessly without wrapping down to the next line. In essence, the wordwrap is not on. Is there a way to ensure that wordwrap is on and that the text skips down to the next lines so that I can see and print it out correctly?



thanks,

dean
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

5 replies

December 7, 2006
If you go into the Paragraph tab, you'll see the controls for text alignment. You can control right/left/center/justify on the top left, and top/middle/bottom on the top right. If the paragraph window's not open by default, you can open it by going to Window >> Paragraph.



Regards,

Dave
December 7, 2006
I was having this same issue, and the script was a big help - thank you. I am having one further problem: I have a section of my form which requires multiple lines. When I create the text box (it's an incident report) the cursor starts in the middle of the box. How can I get the alignment to be at the top? I would like them to start typing at the top of the box as opposed to dead center.



I would appreciate any help!
November 16, 2006
John and David-

Thanks for these helpful tips. I will put these into action. Again, I really appreciate it as I was clueless to figure this out.
November 16, 2006
Something else to consider, if you want to have expandable text fields, you'll need to save your document as a dynamic .pdf. Static .pdf's will still leave you with a small "+" sign in the lower right corner of the text field if the user fills all the available space and continues to type. You may want to consider putting in a script to limit the scrolling of text fields, so that the user cannot type beyond the limits of the field.



For example:



var myDoc = event.target;

var f = myDoc.getField("formname[0].subformname[0].fieldname[0]");

f.doNotScroll = true;



Put this script into the initialize event of the field you want to limit the scrolling of, and change the names to match the field you want to specify.
November 13, 2006
Hi Dean



select the field you want to wrap. Click on the object tab and then the field tab. The object tab is available through the Window menu if not visible. Click on the "Allow multiple lines" tickbox. Also, you will need to ensure that the field can expand and that any subforms around this field can also expand. Expanding tickboxes are available through the layout tab.



John