Copy link to clipboard
Copied
I'm using Acrobat Pro DC and I'm trying to link two form fields in such a way that the text from box1 will overflow into box2. Anyone know how to do this? I'm a novice so I'll need some step by step help. I've done some research but have only found solutions for previous Acrobat versions so the instructions are essentially useless. Please and thank you!
I've done it!! You just edit the custom keystroke script and enter this:
if ( event.fieldFull || event.willCommit )
this.getField("name of overflow field goes here").setFocus();
Only problems I have run into is that you cannot have the fields linked and there cannot be any special characters or spaces in the field name.
Copy link to clipboard
Copied
There's no way of doing it seamlessly in PDF forms, as far as I know.
Copy link to clipboard
Copied
I've done it!! You just edit the custom keystroke script and enter this:
if ( event.fieldFull || event.willCommit )
this.getField("name of overflow field goes here").setFocus();
Only problems I have run into is that you cannot have the fields linked and there cannot be any special characters or spaces in the field name.
Copy link to clipboard
Copied
How did you handle following issues?
Copy link to clipboard
Copied
Also, note that that the last character typed into the first field will be dropped when the focus is set to the second field. This and the things mentioned by Bernd are what try67 meant by his comment of "no way of doing this seamlessly".
Find more inspiration, events, and resources on the new Adobe Community
Explore Now