Unlock the power of Acrobat SDK through our community.
Recently active
I created a form with 5 diferent departments, first user who will filled the form must choose 3 department and after that cick on button to send email for the first choosen department.My question is: How can I insered an email address in each radio button and put this info in my email code, so the button can be able to send to the first choice, and second and third...I din´t know if I make myself clear.
Hi,I went to the help pages to see how to access the "compare documents" tool. It says to select Tools->Compare. However, my tools menu does not have that tool. On the help page there was a screenshot of the Tools screen (with all the tools icons). There were far more tools pictured there than what I have in my tools menu, including the Compare files tool. I don't understand why I don't have all the tools for Acrobat DC STD (2015)Thanks,JoycePS - I am posting this to "Creating PDFs" simply because none of the choices had anything to do with my question, so I just picked the first one on the list. If someone can direct me to the appropriate sub group, I will move this post to that group.
I feel like SUCH a scrub but I've never worked in Acrobat before. I downloaded all the extensions I need (I think) but when I add a JS action in my form and hit edit, I get an error in VS code saying the file path doesn't exist. I feel like I must be doing something out of order.
Apologies if this has already been covered.I am using Adobe Acrobat Pro DC and want to run a script on the digital signature field such that when the user clicks on the field, the application alerts them of any required fields that were left blank and won't let them sign/save until said required fields are filled in (text and radio buttons alike).If anyone can help me with providing the JavaScript for it - including what parameters or options I need to have said script setup - that would be wonderful!Thanks!
Trying to finish up a fillable pdf and am stuck on this last bit. Have a radio box where you can select one of 2 options, and need to get a signature box to appear when 1st radio option is selected.
Hello Adobe Acrobat Community, I'm encountering a puzzling issue with a PDF form that contains numerous fillable fields, including radio buttons. Whenever I merge this form with another file (be it another form or a regular PDF), some of the radio buttons inexplicably change their values, while others get reset and become empty.Has anyone experienced a similar problem? What could be causing this behavior, and how can I prevent it? Each field in the form has a unique name. No identical field names. I attached the files. Thank you for your assistance! Before merging (combine) After merging:
Hi Folks, I have a U3D model file generated and can embed it into pdf by using Acrobat pro by manually inserting it. We want to automate the procedure of manually inserting the u3d model into PDFs. We have a product developed which already generates a pdf as an output. Now we want to embed this u3d model automatically through code. Can this be done using Adobe sdk? Is editing possible using Adobe sdk?
I've been using Acobat since V5 and kept upgrading to the Pro 9 Extended version. Today it gives me this this ERROR messageCan you please tell me why?
I've a code snippet to pinpoint empty fields within a lengthy form. Ideally, the script sholuld guides me directly to the first blank field. But, if this proves challenging, I'd like it to provide the page number and the information from the tooltip associated with the empty field. My intention is to populate the tooltip with brief descriptions, facilitating rapid identification for users. While the current script effectively notifies me of empty fields names, I seek improvements: displaying the tooltip text instead of the field name and accurately identifying the page numbers, instead of zeros.Thank you This is the code:var emptyFields = []; var currentPage = this.pageNum; for (var i = 0; i < this.numFields; i++) { var fname = this.getNthFieldName(i); var f = this.getField(fname); if (f.type !== "button" && f.required === true) { if (f.value === "" || f.value === "Off") { var pageNum = getPageNumForField(f); // Call the function to get page number var tooltip = f.to
New Acrobat, new problems.I cannot delete any of the given icons (all commands are grey) and was only able to add an icon after moving the toolbar from its standard position - but not place the icon where I want it.I cannot replace the Toolbar permanently in a position which would be less disturbing for work (like top menu bar).What's this, Acrobat? Are you identifying as Facebook and deciding what your user wants over its head?
I am using the script below but it only runs if I check and then uncheck the box. Obviously I want the script to run when I check the box. Also, I want the "Previous Employer Name" field to clear when the box is unchecked. Any help would be appreciated. if (event.target.value!="Yes") {this.getField("Previous Employer Name").value = this.getField("Company NameRow1").valueAsString;this.getField("Address 1_2").value = this.getField("Company AddressRow1").valueAsString;}
I have a fillable PDF document with form fields and submit button.Submit button originally calls a REST api end point:submitForm({cURL: 'https://api.example.com,cSubmitAs: 'XFDF' }); However, the REST api requires basic authentication and doesn't support SSO.So, I am looking for other options.As a workaround, I am trying to export the form fields as a string and include it as a Query parameter and launch the application URL in the browser(see code snippet below). Application URL supports SSO and once user is authenticated successfully, I plan to use the data from the query parameter to invoke the REST api. Issue: See code snippet below. When URL value with Query parameters stored in "finalAppURL" exceeds 2076 characters, it is getting truncated once the browser is launched. Using the PDF Javascript debugger to do a console.println of the variable "finalAppURL" , I verified that URL is generated correctly and app.launchURL seems to be the issue. I also used the "fin
Hi! I work in product documentation and for every publication that we produce, we need to send a Print Specification PDF to the printer. The print specification needs to have the publication's title, page numbers, publication number and edition (found in the footer and last page), project, date, and a screenshot of the cover of the publication. I got the date automatically, and the filename which is the article number+edition. I also managed to get a button to insert an image, which prompts me to select an image file, I select the publication PDF and only the cover photo gets inserted, which works great. However, I would like to be able to select the publication PDF file and extract all the other fields, hopefulyl at the same time. The Project needs to be inserted manually. Is there a way to do this with Acrobat Pro?
I have a problem with scaling of Acrobat DC UI, as detailed in the screenshots above (MS Word is positioned behind Acrobat windows for scale).I have a Lenovo P50 with a 15' 3840x2160 high dpi screen (200% scaling); and a secondary 21' 1920x1080 monitor (100% scaling). I am running the latest version of Windows 10 with the latest graphics drivers available for my machine.Acrobat DC looks fine on high-dpi screen. However, the interface becomes extremely large when the window is dragged to the secondary screen. Acrobat does not correctly resize the interface to 100%. As you can see, that impacts even the top title bar. Disabling scaling in Acrobat options does not fix the problem. The UI is then somewhat smaller, but still too large to be usable on the secondary display. However, everything becomes too small and unusable on the high-dpi display.The only workaround that has worked so far is using the external manifest file:Adobe App Scaling on High DPI Displays (FIX) | Dan AntonielliHoweve
We are the third party plug-in developers of Adobe Acrobat, and we have a product of plug-in applications,and many of our customers using this product for many years. In order to evalutate the license of the product in Server machines(from where many client machines accessing this product), we use the logic of counting the number of acrobat processes running on the machine, using the below code snippetstring MainFileName = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;System.Diagnostics.Process.GetProcessesByName(System.IO.Path.GetFileNameWithoutExtension(MainFileName)).Length;From this we were getting number of Acrobat processes running the server and evaluting the same with license purchased, andwhen all the licenses are in use, we display the message and opening the acrobat without loading our product.this was working fine for many years. But recently one of our custome
PDDocAddBatesNumbering and PDDocRemoveBatesNumbering have been deprecated, but is there a replacement?
Hi, I want to implement editable PDF functionality in my web application. Does Adobe provide anything so that I can use that thing? I also want each control like text editor Frontend ReactJsBackend NodeJs
Hello, I setup a form with a submit button. That submit button links to a Google Form submission. I got it connected correctly where new rows are being entered into the form, but all I get is a time stamp. It won't take the data entered.I started simple with just one text field. See screenshot below
I'm having trouble getting commands that relate to the Adobe Acrobat 10.0 Type Library to run in Excel VBA. In my code I'm just trying to open two PDFs and merge them into one. I have Adobe Acrobat Pro (Version 23.001.20174.0) installed and I have Adobe Acrobat 10.0 Type Library enabled in my VBA editor. But when I run the program line by line the only command that seems to work is the Set Aapp = CreateObject("AcroExch.App"). Everything after that will "run" in Excel VBA but nothing actually happens. Thanks for your help!Q Sub combine_pdf_files()Dim Aapp As Acrobat.AcroAppDim toDoc As Acrobat.AcroPDDocDim fromDoc As Acrobat.AcroPDDocSet Aapp = CreateObject("AcroExch.App")Set toDoc = CreateObject("AcroExch.PDDoc")Set fromDoc = CreateObject("AcroExch.PDDoc")Aapp.ShowtoDoc.Open ("S:\DRYLNE\DT Report - New\24 Hr Reports\Dryer Daily Report.pdf")fromDoc.Open ("S:\DRYLNE\DT Report - New\24 Hr Reports\Blender Daily Report.pdf")If toDoc.InsertPages(0, fromDoc, 0, fromD
hellowe scan plans, about 300, i would rotate all files in a folder via a vb.net program. Sub Drehunng(inRichtung As String, inPDF As System.IO.FileInfo) Dim PDFout1 As New Acrobat.AcroPDDoc Dim Seite As Acrobat.AcroPDPage PDFout1.Open(inPDF.FullName) For i As Long = 0 To PDFout1.GetNumPages - 1 Seite = PDFout1.AcquirePage(i) Select Case inRichtung Case "n" Seite.SetRotate(0) Case "l" &
We are using Acrobat Standard DC in a Windows 7 environment (64 bit). A very small percentage of our users repeatedly loses their PDF printer in the devices and printers area so they aren't able to print from other software to PDF. We run a repair on the Acrobat program and the printer comes back, but we shouldn't have to keep doing that. Is there a permanent fix for this?
I have the following Script to update a couple of records of mine. The script should fill a new line anytime anytime it finds the first field of a line empty (that means the entire line is empty), but before to do that, the script checks if any of the previous lines containes already the values it should be put at that moment. Problem is, apparently, the script jumps the second line. Anyone can help me? var shipsName = this.getField("SHIPSNAME").value;var data = this.getField("DATAAUTORIZZAZIONE").value;var port = this.getField("PORTOFARRIVAL").value;var flag = this.getField("FLAGSTATE").value;var targa = this.getField("PLATES").value;if (this.getField("Imposta bollo digitale").display === display.hidden) { var bunkerDoc = app.openDoc("G:\\Il mio Drive\\PERSONALE - BRUNO PADULA\\REGISTRO BUNKER.pdf"); var stop = false; for (var i = 1; i <= 294 && !stop; i++) {
Hello, I am trying to merge files using the API. I have a folder where the user places 3 or 4 files. We have named the files 01, 02, 03, 04 etc. but for some reason in the merge process the files get merged in a randow order. Any insight would be helpful. Thanks.
Hi everyone. I have a folder with a large number of PDFs (in the 1000s). We encountered one file that had some password protection - not required to open the file, just for some functionalities. If I look at the Document Properties Security tab, I can see that the selected Security Method is Password Security instead of No Security, and some functions in the Document Restrictions Summary show as Not Allowed. The task now is to identify other files with password protection, without a human opening each individual one and looking at the doc properties. I'm pretty limited in the tools I can use - just VBA and Python. (I don't have privileges to install anything else.) I do have the PDFMaker Office add-in, but so far I haven't been able to determine how to use that to tap into those document properties. To now I've only used the add-in to combine multiple PDF files to a single file, and that is using borrowed code. So my knowledge of how to use the add-in is close to nothing, and I ha
Hi I hope you can help me I have two fields. The first is called 'Bupa' and it has a Yes or No drop down options. If the user selects Yes I need another text field called 'Informed' to autopopulate with phrase 'Please inform Clare'.Any suggestions?Thanks in advance
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.