Unlock the power of Acrobat SDK through our community.
Recently active
I recently used Thom Parker's "Changing another field with combo box (drop down) selection" article (Thanks Thom!) to make a form that has two text boxes and one drop down. Depending on what you select in the drop down, the two text boxes are populated with unique sentences. What I would like to do is have an additional drop down that contains a word or number selection that when chosen would place it into one of the sentences. For my form, I have a drop down that you select why you are advising someone, which populates the 'Reason for Advising' text field with a small explanation and also populates 'Plan of Action' with a short summary of what we intend to do. Right now I have created an underlined section in the sentence where the user can simply type additional information, but I would like to have a second drop down that they could choose from to populate that area of the sentence. So looking at Thom's original document script:// Place all pre-population data into a single data str
Hello,I am a visual designer with very limited js skills but am wondering if anyone could help me with an interactive PDF I've made in which I want to save whichever layer is open. The layers are set to display as radio buttons are clicked and there are 60 different layers. (I know.)I found one piece of code just googling on line, which appears to be saving which radio button was selected but not displaying the corresponding layer.function SetLayer() { // get the radio button status var layerName = this.getField("Layer").value; this.getField("LayerName").value = layerName; var ocgArray = this.getOCGs(); for (var i=0; i < ocgArray.length; i++) { if (layerName == ocgArray.name) ocgArray.state =
Hi, I am trying to tweak a timesheet that I have added a dropdown box that has dates entered into the <Options>, <Item List> as "1/6/2018" and every 14 days til the end of the year. Where I am stuck is trying to get the javascript that will take the chosen 'Pay Period Ending' date and add to the 14th date field. Then I am trying to get all the other fields to start from this date -1 so that each date of the two-week period is shown. This way, the dropdown date will automatically update the pay period dates. I made some progress following these instructions https://answers.acrobatusers.com/How-autofill-date-field-based-field-selection-q286091.aspx and got the end date to reflect my date but could not get subsequent fields to -1 from the other for the staggered dates I need. The only other issue was date format in that drop downs are MM/DD/YYYY but the 14 date fields for column hours tally are too small and need to be MM/DD. Thank you.
Hallo,Meine Frage wäre...wie kann ich Seitenumbrüche bei einer Konvertierung von einer HTML Datei in eine PDF Datei erzwingen? Die eingebundene CSS Datei mit dem page-break-Befehl wird nicht übernommen. Jedoch das Layout aus der CSS Datei wird übernommen. Kann mir jemand sagen, woran das liegt bzw. wie ich den Seitenumbruch erzwingen kann?
I wrote a function in a js file in the C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\Javascripts folder.mySaveAs = app.trustedFunction(function(myForm, path){ app.beginPriv(); var myForm = event.target; return rtn = myForm.saveAs(path); app.endPriv();});I added a button to the form which calls.mySaveAs(this, saveAsFile);The console showsNotAllowedError: Security settings prevent access to this property or method.App.beginPriv:15:Field Button1:Mouse UpIs there something I am missing or doing wrong?
Is there a java script I could add to a button in a file that would allow the user to save the file as a jpg?
I am using Acrobat Pro DC (version 2015.020.20039) and when running the Action Wizard to process certain items (usually 30 or more per) it runs the process but each time it asks me to save and to what location.Even though I set this up in the Action and it still asks me to save and to where.I want it to process and save automatically to the local folder I have it assigned to.I did follow these directions in the forum: Prompted to Save After Every File Being Processed via Action Wizard I need it to process all the way thru, including the saving to a local folder.Thank You.
Buonaseraho appena acquistato la versione Pro di Acrobat DC il mio problema è il seguente: nelle versioni precedenti ero solito aggiungere all'interno dei PDF dei pulsanti di navigazione per permettere all'utente di spostarsi rapidamente a delle pagine specifiche (una sorta di riferimento incrociato presente in word), adesso non riesco a trovare il controllo per aggiungere questi pulsanti, dove devo cercare?Grazie
I've created a dynamic stamp that has two fields for the user to enter data.The stamp and javascript code seem to be working correctly except that Iget prompted twice for the data entry, once when selecting the stamp andagain when placing the stamp. I found a work-around; if I enter the data onthe first prompt and then 'cancel' on the second prompt the stamp gets placedand the data shows correctly. This is the code I'm using for one of the fields:var cResponse = app.response({cQuestion: "Enter the Dates to appear in the stamp.",cTitle: "Dates",cLabel: "Dates"event.value = cResponse;I'm using the code from some examples I found. The other thing that wouldbe nice is to combine the two field prompts into one prompt for the data entry.Regards,Mike
I have series of parent checkboxes that trigger on child checkboxes - copying the value. But if the user changes the parent checkbox from "On" to "off" the child checkbox does not copy. This the script i founded was usingvar nhnw2 = getField("ClientHNW2").value; if (nhnw2 === "On"){ getField("ClientHNWSup2").value = "On"} else { getField("ClientHNWSup2").value = "Off";}JJ
As per the title:Is there a way for Adobe Acrobat (regardless of pro or not pro) to programmatically pull the password from the database rather than typing it manually during encryption?In addition, is there an API/function/library to trigger on-demand encryption?The initial answer is no, but is there any alternative way? If no, what are the alternatives, or how can I achieve this? I am open to any of Adobe products. To get more context of the questions, I've posted introductory questions in the PDFforum, basically what I want to achieve: How do I automate PDF encryption for multiple PDF files using Adobe Acrobat Pro?
I have no experience with java. Appreciate help in creating a custom calculation script please.The form is a checkbook register. I need to calculate the balance in each line/row of the register. Beginning balance + or - (check or deposit) = balance. Can someone please help get me started on the calculation script?Thank you!
I am currently working on a project where I have 6 different dropdown lists all with the same information that would auto populate the corresponding field next to them.I obviously am doing something wrong because I can not get each dropdown list and corresponding field to act on their own. What I end up with is being able to control only 1 at a time or all of them. If you look at my small sample code below maybe you can see what I am doing wrong. Any help would be greatly appreciated.var DepData={"Code Blue Elevator":{contact: "Your Department Chief"}, "Lab":{conatact: "Your Department Chief"}, };
// test AcroFields form = stamper.AcroFields; var fields = form.Fields; var fieldKeys = form.Fields.Keys; foreach (string fieldKey in fieldKeys) { if (fieldKey.Contains("timeholder")) { float[] fieldP
I have a series of data points in an Acrobat Form. I have two checkboxes, and if either one or both are selected, I need a value of 1. I am not good at Javascript, and I think I am missing the very simple way to do it.
I am working on a sort of rolling log. A sort of activity tracker if you will. I have the form built the way i want however I would like to build a button that will insert a new page. This way as the user fills the previous page he/she can click the button and the next one is inserted for them.
I need to print the bookmarks to essentially get a table of contents. How do I do that?
I want a button to do this:1) With single click on Field1 - hide Field1 and show Field22) With single click on Field2 - hide Field 2 and show Field13) With double click on Field1 - open a fileBasically, I want to show and hide images throughout a PDF. I want the option between having the image appear on the document and being able to open the image in a new window.Any help? I very new to Javascript and cannot figure it out.
Hey Adobe,Need a java script code that can find and highlight two list of word in yellow and red colors.send me a response [Moderator: Personal information removed] for more huge code.Thanks in advance
My English is not so good, for this I will use Google translator =)I need to connect a thermal card (as is yandeks.metriki) to pdf files that I upload to google disk, or another hosting. Is there an opportunity to implement it?Мне нужно подключить тепловую карту (как есть у яндекс.метрики) на пдф файлы которые я загружаю на гугл диск, или другой хостинг. Есть ли возможность реализовать?
Hello, I am trying to add a column of positive and negative numbers on an electronically created form as shown below:For some reason, the "Above Totals" field is treating the negative as a positive number, resulting in a total of 3 instead of 1. Once I finish typing in the next row; however, the field correctly treats the negative as a negative number as it should be calculated:There seems to be some type of delay with this calculation that does not get corrected until the user manually enters an additional piece of data. Is there a reason why this calculation is not happening automatically? Thanks so much.
Hello, I have an awesome PDF Form that works perfectly on my PC. However many of the javascripts I'm using to make it so when you check a box another checks/unchecks are not working on iPad. Here are 2 samples. Anyone know how to get this working?Example 1if (event.target.value!="Off") this.getField("15moLoyalty").checkThisBox(0, true);Example 2if (event.target.value!="Off") this.getField("15moLoyalty").checkThisBox(0, false);Here is another try I took doing it as a calculation field. This wont work on the iPad either.Example 3var f = this.getField("plans");if(f.isBoxChecked(0)){getField("15moLoyalty").checkThisBox(0,true);getField("10moBundle").checkThisBox(0,true);getField("10mowireless").checkThisBox(0,true);}else if(f.isBoxChecked(1)){getField("15moLoyalty").checkThisBox(0,true);getField("10moBundle").checkThisBox(0,true);getField("10mowireless").checkThisBox(0,true);}else if(f.isBoxChecked(6)){getField("15moLoyalty").checkThisBox(0,false);getField("10moBundle").c
Hi experts,Is there any way for me to return to the first page automatically once the video has finished the playback?On a similar note, is there also a way to return to the first page once my count down timer has stopped?Thank you!
Hi, Using pdf ,I want to copy all texts from pdf to frame maker. Is this is possible through script.
I need the Adobe Acrobat DC plugin code for my analysis process. Since I am working on some demo project where I want to use or access the C# based COM components.I want to access my custom plugin being provided by C# based COM components.Please provide me the Adobe acrobat DC sample plugin code.Thanks.
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.