Re: Limiting access to fillable form PDFs
Also, be aware that if you attempt to execute the script after the digital signature is applied, it either won't work (if the document is locked by the signature) or it will cause the signature to be...
View ArticleRe: In Adobe Acrobat XI Pro, how do I validate a form field so that it's...
What should happen of field A is blank, if that's possible?
View ArticleRe: Acrobat form field that allows Reader user to browse and insert a picture...
zoatway, I'll have to check the most recent version of PDF Expert, but I know it simply didn't work with previous versions. I told users to manually clear by having a blank image available, but this...
View ArticleRe: Acrobat form field that allows Reader user to browse and insert a picture...
Mike, The buttonImportIcon method that has been discussed here is not available with Adobe Reader for mobile devices.
View ArticleRe: Text validation
Gearge my form is a complex audit risk form, it works very well, however the users complained that they dont have sticky notes to add reasons for reject etc. The form does not have room for a text...
View ArticleRe: Text validation
The code cold be something like this: if (getField("comment1").valueAsString) { // The "comment1" field is not blank } else { // The "comment1" field is blank }
View ArticleRe: In Adobe Acrobat XI Pro, how do I validate a form field so that it's...
When the form is initially opened, both fields will be empty. Field A will be manually filled, and field B will be calculated based on the sum of manual entries in fields C and D. The fields are...
View ArticleMake Read-Only Form into Fillable
I have a form that has mysteriously become read-only. I know that I can go through field by field and un-check the "read-only" box. However, I'm dealing with insurance forms that have a lot of fields...
View ArticleRe: In Adobe Acrobat XI Pro, how do I validate a form field so that it's...
OK, so you need to come up with a custom calculation script for field B that checks field A, and the calculated result (C + D) should not exceed that value of field A, correct? As an example, if A is...
View ArticleHow do I give user rights to save data entered into a form?
I created a form in LiveCycle and open it using XI. When I open the form, I can fill out the form but I can only print the form. I have tried changing the security in Livecycle to allow users to save...
View ArticleRe: Make Read-Only Form into Fillable
You can select more than one field at a time and press Enter/Return to bring up the field properties dialog, or you can use a script to loop through all of the field and set the readonly property: //...
View ArticleRe: How do I give user rights to save data entered into a form?
To Reader-enable a form in Acrobat 11 (XI), select: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)
View ArticleRe: How do I give user rights to save data entered into a form?
Let me apologize first and try this again. I have IX Reader (not XI, sorry about that) and Pro both on my computer. I can save the form in Pro, but not everyone has Pro. Is it possible to reader...
View ArticleRe: How do I give user rights to save data entered into a form?
You don't Reader-enable a form with Reader, you have to do it with Acrobat. Once the form is Reader-enabled with Acrobat, it will be savable with Reader. In Acrobat 9 you'd select: Advanced > Extend...
View ArticleRe: How do I give user rights to save data entered into a form?
Worked great! Thank you and thank you for your patience with a rookie.
View ArticleRe: In Adobe Acrobat XI Pro, how do I validate a form field so that it's...
Well, mostly. I do want the calculated result in B to show the actual sum of C+D, but if C+D is larger than A, then I'd like some sort of error to pop up, indicating that.
View ArticleHow do I distribute a form to a tablet to be used as a "kiosk" - so that all...
I've created a fillable PDF form on my Windows laptop. I would like to house the form on an Android tablet to be used as a sort of "kiosk" -- where the respondents fill out the form on the tablet, and...
View ArticleRe: In Adobe Acrobat XI Pro, how do I validate a form field so that it's...
OK, so the custom calculate script for field B could be something like: (function () { // Get field values as strings var sA = getField("A").valueAsString; var sC =...
View Article