Skip to main content
Participant
September 2, 2023
Question

How to continue text to next line.

  • September 2, 2023
  • 1 reply
  • 3848 views

Working on making a customer's work order form fillable as PDF. There are a few cases like this where, if needed, text should continue on the line below. I currently have multiple fields with a keystroke script setup to go to next field if full. This, however, will cut words off at the end of a line. Is there a way to carry the unfinished word to the next field, or another script or solution to make this better? Current script example:

 

// Move to next field when this one is full

if (event.fieldFull) {

getField("Customer Name 2").setFocus();

}

 

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
September 3, 2023

There's no "neat" solution for this problem, I'm afraid.

You should ignore the first line and use a multiline text field for the rest.