Answered
Help, please!
I want to make a multiline text field with a pre-fixed font size (8 pt), but I want it to reduce automatically if needed to fit the text box, as if it was set in automatic font size. Is it possible? Is there any script to make this? The estimated length of the text in 8 pt should be 50 characters.
Thank you in advance,
Ardid
P.S. I am using Acrobat 9 Pro Mac
For example, you can use something like this as the validation script:
if (event.value.length>50) event.target.textSize = 8;
else if (event.value.length<50) event.target.textSize = 12;
- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com