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

To split a field in case overflow ....

BeginnerX
Registered: Dec 8 2008
Posts: 9

Hi all,

My form got a text field, say A, multiple line input which is not limited such that a + sign may occur in case too many text are typed.

What I want is:
By pressing a button, those text will be split and part of it fill up B, and the rest all goes to C.
(A and B are of the same width and height but B is not scrollable).

On the button's click, I write JS that place each time 1 character from A to B and then immediately check something like event.FieldFull, but seems it doesn't work at all, is this property not using this way?

Thanks in advance.

My Product Information:
LiveCycle Designer, Windows
BeginnerX
Registered: Dec 8 2008
Posts: 9
One more point, my application is built under Acrobat Designer, just dunno if it is right to put these codes triggered by a button click, or any syntax required:

if (event.FieldFull)
{ do something to split the text }

????
Can someone help?