Unlock the power of Acrobat SDK through our community.
Recently active
I have a pdf document with freetext annotations, when I view the pdf using embed api the annotations aren't visible first. But when I see the comments section, annotations are loaded in the document. Then when I interact with the annotation (drag or resize) then it gets displayed. Can anyone help me solve this issue?
I have 3 reagents with different expiry dates and I need to assign the earliest expiry date among the 3 for the final product. I am using Acrobat Pro and any help is greatly appreciated. Thanks!Below is the image of the Date fields of the three reagents Below is the text field of the expiry of my final product
Hi, I'm new to adobe acrobat interactive PDFs but there are so many helpful posts here that have got me a long way! I currently have a number of checkboxes for different courses (eg. Course1, Course2) which check proficiencies in a list:- Course1 checkbox: ticks proficiencies M1.1, M1.2, M1.4- Course2 checkbox: ticks proficiencies M1.1, M1.6, M1.7 Currently if someone unchecks Course1, this will uncheck box 1.1 even if Course2 is still checked. Is there a way to prevent this? I'm just using this code in Course1 checkbox on MouseUp:this.getField("M1.1").value = event.target.value;this.getField("M1.2").value = event.target.value;this.getField("M1.4").value = event.target.value; And this code in Course2 checkbox on MouseUp:this.getField("M1.1").value = event.target.value;this.getField("M1.6").value = event.target.value;this.getField("M1.7").value = event.target.value; Thanks in advance!Lucy
I have a problem combining pdfs using VBA in Access. The debug print says that all of the "Open", "Insertpages" functions are "true", but the final "Save" returns "false", and when the doc is opened the inserted pages are not there. In this example there are two attachments.----Private Sub CmdPDF_Click()Dim PDFindex As IntegerDim PDFfileName As StringDim CEUCertT As RecordsetDim AttachmentAry() As StringDim DestApp As Acrobat.AcroAppDim PDDocDest As New Acrobat.AcroPDDocDim PDDocSource As New Acrobat.AcroPDDocIf Me.ChkAttach = True ThenSet DestApp = CreateObject("AcroExch.App")Set PDDocDest = CreateObject("AcroExch.PDDoc")Set PDDocSource = CreateObject("AcroExch.PDDoc")Set CEUCertT = CurrentDb.OpenRecordset("Continuing Ed")k = 0With CEUCertT.MoveLast.MoveFirstStartDate = DateValue(Me.RepPeriodStart.Value)ExpirDate = DateValue(Me.ExpDate.Value)'k = .Fields("Attachment").ValueFor i = 1 To .RecordCountCompDate = DateValue(.Fields("Completion Date"))If (CompDate > StartDate)
Hi Adobe,We are using adbe.pkcs7.detached adding signature to the PDF. whenever I open signed PDF form it will show signature is unknown with below error code asError during signature verification. Signature contains incorrect, unrecognized, corrupted or suspicious data.Support Information: SigDict /Contents illegal dataCan anyone confirm me issue w.r.t to the signature verification.With regardsRavi
Hello,I have a client that uses Adobe Acrobat Pro DC. When she opens the properties of a form field while under "Prepare Form" there seems to be some missing tabs. All she sees is General, Appearance, Position, and Options. She is needing to use some of the others like Action and Format but they are not present (Not even grayed out just not there).So that I'm clear, the Tabs in red are the ones we are missingI researched to the best of my ability and couldn't find anything about missing tabs or features that were not included with the Pro DC version. Her colleague has Acrobat Pro 9.2 and has these tabs in the properties otherwise the two versions look identical. I am not sure if they are something that is not included with Pro DC or if there is something we are missing to enable them? Any help would be much appreciated!
I am working on adding text to a text box when multiple checkboxes are marked/selected. I have looked all through the links that have been sent to me and tried several suggested options, but nothing is working for me. (this is why I do not make my living as a code specialist!) I need for these boxes outlined in Red : to add text to this box below all at the same time if the box is checked.. I will be doing this same thing from drop down boxes once I have this part with the checkmarks completed.Thanks in advance for any assistance for this newbie!
I am using Acrobat Pro DC, fully up to date. Whenever I scan a document using File | Create | PDF from Scanner, the settings default to append the scan to an existing file. That's rarely what I want to do. (When I want to append a scan to an existing file, I use the Insert Pages tool.) It's not a major problem to uncheck the "Append" box, but it's a repeated nuisance, especially if I forget and I wind up with new pages added to a document that have to either be extracted or deleted and re-scanned.I've seen the issue a number of times in the forums, but it's always for the opposite problem. Getting append to be the default is an issue that has, apparently, been solved too well.
Previously, when installing Adobe Acrobat DC, 'HKLM\SOFTWARE|Adobe\Acrobat Distiller\DC' was created.When installing Adobe Acrobat Reader DC, the path 'HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Adobe Acrobat\DC\RDCNotifiationAppx' was created. However, at some point, even though Adobe Acrobat Reader DC was installed, a registry for the Adobe Acrobat DC product was created. This is a huge problem, since I was looking at the registry to see what products were installed. Can someone please tell me which registry only exists when I install Adobe Acrobat DC?Also, the registry I found is 'HKLM\SOFTWARE\Adobe\Adobe Acrobat\DC\RDCNotificationAppx (AppName: ADCNotificationClient.appx)'.Is this registry created identically in all versions of Adobe Acrobat DC?
we started the Migration from JWT to OAuth to convert the PDF into Document. After migration in order use the PDF operation for export PDF to Document. we need to perform Five API calls to downlaod the Document. We refer the below URL to perfoem the PDF Operationhttps://developer.adobe.com/document-services/docs/overview/pdf-services-api/gettingstarted/ Is there any alternative way, we can perform the PDF operation to reduce the number of API calls please suggest some other way to perform this operation
Hello! I am fairly new to the whole javascript thing. I have edited a form for work to make it easier for people to make selections. I created a dependent drop down that based on the job that you pick, it gives you locations to select that you can go to. The field has asked for an additional dependency that would change only one job's locations, depending on if you have 3 years of experience or if you had less than 3 years (which already has a drop down).Is there a way to link this together? meaning:Job A can go to x, y, or z.Job B can go to x, y, or z if they have 1 to 3 years or a, b or c if the dropdown is set to 3+ years
Hello,using a dialog box in which I can make a selection, I would like to filter out the selection made in order to be able to perform further operations with it.In the Adobe AcrobatDC JavaScript API reference, example #3 is shown, which I used to select a font from several fonts.Example 3: This example uses a list box or a popup box. But I am not able to format the text of a form field with the selected font.How do I get the font assigned in the 'f.textFont =' option so that the text appears in the selected font?function PlaceText() { var dialog3 = { // This dialog box is called when the dialog box is created initialize: function (dialog) { this.loadDefaults(dialog); }, // This dialog box is called when the OK button is clicked. commit: function (dialog) { // See the Dialog object for a description of how dialog.load // and dialog.store work. var elements = dialog.store()["subl"];
I want to insert page number. When I click "Header & Footer", it shows "An error was encountered while retrieving page content". What does this mean? Can anyone help me? Thanks much!
Hello,I am new to javascript. I followed a tutorial to be able to autopopulate a dropdown based on another, but I don't know how to make it work based on the selections of two dropdowns.I have 7 options in the first column (discipline), and 5 levels in the second column (level). Depending on what is selected in those two, I need to auto populate different options in the third row (power).¿Could someone help me with that?
I want to convert PDF to HTML using C#. Adobe Acrobat Pro is installed on my computer. I have written the following code when runs without any issues but can't see output.html in the folder. What could be the reason? Is there any alternate way of achieving it? using Acrobat; using System; namespace PDFToHTMLWithAdobeAcrobatPro { internal class Program { static void Main(string[] args) { string inputFilePath = @"C:\tmp\Everest.pdf"; string outputFilePath = @"C:\tmp\output.html"; // Acrobat COM objects AcroApp acroApp = null; CAcroPDDoc pdfDoc = null; try { // Initialize Acrobat application acroApp = Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.App")) as AcroApp; pdfDoc = Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.PDDoc")) as CAcroPDDoc; if (acroApp == null || pdfDoc == null)
I'm trying to convert a 95 pages script from Word who has also tatal 120 extra pages into pdf (not acrobat) , but instead of 95 pages it shows 220How do I fix this?
Hey Everyone, how i enable to integrate Adobe Acrobat Pro DC in react application for advance Pdf Editing like change & edit actual content of pdf?
I want to use Python to change the language of all PDF tags in the Content tab of Object properties. Can anyone suggest how I can do this?
I am trying to create a dialog box for use in a Dynamic Stamp and the app.execDialog method's dialog box validate, commit, and ItemID handlers do not behave as documented. I am using Adobe Acrobat Pro Continuous Release Version 2024.004.20272 (24.4.20272.0) and am following the guidelines in the Adobe JavaScript APIs reference, https://opensource.adobe.com/dc-acrobat-sdk-docs/library/jsapiref/JS_API_AcroJS.html#execdialog The initialize handler is called when the dialog box is being initialized, and the destroy handler is called when the Cancel button is clicked, as expected, however, the validate, commit, and ItemID handlers do not work as described. For example:The validate handler is not called when a field is modified, though it does get called when the Ok button is clicked.The commit and ok handlers are not called when the Ok button is clicked.The ItemID handler is not called when the edit_text boxes lose focus.The only way to close the dial
Hello,I'm creating a grant application form with the following items:A = total cost of projectB = deduct total amount of funds already on handC = total grant amount being applied forThe calculation is A-B=C. The valadation is: $0=> C <= $100,000. If A = $150,000 and B = -$90,000, then C = $60,000.Because the calculation is automatically updated as soon as A is entered (and B has not been entered), then C = $150,000 which automatically triggers an error message. What would be the script to allow A to be >= $100,000, but yet C still has to be <= $100,000 once A and B are entered. I tried playing with an IF-THEN statement, but no luck. I don't want users to enter B first as it seems counterintuituve to start with a negative number in this scenario. Any suggestions? Thanks.
this.mailDoc({cTo:"Person@emailaddress.com", cSubject: this.documentFileName, cMsg: "Hello person,\n\n Here is my information."}); This is the code for a button on a fillable pdf doc. It has been working fine untill the latest version of outlook(1.2024.1124.100 (Production)) came out. Now it opens a email window and looks and works like it did before, but when you send it disapears like it worked but does not email to the address that is in the To: area, It goes nowhere does not email anything and no errors.Any help in fixing this would be greatly appreciated. Thank You
Hello.Totally new to java script for forms.I have a list of checkboxes that, if selected I want to activate a number field that will be included at a Total amount for different charges.I have figured out the bottom three boxes, but I want the first two to only be included in the TOTAL addition IF they are checked.Thank you
Hello everyone.I'm developing a simple Adobe Acrobat SDK Plugin(I started this plugin from `Sample/BasicPlugin` project). I added new menu item and custom dialog for this plugin but I faced an issue. I can't send http request to my api host. But the code works well on Windows Desktop Application project. Below is the code to send request. HINTERNET hSession = InternetOpenA("MyCustomAPIPlugin", 0, NULL, NULL, 0); if (!hSession) { lastError = GetLastError(); return; } HINTERNET hConnect = InternetConnectA(hSession, "api.mycustom.dev", 0, 0, 0, INTERNET_SERVICE_HTTP, 0, 1); if (!hConnect) { lastError = GetLastError(); return; } HINTERNET hFile = HttpOpenRequestA(hConnect, "GET", "/api/cases", "HTTP/1.0", 0, 0, INTERNET_FLAG_EXISTING_CONNECT, 1); if (!hFile) { lastError = GetLastError(); return; } char headers[] = "X-Api-Key: 0000-00000-00000-00000"; BOOL bRet = HttpAddRequestHeadersA(hFile, headers, static_cast<DWORD>(strlen(headers)), HTTP_ADDREQ_FLAG_ADD_IF_NEW)
I wrote a few VBA macros in Excel and Outlook that access the Acrobat Reference Library, our office currently uses Office 2016 and Acrobat DC Pro 21.011.200393.0. About a dozen users have been using these macros for years without issue. However, this year they began to stop running for users either after a uninstall/reinstall of Acrobat DC Pro *OR* after a software/system update (not sure if these updates included Acrobat). I have had Acobat DC Pro uninstalled/reinstalled for three different users and after the reinstall Outlook macros will run ONCE and Excel macros will run ONCE and they will not run again. For example, I just had an Acrobat DC Pro uninstall/reinstall done on my computer and ran an Outlook macro that looped through and correctly processed hundreds of PDF files. Then, when I tried to run it a second time I got the error below. If I do some testing with pared down code (including trying early and late binding) I get erratic results and various errors and
Is it possible to have a custom alert or dialog box with three buttons displaying three different letters and depending on which on was selected it would be displayed in a field on the pdf. Thanks, Alan
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.