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

turn off show text field overflow indicator dynamically

humayoo
Registered: May 18 2009
Posts: 12

Hello All,
 
how to turn off show text field overflow indicator(+) dynamically(means using java scirpt)? i search from last one day,but i can not find any solution.please help me.
 
thanks

My Product Information:
Acrobat Pro Extended, Windows
gkaiseril
Online
Expert
Registered: Feb 23 2006
Posts: 4307
Not possible. Your choices are to make the field large, limit the number of characters for the field, set the font size to auto, or create a dynamic form using LiveCycle Designer

George Kaiser

sclark1
Registered: Feb 23 2009
Posts: 20
You can disable the "Scroll long text" option through the doNotScroll property.

ex:

var a = this.getField("FieldName")
a.doNotScroll = true;
humayoo
Registered: May 18 2009
Posts: 12
thanks for replying.if it is not possible then can we turn on "Limit length to Visible Area" dynamically(using java script) ?

thanks