How to have text which overflows textbox to another textbox | Community
Skip to main content
New Participant
March 18, 2011
Question

How to have text which overflows textbox to another textbox

  • March 18, 2011
  • 12 replies
  • 21382 views

This is something so basic in a word processor...but I cannot figure it out for the life of me. I have a "textbox" which in essence needs to flow over 3 pages. I created the three textboxes...set the source to the same name...now how to I get them to link together so the text can flow from one to the other to the other as text overflows the box?

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

12 replies

New Participant
March 18, 2011

Wow...that appears to be a LOT of work for a very simple issue which other things can handle without any issue. I even watched a video put out by Adobe and they were talking about text threads and linking them that way. (just clicking on overflow character and dragging it to the next box) I guess it is a feature which is available in the Mac version which is not available in the windows version. Why?

Niall_O_Donovan
New Participant
March 18, 2011

Hi,

One solution is to use a single textfield and then allow this to expand - See Layout palette "Expand to Fit" for the height. Then if you set the page with a Flowed layout, then if it expands beyond a page Acrobat/Reader will create a new page for the content to overflow onto.

See an example here: http://assure.ly/g80MVY. Look for the textfields on Examples 3 and 4.

If you really need three textfields then you could use script to jump to the next field once the current one is full. Although this wont be the best user experience because the change in focus to the next field may happen when the user is in the middle of a word.

To implement this you would put something like the following in the full event of each textfield:

xfa.host.setFocus(xfa.form.form1.page2.textfield2); 

Hope that helps,

Niall