Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
// Move to next field when this one is full
if (event.fieldFull) {
getField("NameOfNextFieldGoesHere").setFocus();
}
Copy link to clipboard
Copied
This isn't working for me. I copied/pasted the code you have, and still I getting only one line that will not flow into the next text field.
Copy link to clipboard
Copied
See this thread:
If you still need advice, then please post your question to a new thread.
Copy link to clipboard
Copied
you need to set the limit of characters for the first textbox to be able to automatically move down to the next text box
Copy link to clipboard
Copied
Hi there
I've got FirstName and LastName as two fields due to pre-filling in a form that integrates into my adobe pdf.
I want the two fields to look like this:
First Name space Last Name, whereas because they are two fields they currently look more like:
First Name space space space space....... Last Name.
I've tried this suggestion and cannot get it to work. See screenshots attached. Not sure what i've done wrong, but help1
Thanks in advance,
Sa
Copy link to clipboard
Copied
I am not an expert but I don't think that this javascript addresses your question exactly. I used this to have text flow from one text field to another in a multi-line, paragraph area of a form, when the text will go beyond the boundaries of the fields. In your case, you have two text boxes that will most likely never be completely full unless someone has a very long name. Can you use one text box for "name" instead of breaking it up into first and last?
Also, to troubleshoot if it's working, I would keep typing in the first box long enough until the text jumps into the second box automatically. If it does, then technically the JS worked, it just doesn't look as clean as you want.
Copy link to clipboard
Copied
Set the alignment on the first name to right justified.
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Thanks so much George. This was immensely helpful and solved my problem. Your clear explanation/instructions are much appreciated and were spot on.
Copy link to clipboard
Copied
This worked perfectly for me too, thank you so much George!
Copy link to clipboard
Copied
This was excellent. Thanx a heap!!!
Copy link to clipboard
Copied
Yay! Thanks, George!!
Copy link to clipboard
Copied
I am following George's instructions above, however it does not seem to be working for me. I copied and pasted it exactly as posted above, and then replacing
"NameOfNextFieldGoesHere"
with the name of my field, and making the appropriate changes to the font size and scroll long text.
Do I need to remove any of the spaces from the code as posted above? Or is it intended to have the extra blank lines an spaces?
Copy link to clipboard
Copied
When you replace "NameOfNextFieldGoesHere" make sure you keep the quotation marks when you type in your field name. Also, make sure that you type the field name precisely as it is on the form i.e., upper/lower case or all caps, and include any spaces.
Copy link to clipboard
Copied
I know this is an old thread, but just want to show my appreciation for the guidance George. Today is my first attempt at creating a fillable form PDF; I'm working it out slowly and this was super helpful!
Copy link to clipboard
Copied
Thank you for this! A few years later, and people are still using it. You solved a problem for me with a few custom keystrokes.
Apreciate it.
Andy
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied