Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
I need aformula to caluculate the LTV Its the Loan request of $230,000 / Lowest selling price of $300,000 The answer is 76%
Hi Community - I am not familiar will code and need a simple Javascript code for a fillable pdf. I want to assign a dollar value to 3 radio buttons ("Basic": $ 25.00, "Pemitted": $50.00, or "Combination": $50.00) and to a check box for an option ("Expedited": $25.00). The calculated value, depending on the selections, will calculate in a seperate total box.Thanks in advance for your assistance.C
Hello all, i was using a script in Acrobat 11 pro. It is working fine. Now i upgraded to Acrobat DC Standard. Icon is showing in the tool bar but while clicking it is not executing the script. I have total 5 scripts. Am I missing anything in Acrobat DC Standard and do i need to change anything in the script. Please provide me a solution. Thank you.
I have a date field in my PDF that is using a custom calculated script to get the date value from another date field. I want to be able to have the option to manually change the date in that field using its own date picker. The problem I have is that my current script partially works but it looses the focus and reverts to the custom calculated value when I continue to work with other fields. This is the script that I 'm using: //event.target is the current date field I want to execute this script var a = event.target; if (getField("myOtherDateField") !="") { var s = a.value = this.getField("myOtherDateField").value; var d = util.scand("mmmm, d yyyy", s); d.setDate(d.getDate()+0); event.value = util.printd("mmmm, d yyyy", d); } else { if (a.value = event.changeEx) { a.value = event.change; } } In the code above I know there is a lot wrong. I understand that event.change and changeEx is normally used with dropdown m
Can I use the API to add hyperlinks in the document to areas within that same document? That is, can the API replicate/replace the functionlaity of the Link tool?
I have a drop down field "Weight" where I want the drop down field options to be the values from various text fields.Speficifically I have text fields Wt1, Wt2, Wt3, Wt4, and Wt5. The values of these text fields is determined based on other fields and user input.I would like the drop down options that appear in "Weight" to be the values of these text fields.I've tried something like the below. with no luck: var wt1 = this.getField("Wt1").value;var wt2 = this.getField("Wt2").value;var wt3 = this.getField("Wt3").value;var wt4 = this.getField("Wt4").value;var wt5 = this.getField("Wt5").value;this.getField("Weight").setItems([wt1,wt2,wt3,wt4,wt5]); I suspect it is an easy thingto do just don't know the code or where to put it, i.e., as validation, caculation, etc.Thanks in advance for any help on this.
The general idea of the project is to manage to make one little change and after that the document not seen as modifyed when you go to file/properties/description. I try exporting it in word or powerpoint and after i cnvert i as pdf..Then is not seen as modified but the creator and application is deifferent. THis pdf is made with oracle aplication IT tool and if you use word this is going to change,,,,if you copy the pdf whole bcause everything is the same is being modifiyed...I 'm willing to pay 300 euros if you can get the job done. Thnak you very much for your time! 🙂
We have a questionaire that's a form built on Acrobat. We want to be able to score the document based on answers on that form, or check marks in a box. So, when client answers on questions 1,2,3..10, if A on question one, award 5 points, C on questions 2, 4 points, and so on. How would we go about doing that? Even if someone can point me in the right direction to learn myself, I would greatly appreciate it.
Could someone please explain to me how to make a conditional drop down on a PDF form? For example if I have more than one categories like Fruit, Vegetables and then I would like the subsequent field to only show the options that fall within the previous fields options like Apple, Banana, Pear, Pineapple if you choose Fruit and Celery, Carrot, Beet, Pea if you choose Vegetable. Is this possible?
I have a number of OFT files that I want to embed into a PDF file. I want the user of the PDF file to be able to select the appropriate OFT file and open it. The OFT file then automatically populates a email in Outlook.Thanks for your help!Jim Momsen, CPT
I have looked but have not found this question and I am quite stumped. I am creating a form that provides a summary of our services and costs. If a client requests that our documents be sent via overnight delivery, we add an $8.00 handling fee. On our form, we show the cost of overnight shipping. Next to that entry, the form says "+ $8.00" The box next to that is what I am concerned with. I need an expression to make it show $0 when there is no request to send docs via overnight delivery, but when overnight delivery is requested, for it to show the sum of the cost of overnight delivery, plus 8 bucks. HELP!
El adobe x pro puede crear formularios pdf que una vez creado pueda insertar una foto? Necesito crear un pdf donde el usuario rellene el formulario creado y dejar un recuadro que cuando lo pinche se le abra el explorador de archivos y pueda subir su foto y esta se adjunte al pdf de manera visible y que funcione en varias plataformas pc, android, ...
Hello guys, I've been tryin to use the code of Karl Heinz to replace pages between two PDFs using excel. Unfortunately, it doesn't work. All it does on my system is save the first pdf under a different name without having exchanges any pages.Here is the code: Sub Button1_Click() Dim AcroApp As Acrobat.CAcroApp Dim Part1Document As Acrobat.CAcroPDDoc Dim Part2Document As Acrobat.CAcroPDDoc Dim numPages As Integer Set AcroApp = CreateObject("AcroExch.App") Set Part1Document = CreateObject("AcroExch.PDDoc") Set Part2Document = CreateObject("AcroExch.PDDoc") Doc1.Open ("C:\temp\Part1.pdf") Doc2.Open ("C:\temp\Part2.pdf") ' Insert the pages of Part2 after the end of Part1 numPages = Doc1.GetNumPages() If Doc1.InsertPages(numPages 3, Doc2, 0, Doc2.GetNumPages(), True) = False Then MsgBox "Cannot insert pages" End If If Doc1.Save(PDSaveFull, "C:\temp\MergedFile.pdf") = False Then MsgBox "Cannot save t
I don't know why, but the question I wrote earlier has been treated as spam. I will shorten the question text and post it again. When saving with FDF, I want to save with a file name that is a concatenation of some field names in the form and the save date and time. First, I tried writing the following code in a text field. The file name as expected is displayed. var Pink = this.getField("PINK"); var Blue = this.getField("BLUE"); var FNAME = util.printd("yyyymmdd-HHMM-",new Date())+Pink.value+"-"+Blue.value+".fdf"; event.value = FNAME; And then I created a button and created the following code. I deleted the last line above and added the following. I don't want to be treated as spam again, so I'll just list only one. I'm actually trying out more code. But those was all a failure. Because I want to let the user choose where to save the file, the save window must be opened. this.exportAsFDF({cPath:cPath + FNAME}); Act
The question is the same as the subject. Is it possible to hide or show certain pages according to certain conditions ? Of course using JavaScript.
I routinely combine several PDF documents into a single PDF. During the combine process, bookmarks are created, however the zoom levels apparently vary according to the source documents. I have the default set to FitPage, however this does not seem to filter down to the bookmark when combining the PDF. I also use an Action created under the Action Wizard to perform some other modification to the combined file including a java script to change the bookmark, however, when I run the java script for the bookmarks, it only changes the first one.Java script: [this.zoomType=zoomtype.fitP;]Is there a way to select all of the bookmarks to set the zoom level?
Greeting All, I'm currently trying to create a print button using JavaScript that prints out pages given the page numbers in a field value. Example:Field Value: "6, 7, 15, 30, 32, ..." - This field value changes based on the user answers in previous fields. Print button prints pages 6, 7, 15, 30, 32, ... Currently copying the field, to the print dialogue box manually, but wondering if there there was way to do all this in 1 button. Any advice is greatly appreciated.
I am often working with multiple PDFs open at a time. If I work on one, leave it open and unsaved, and open another PDF I get an error window that says 'Adobe Acrobat has recovered one or more documents that were not saved properly before Acrobat was shut down. Click Yes to open the recovered documents. If you click No, your changes will be lost.' The files are still open. Acrobat didn't recover anything, as far as I know. Acrobat was not shut down, the files are still open and in no danger of being lost. This error window is annoying and pointless. Can I please, please, PLEASE, PLEASE, PLEASE turn this error off somehow?
Hi Team,I have just joined to Adobe community. I have one small business case and i need community help to sove it.We have 5 invoices in 5 different PDF. and one covering letter of invoice in other pdf file.Invoices PDF file namesA.pdfB.pdfC.pdfD.pdfE.pdfCovering letter pdf file name - Z.pdfSo, we need to add the covering letter in all 5 invoices in one GO. (Insert/combine)Output file would be like as below.A+Z.pdfB+Z.pdfC+Z.pdfD+Z.pdfE+Z.pdf ThanksRajesh Arya
A simple question. Is there a method to copy the value of a field to the clipboard?
Does writing all the code in each field, or writing a document-level function and writing it, change the overall processing speed of the document? Does (1) and (2) below change the overall document processing speed? For example, suppose there are about 20 fields that use the same calculation. And suppose it's a bit longer code. (1) Write the same code in all fields.(2) Write a document level function and use it. Obviously, (2) is the safest and easiest way to write code. Is there any difference between (1) and (2) above? Of particular interest is how PDF JavaScript uses memory. I've heard that generally global functions use a lot of memory, so it's better not to use too much.
Issue: The document cloud SDK for viewing PDF files doesn't seem to work in Internet Explorer 11 and Brave browser. Link: https://t.co/cENwldMAqLI am not sure if this is an issue with the SDK itself or if it's the issue with the browsers in question.Request some Adobe expert to assist me on this. I'd really appreciate it. Thanks
I am trying to create a set of flashcards to take a user to a random question and then another button to take the user to the answer. I have a PDF document with alternating questions and answers, about 400 pages in total. Any help would be appreciated.
I've found and tried some similar questions in this forum and they just don't work. I think it's because I don't understand correctly. When saving with FDF, I want to save with a file name that is a concatenation of some field names in the form and the save date and time. First, I tried writing the following code in a text field. The file name as expected is displayed. var Pink = this.getField("PINK"); var Blue = this.getField("BLUE"); var FNAME = util.printd("yyyymmdd-HHMM-",new Date())+Pink.value+"-"+Blue.value+".fdf"; event.value = FNAME; And then I created a button and created the following code. I deleted the last line above and added the following. Some are listed below, but all are actually just one line of code. I'm actually trying out more code. But those was all a failure. Because I want to let the user choose where to save the file, the save window must be opened. this.exportAsFDF({cPath:cPath + FNAME}); this.exportAsFDF({cP
At the start, the fields on the below screenshot are all hidden apart from the Term box.The script below sits in the custom validation field of the term box and adds ticks and makes visible certain fields if a term of under 2 is entered. It does differenet tick boxes etc if a term of 2 or over is entered. There is also a mouse up action that ticks all boxes if C is ticked. This all works perfectly.....What I would like to do, but for the life of me cannot work out what I need to add, is for all the fields (except the term box) to reset to hidden if the term box is either blank or someone types 0. if ( !this.getField("checkbox_c").isBoxChecked(0)) {if ( event.value < 2) {this.getField("checkbox_a").checkThisBox(0, false);this.getField("checkbox_b").checkThisBox(0, true);this.getField("checkbox_c").checkThisBox(0, false);this.getField("checkbox_a").display = display.hidden;this.getField("checkbox_c").display = display.hidden;this.getField("SubsPerMth").display = display.hidden;th
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.