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

Continuing text in multiple text fields

billh098
Registered: Jun 6 2009
Posts: 47

I have a form with multiple text fields and I want to be able to type in one field and then when the end is reached it continues on to the next line or field. Not sure how to do this.

My Product Information:
Acrobat Pro 9.1.1, Windows
tedpadova
ExpertTeam
Registered: Dec 31 2005
Posts: 848
Presume you have two fields "Text1" and "Text2"

In Text1 you want the overflow to go to Text2.

Open the Text1 Text Field Properties and click the Format Tab.

Click Edit adjacent to Custom Keystroke Script and type the following in the JavaScript Editor:

if ( event.fieldFull || event.willCommit )
this.getField("Text3").setFocus();

ted

The author of numerous books on Acrobat, Photoshop, Illustrator and the Adobe Creative Suite, and an international speaker on Adobe Acrobat, Ted Padova is a well-known PDF guru.

tedpadova
ExpertTeam
Registered: Dec 31 2005
Posts: 848
Ooops. In line 2 the code should be:

this.getField("Text2").setFocus();

The author of numerous books on Acrobat, Photoshop, Illustrator and the Adobe Creative Suite, and an international speaker on Adobe Acrobat, Ted Padova is a well-known PDF guru.