try67
Community Expert
try67
Community Expert
Activity
5 hours ago
Can you share the file?
... View more
5 hours ago
These are the error messages:
TypeError: this.getField(...) is null 4:Field:Calculate TypeError: this.getField(...) is null 2:Field:Calculate
They mean you entered two incorrect field names in your calc scripts.
... View more
6 hours ago
> In theory if you sign out from Adobe via Help -> Sign Out it should deactivate ALL Adobe products.
No, that's not the case. If you deactivate Acrobat it doesn't deactivate anything else, or vice versa.
... View more
‎Mar 07, 2025
01:58 PM
Acrobat Reader is free. You don't need any "keys" to use it.
... View more
‎Mar 07, 2025
01:03 PM
Use Math.round() around the final value.
For example:
event.value = Math.round(event.value);
... View more
‎Mar 07, 2025
01:01 PM
Whoever wrote this code didn't know what they were doing. The only possible values of commitKey are 0-3, and it's a read-only property, so that code can't work correctly, even if it didn't have that syntax error.
... View more
‎Mar 07, 2025
12:59 PM
There are so many things wrong with that statement I don't even know where to begin... Bottom line is, you got scammed. Try to get your money back ASAP.
... View more
‎Mar 07, 2025
05:32 AM
OK, now it's more clear what you mean, and as mentioned, the external property is what you can use to identify whether the file was opened in the application, or in a browser window.
... View more
‎Mar 07, 2025
03:12 AM
Does it work if you open the file on a regular PC (using Adobe Acrobat or Reader)?
... View more
‎Mar 07, 2025
03:12 AM
If you don't provide more details I can't help you further.
... View more
‎Mar 07, 2025
02:51 AM
So you want to check if a specific file is opened in the app? What you can do is scan the app.activeDocs array and check the path property of each item in it, and compare it to the path of the file you're interested in. However, this must be done from a privileged context, such as the JS Console.
... View more
‎Mar 07, 2025
02:33 AM
In the Signed tab select "Mark as read-only", then "Just these fields" and click the "Pick" button. Select the fields you want to lock when that field is signed and press OK when done:
... View more
‎Mar 07, 2025
02:31 AM
The application(s) being used on those machines to view the PDF file are the most likely culprit.
Make sure to download the file and open it in Adobe Reader (or Acrobat), not inside a browser window or using third-party apps, like Apple Preview.
... View more
‎Mar 07, 2025
02:25 AM
We can't access files in your Gmail account... You can share it via Google Drive, Adobe Document Cloud, Dropbox, etc.
... View more
‎Mar 07, 2025
02:18 AM
What are you trying to achieve, exactly?
... View more
‎Mar 06, 2025
08:18 AM
Change the code to this:
var total = Number(this.getField("Total").valueAsString);
if(total >= 48 && total <= 54)
{
this.getField("ImageButtonE").display=display.visible;
this.getField("ImageButtonHE").display=display.hidden;
}
else if (total >= 55)
{
this.getField("ImageButtonE").display=display.hidden;
this.getField("ImageButtonHE").display=display.visible;
}
else
{
this.getField("ImageButtonE").display=display.hidden;
this.getField("ImageButtonHE").display=display.hidden;
}
... View more
‎Mar 06, 2025
03:31 AM
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
‎Mar 06, 2025
03:30 AM
Under "Pages to Print" select the "Pages..." option and enter "1,1".
... View more
‎Mar 06, 2025
03:28 AM
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
‎Mar 06, 2025
03:27 AM
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
‎Mar 06, 2025
01:51 AM
This is not an "issue". It's working as it should, even if you preferred it didn't.
... View more
‎Mar 06, 2025
01:46 AM
2 Upvotes
Oh, I completely agree. XI was far superior to DC, and still is.
... View more
‎Mar 05, 2025
03:24 PM
Can you share the file?
... View more
‎Mar 05, 2025
02:49 PM
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
02:46 PM
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
02:45 PM
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
11:46 AM
Sounds like the file might be corrupt. How did you convert it, exactly?
... View more
‎Mar 05, 2025
11:44 AM
They can no longer do it. Adobe took away their ability to reset it.
... View more
‎Mar 05, 2025
09:25 AM
You wrote in the title "and DOCX files"... Is this a PDF, or a different file type?
... View more