Unlock the power of Acrobat SDK through our community.
Recently active
I find myself recieving rather large documents without tables of contents, bookmarks, or page numbers for individual documents. After accessing the documents and creating bookmarks for each individual document, I would like to generate a report that includes the Bookmark and the Page Number for the Bookmark. I have noticed several different codes online that may help in accomplishing this. However, they appear to be for older version of Adobe and/or have a syntax error. Any help is appreciated. I cannot justify an additional $1,000 to $5,000 a year just to export bookmark information.
Hi,I am creating a form using Adobe Acrobat XI Pro.On one part of the form, there are 6 different checkboxes in a row, of which, at least one is required to be checked.Is there some javascript that I can use, so that when a user goes to the textfield after the checkboxes, that it will not let them go further, until they go back and check one of the boxes?Or, if I can't have that ... some javascript code that will not let them "submit" the form if one of the checkboxes is not checked?I would appreciate any help.Thank you.
Pfad für OFFLINE-Lizenzierungsressourcen existiert nicht beim herunterfahren
I am trying to figure out how to transform my current PDF catalogue to a shopping cart without having to go through a third party. I really have no idea where to start or what to think of in this process..? Is it possible to create in Acrobat?Thank you for your time!
Hi. I am trying to use an excel macro to union a collection of PDFs into a master PDF, and create an index at the beginning of the master PDF based on a table from the worksheet in excel. One of the things I need is to create internal document links that can allow a user to click a link the PDF's index that will take them to the page number for that index section. Is this possible using the SDK? I can create the master PDF just fine using the PDDoc methods (InsertPages() etc ), but know how best to approach the links. Any thoughts would be appreciated. Thanks,
I installed Adobe Acrobat X1 pro on some Windows 10 PC and when you open a file, the windows stays open for about 5 seconds and then closes. I've watched the Task Manager and it just kills the process. Any help is greatly appreciated.
Is there a way I can use the Interop.Acrobat interop assembly on an application running on a server without the COM registration? Does anyone have an example of this? I am aware that there are libraries out here that already provide Adobe functions, but I'm providing my own API to users. I've tried to Embed the assembly but that doesn't work on the server. It still errors out with a COM registration error.
When adding a global document footer to a document, I have previously used Enfocus PitStop to resize the original page in order to make room for the global footer. I was happy to see that Adobe Acrobat Pro DC included an option that (I thought) made this expensive plug-in unnecessary. However, it seems that, when the option is checked to Shrink the Document, it will vertically center the text on any page that has any empty lines.Is there a setting or preference that I'm missing to have Acrobat treat the page similarly to a full-page graphic (i.e. to preserve the relative position of the remaining text on the page even while resizing to fit the footer?
I am looking for a solution on how to update the script, so that it would give me a value of 1, when it is equal to 6 months. If the value is less than 6 months, to have 0. Also, I do not know how to make that the field would allow saving fixed value.Here is the script I am using in 'Custom Calculation' box:event.value = "";var dobValue = getField("Textfield-49").value;if (dobValue!="") {var dob = util.scand("dd/mm/yyyy", dobValue);var today = new Date();var age = today.getTime() - dob.getTime();// compute age in millisecondsvar nAgeMilliseconds = today.getTime() - dob.getTime();var nAgeYears = ( age / (1000 * 60 * 60 * 24 * 365.2425) - 0.005);event.value = Math.floor(nAgeYears);}
Hi all,I've seen this same error appear around the web but none that relate to Adobe Acrobat Pro DC (2015) and MS Word 2010. Has anyone come across this same fault/message when trying to convert/export a pdf file to MS Word 2010?. After clicking OK a few times (through the above message), the export does go ahead anyway, is there a way to perhaps get rid of the messages coming up, just to let the conversion carry on?As a side, this is not an issue with using MS Word 2013 with Adobe Acrobat Pro DC (2015), but I'd like to know if anyone has found a working fix for this export/conversion to Word 2010 (I may be among the masses here with this but just in case anyone knows of a fix for this).Thanks for your time and any advice greatly received.-Pete
Hello - I have a 2,000ish page PDF that I need to split into about 400 smaller PDFs each with various numbers of pages. I'm tracking the number of pages for each split, and the beginning page number and last page number from the main large PDF for each individual document (the split locations). Is there a way to use that spreadsheet to auto generate the bookmarks and split? I don't need bookmark names, but if I could use a field from the spreadsheet, that would be nice too. Thanks!
Hi Team, I want to do accessibility testing in my CI/CD pipeline, I want to perform the same accessbility checks as mentioned when i do manually running a acrobat pro full check accessbility scan. But is there a way to do it programtically ? if yes, can anyone share how to achieve it .
Hi guys, I'm trying to create a log file in AdobeJS but I can't. Anybody can help me? I need create a log file (similar to file.log) in my machine and I want to write in this file some sentences to audit my adobe javascript code (similar to log4j). Best regards!
We have Interop.acrobat.dll version 1.1.0.0 , but we lost the track of where the DLL was downloaded. Could you please guide us on through which adobe installer deliver this dll version.? Is it Ok to use in production environment where Licensed Adobe Acrobat is installed? Do we need to buy any license for using it in our windows application in production? If we have to buy a license, then what license we have to buy.? Is there any office link available for download it?
Hallo,I am using the following code to transport the result of an optionfield cbox to another named dbox.(received some help by the community, thank you) this.getField("dBox."+(this.getField("dBox").value-1)).value=this.getField("cBox."+(this.getField("cBox").value-1)).value; This only works, when i once click into dbox. Then, when clicking into cbox, the result is transported into dbox. If i do not click once into dbox, the result is not transported. I tested dbox.value = "on" in the script, but that did not help I start the form with nothing clicked. See example attachedall the bestBen
Hsb
Hi, I am using java sdk for pdf conversion using the following code:Credentials credentials = Credentials.serviceAccountCredentialsBuilder().fromFile("pdftools-api-credentials.json").build();ExecutionContext executionContext = ExecutionContext.create(credentials);CreatePDFOperation createPdfOperation = CreatePDFOperation.createNew(); FileRef source = FileRef.createFromLocalFile( Utils.getDataDir() + fileId + "." + extension);createPdfOperation.setInput(source);FileRef result = createPdfOperation.execute(executionContext);result.saveAs(Utils.getDataDir() + fileId.split("\\.")[0] + ".pdf"); And I get the following error on the line in bold: om.adobe.platform.operation.exception.ServiceApiException: description ='An Internal Server Error has occurred.; transactionId=4p5gjnmi8oMoRm2IaeQmrs7kHeaiSNFr'; requestTrackingId='4p5gjnmi8oMoRm2IaeQmrs7kHeaiSNFr'; statusCode=500at com.adobe.platform.operation.pdfops.CreatePDFOperation.execute(CreatePDFOperation.java:196) ~[pdftoo
How can we detect from a plugin if the application is Acrobat DC or Acrobat Pro? I am using ASGetConfiguration but the only possible values are A const char* value, one of the following strings:"Reader": Adobe Reader"Exchange": Acrobat Standard"Exchange-Pro": Acrobat Professional"Acrobat PDF LIbrary": Acrobat PDF Library I cant see how we can determine DC from the above data
Hi, everyone,is there a way to create a stamp with a signature field? I have already managed to create a stamp with a text field and a date field. However, the command for a signature field is not clear to me. Text field code:if((event.source.forReal) && (event.source.stampName == "Fertiger_Stempel")){ var cText = app.response ({ cQuestion: "Bitte den Text für den Stempel eingeben", cTitle: "Text für Stempel", cLabel: "Inhalt: " }); if (cText && cText.length) { event.value=cText; }} Here is an example of what it should look like
I'm trying to fill in an existing PDF file fields using access VBA by the code below. "User Name:" is one field on my pdf. I'm trying to enter a value to this field. When I run this with an appropriate file path it gives me an error saying: Run-time error '424': Object required. The Adobe file version is Adobe Acrobat XI Pro.Private Sub Adobefill_Click()Dim FileNm, gApp, avDoc, pdDoc, jsoFileNm = "C:\projects\test\"Set gApp = CreateObject("AcroExch.app")Set avDoc = CreateObject("AcroExch.AVDoc")If avDoc.Open(FileNm, "") Then Set pdDoc = avDoc.GetPDDoc() Set jso = pdDoc.GetJSObject jso.getfield("User Name:").Value = "[user name redacted by moderator by request]" '<-------- I get an error here pdDoc.Save PDSaveIncremental, FileNm 'Save changes to the PDF document pdDoc.CloseEnd If'Close the PDF; the True parameter prevents the Save As dialog from showingavDoc.
Hi,I am using the Acrobat dll to convert a PDF to a word document using the SaveAs() function. My company has a license for Acrobat Reader Pro. I am building a web application that will run on the server. It works locally but does not work on the server. I understand that Acrobat SDK is not suited for applications running on the server. Adobe PDF Library SDK allows for server deployment but it does not have capabilities to convert a PDF document to a word document. Which license or SDK/API do I need? What am I missing? Please help.
Is there any formal/unformal training/certificate for Acrobat plug-ins using c++? thanksOscar
Hello, I bought Adobe Acrobat Pro Student & Teacher version. Unfortunately, I can't sign in. I always get the error "Starten Sie zuerst Acrobat oder wenden Sie sich an Ihren Administrator. {h0}Weitere Informationen{h0}". (attachment). What do I have to do? Thanks in advanced. Best, Chris
Are there any special steps to notarise the acrobat dc. pro .acroplugin files? I am wondering if that is the case, it seems to be the case for reader enabled pluginsI also had to use adobe provided tools to codesign the CEP extensions I built ThanksRahul
I wonder if it is possible, and then how, to make 2 fields that are auto-filled on the same page and user can edit the values, after values are edited in the field they keep the way it was fixed, and in case 2nd is edited, the first field's values would not revert to the initial values. I use the script for both fields:event.target.value = this.getField("Textfield-3").valueAsString + " " + this.getField("Textfield-4").valueAsString + ", " + this.getField("Textfield-5").valueAsString + ", " + this.getField("Textfield-6").valueAsString + ", " + this.getField("Textfield-9").valueAsString
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.