try67
Community Expert
try67
Community Expert
Activity
4 hours ago
Just to clarify, the above assumes the images are used as the icons of image (actually button) form fields... You have to set that up first, and then the code above will work.
... View more
4 hours ago
Yes, that's how it is done. Are you sure you have the original signature profile used for signing? What do you see when you right-click the signature?
... View more
4 hours ago
I doubt it. The formatting options in form fields are very limited. You can enable the Rich Text Formatting for that field that will give you some additional options, but that's about it.
... View more
6 hours ago
This is not an "issue". It's working as it should, even if you preferred it didn't.
... View more
Mar 05, 2025
Can you share the file?
... View more
Mar 05, 2025
You can no longer activate Acrobat X, so yes, it's pretty much impossible to install it on a new machine, even if it would have worked there.
... View more
Mar 05, 2025
You can't do it using the app.response method. You must use a dialog object with a multi-line text field.
... View more
Mar 05, 2025
That's a Microsoft command. To use Adobe's go to the Acrobat tab in the ribbon and click on Create PDF.
... View more
Mar 05, 2025
They can no longer do it. Adobe took away their ability to reset it.
... View more
Mar 05, 2025
You wrote in the title "and DOCX files"... Is this a PDF, or a different file type?
... View more
‎Mar 05, 2025
06:50 AM
If it works in Acrobat and not in Reader that means you're using an old version of Reader. But I'm done trying to help you with this, since you're not being very cooperative, or thankful for the help you're getting. Good luck.
... View more
‎Mar 05, 2025
06:49 AM
PS. You have to disable the fields highlighting to see the fill color, while the field is not in focus.
... View more
‎Mar 05, 2025
06:46 AM
Move the code to the field's custom Calculation script. If it still doesn't work, and no error messages appear in the console, share the file for further help.
... View more
‎Mar 05, 2025
06:44 AM
Tables are not likely to take any more space than regular text. Images and fonts usually account for the vast majority of a PDF's file-size. If you could share a sample file we might be able to give more exact advice, but generally speaking removing unnecessary fonts and reducing the size (or removing entirely) images should make the most difference.
... View more
‎Mar 05, 2025
05:38 AM
The only updates that will be synced are those you make to fields, if they share the same name. Static page contents on each page is independent of all other pages, even if those pages were initially duplicated or spawned from that original page.
... View more
‎Mar 05, 2025
05:36 AM
PDF files have to be downloaded before they can be viewed. That can't be changed.
What you're probably trying to achieve is to open them directly in the browser.
That would depend on the browser you use. If you let us know, we could help further.
... View more
‎Mar 05, 2025
05:35 AM
If you do not see the page size in the main window, go to Menu - Preferences - Page Display and tick the check-box next to "Always show document page size".
... View more
‎Mar 05, 2025
05:34 AM
Use a digital signature field and set it as required, so the user must sign the file before submitting it.
Under the field's Properties, in the Signed tab, you can set it to lock all the other fields in the file.
... View more
‎Mar 05, 2025
12:46 AM
Are you using quite an old version of Reader, perhaps?
... View more
‎Mar 04, 2025
03:09 PM
This code is unnecessarily complex for the task you described. My code should work just fine, and it will handle all scenarios.
... View more
‎Mar 04, 2025
03:08 PM
- The export values of the fields in the group don't matter. Only those of the final score group, which need to be "Choice1" and "Choice2".
- If it's not working check the JS Console for error messages.
If you still can't figure it out, share the for further help.
... View more
‎Mar 04, 2025
02:57 PM
Use the installer from here:
https://helpx.adobe.com/download-install/kb/acrobat-2020-downloads.html
... View more
‎Mar 04, 2025
02:55 PM
Not possible using JavaScript.
... View more
‎Mar 04, 2025
02:37 PM
1 Upvote
My corrections are not related to the error message. Follow Thom's good advice to solve that one first, then do the rest.
... View more
‎Mar 04, 2025
02:22 PM
> Just replace it and you are good.
Not quite... There are plenty of other errors in their code.
- Change all instances of:
if (v="Compliant")
To:
if (v=="Compliant")
- There's no such thing as color.orange. Replace it with a color object, like this:
event.target.fillColor = ["RGB", 255/255, 165/255, 0/255];
- This seems wrong:
if (v="best Practice")
It should probably be:
if (v=="Best Practice")
Remember that JS is case-sensitive!
... View more
‎Mar 04, 2025
04:22 AM
1 Upvote
Has nothing to do with the JS version, but the app used.
... View more
‎Mar 04, 2025
03:43 AM
1 Upvote
It's compatible with an application that can execute JS code correctly, and that has an implementation of these properties (such as viewerVersion). If the file is opened in an app that doesn't support JS, or not correctly/fully, or has other implementation, then it won't work at all.
... View more