Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
I am making a form where letter grades will be entered. I need the form to convert the letter grade into a number value. The corresponding number values will be added together to calculate a total in another field.For this scenario, A = 4, B = 3, C = 2, D = 1, F = 0. For reference, some of the field names are "ELA1", "ELA2", "ELA3", and "ELA4".I am new to this and can't quite find a similar solution. Thank you for any help!
I recently updated to the free version of Adobe Acrobat Reader DC. When I receive a pdf as an attachment to an email, I can't save it to my hard drive. I could before. What's wrong?
Hello I'm trying to have a checkbox, when not checked display a message in the email body, but all I get is "undefined".var WI="Inventory Control - This includes Warehouse Inventory and Rental Inventory";var cb1 = this.getField("WI-U").value; if ( cb1 =="Off") WI.value;var cToAddr ="Email@Company.com"var cSubLine ="" var cBody = "Thank you for completing the file. \n\n"+ cb1.value + "\n"when the check box is off I need it to display plain text from var WI in the body of the email.Any assistance is greatly appreciated.
Hello -I want to create a conditional script to send an email if a certain form field includes specific text. The form is already made to automatically be sent to a set array of emails when the user pushes the "Submit Form by Email" button, but I want to add a script on top of that that will submit the form additionally to another email address when there is specific information included in a specific field. Is there a way that I can do this? I'd really appreciate any help. Thank you!
HelloMy question is, is it possible to create a form with the following requirements?1. Open PDF2. The supervisor fills in fields.3. The manager clicks on one of the departments, then the form should be forwarded to defined, stored e-mail addresses for processing (6 departments, on each departement is an email address - the choice of the departements with radio button or dropdown field).4. Example, the email was send to the department secretariat. He write an opinion in a field (including the name of the editor and the timestamp) and forwards it to the personal office by clicking on «Continue» (two defined, stored e-mail addresses, the choice of the personal office with radio button or dropdown field).5. The personal office also write an opinion in the form (including the name of the editor and the timestamp) and forwarded it to the department (send back -Department that is mentioned in step 2.).6. The department prints out the form.is that possible to create with adobe and javascript?
Is there a maximum amount of data you can have in a drop down box?I have a list of 6 clients (I'm starting small just to test)I have a name, DOB and address.I am using a script to populate a drop down box which lists all names:var textFields = ["Aname", "Bname", "Cname", "Dname", "Ename", "Fname"]; if (event.source!=null && textFields.indexOf(event.source.name)!=-1) { var items = [""]; for (var i in textFields) { items.push(this.getField(textFields).valueAsString); } this.getField("Dropdown1").setItems(items); } I have also created custom fields to add the name, DOB & address into one field. (AFull Details, BFull Details etc.) I am then trying to use this field in a drop down. It seems to work for 5 clients, but when I add the 6th, it doesn't refresh the drop down...var textFields = ["AFull
I am very new to acrobat form JavaScript and to coding in general. I have scoured the internet looking for my answers, but nothing quite fits. Your help would be greatly appreciated.I have a 2-page document with various form fields in rows - 16 rows total. At the beginning of each row is a checkbox that I use (via JavaScript) to clear the contents of the entire row, if needed. Besides the initial checkbox, each row contains 5 text boxes, 4 date pickers, and 9 additional checkboxes.I have a button with the mouse up set to run a JavaScript using the this.mailDoc code to send form data via email. However, I want to conditionally send information to the body of the email based on checkboxes being enabled.Here is what I want to do:1) If the row's initial checkbox is enabled, I want the data from certain fields in the row to be sent to the body of the email. If the row's initial checkbox is disabled, I don't want any of the data from the row's variou
Or just replace the image with a repaired one. I have a 160,000 page PDF and on every other page, there is an image background. Part of the background is a solid color that needs to be replaced with a different solid color. The problem is that the text above it is variable so I either need to put the box between that image and the text above or find that text and recreate it above the new box.Any ideas (I'm relatively new to Acrobat Javascript)
Hello,I am using Adobe Acrobat Standard DC. I have created a static form. I want to convert it into a dynamic form which expands depending on the input from a flat file.For e.g. : If a row looks like the one given below, I want the rows to have only that many lines as the input data file. I do not much knowledge in JavaScript. Is there a way to do this? The input data for this will be in an array. So if the array has only 1 entry, only one row should be displayed and the position of rest of the form should be adjusted accordingly. Any info regarding this greatly appreciated. Thank you.
I have a form that has spots for first floor and second floor elevations for a house. Unfortunately not all of the houses have a second floor. Is there a way that I can prompt the user to ask if there is a second floor and if not have it place N/A in the box and if so have it add 9 feet to the first floor. The form is set up so everything is calculated off of the Highest adjacent grade and split between different boxes for the integer and decimal.the code for the first floor calculation is var num = this.getField("HAG").value + this.getField("HAGdec").value/10 + 2;var strNum = util.printf("%0.1f",num);var aNum = strNum.split(".");event.value = aNum[0];this.getField("FirstFloordec").value = aNum[1];I'm assuming second floor would be var num = this.getField("HAG").value + this.getField("HAGdec").value/10 + 11;var strNum = util.printf("%0.1f",num);var aNum = strNum.split(".");event.value = aNum[0];this.getField("SecondFloordec").value = aNum[1];plus whatever is necessary for allowin
I have an else if statement that is completely finished, however it seems that the hierarchy is off and I don't know what order it should be in. Can anyone help with this? reading and writing test fields are number based on values from 0-120, any field marked with a Q is a checkbox field. I believe I have covered all possible situations in the code so nothing with that needs to be changed, only the order of statements so that they all work properly.//var f = this.getField("Reading Test");var g = this.getField("Writing Test");var h = this.getField("ReadingQ");var i = this.getField("WritingQ");var j = this.getField("ESLQ");var k = this.getField("EngQ");if (k.valueAsString=="On") event.value = "";else if ((f.valueAsString=="") && (g.valueAsString=="") && (j.valueAsString=="On"))event.value = "";else if ((f.valueAsString=="") && (g.valueAsString=="") && (j.valueAsString=="Off"))event.value = "";else if ((i.valueAsString=="On") && (h.valueAsString=="O
I am working with text boxes, I have already run calculation scripts to return a value based on other field selections. Those values are all being returned correctly, however based on the nature of the form some of the values returned include the word "and" while others may include the word "or" the text color for the entire field is currently blue but I would like to bring attention to those words "and"/"or" by either assigning them a different color or bolding them.Example:MTH 35 - Intermediate Algebra AND MTH 123 - College Algebra and TrigonometryI want them to stand out from the rest of the text. I don't know if this is possible, I imagine it could be a validation script or something but I am not sure how best to set it up.Any help would be great, I've tried reading documentation but I haven't found anything that similar to what I want to do.Thanks in advance!
I am wondering what the best approach for this would be.Here's my problem at hand:Hopefully this can be done on a web page (ASP.Net)...1) Allow user to open a previously created PDF2) when the user click son the document, I create a bubble\Oval where they clicked3) this click will open a form (specific to that click) and allow the user to enter data (maybe 5 fields) attached to a databse4) if the user clicks another area, it replicates the same steps listed above5) user can then save the document6) if they re-open that doc again, it should show all the bubbles\ovals create on page and when each bubble\oval is clicked, it displays that form with the data previously enteredWhat is the best approach to take here with Adobe products? Buy acrobat along with the acrobat sdk? I will install this on a customer's iis box. Not sure how licensing occurs here with multiple users etc...Thanks,Tim
For the life of me, I can't use this function correctly. I just want to spawn a blank template and have the page be correctly numbered in the bottom when the user completes the form but needs another page to go on.If I leave the template visible (as page one), it duplicates a filled copy of my template. I need the new page to be blank. So I figured the template needs to be blank and hidden. for it to spawn correctly.To hide a blank template, I first need to spawn a copy with bRename: true which correctly puts a prefix to the page created "P1". But once I spawn a second page from the hidden template, it has the same prefix of "P1". Then the others gets incremental correctly. So the first two pages are still Identical.and for the page numbering I have these 2 calculate scriptevent.value = this.pageNum + 1 //this value changes according to the page a value has been changed onevent.value = this.numPages //this show the correct valueWhat am I not ge
These will work as separate actions in IE when assigned to a Yes Checkbox, they will not work in iOSAction1var nShow = event.target.isBoxChecked(1)?display.hidden:display.visible;this.getField("app.074SRG1100IssueDate").display = nHide;this.getField("app.075SRG1100ExpiryDate").display = nHide; Action2var nShow = event.target.isBoxChecked(1)?display.hidden:display.visible;this.getField("app.074SRG1100IssueDate").display = nShow;this.getField("app.075SRG1100ExpiryDate").display = nShow; On the No CheckboxAction1var nHide = event.target.isBoxChecked(1)?display.hidden:display.visible;this.getField("app.074SRG1100IssueDate").display = nHide;this.getField("app.075SRG1100ExpiryDate").display = nHide;In iOS, the checkboxes work fine but not the hide/unhide element.Help please
I start to download Adobe acrobat dc Pro in my mac . until i setup it will show error Acrobat Installer encountered an unexpected failure. and try againmy mac bookhave os x 10.11.13nerver install adobe acrobat pro berfor
I have a button with popMenu options. When I select this one option (it opens three external pdf docs). What I'd like to do is, is to have each of the three docs open and fan across the screen instead of piling up to the left or center. I went into the Properties window of each doc and selected "resize", "center" and "hide window controls". This fine and the right size. But, I was wondering how to not have the three docs in a pile but have them open left, center and right? They didn't give us that option when Acrobat X pro was created. Any suggestions as to doing what I'd like to do?
Hi,Can you please advise if you any API to be used in our C# application to convert from HTML to PDF ?Cheers,RamPost moved from Adobe Creative Cloud to Creating PDFs. [Mod]
Hey,How to convert html string to formatted string in Adobe acrobat forms.E.g. Input/ form field value is<html> <body> <p>Hi</p> <b>Text1</b></br> <s>Text2</s> <p>end</p> </body></htm>I want the output/display the form field value should beHiText1Text2 end
Setting up forms in Pro DC for Reader only users to fill in... Is it possible to have a text box grow as it is filled in? Would also like users to be able to drop a photo in comment area, is that possible?
I am trying to get this field Notify Scheduling: when answered yes to push information from a dropdown to the cTo: section of my maildoc. i Have 3 of these total in my form.I am just having trouble thinking of the if statement. Would anyone know if this is possible?Thank you in advance for the support!Nick
Good evening, is there any way to get the coordinates, and dimensions of a Field in Acrobat? We are trying to find a way to essentially recreate all the fields in the document, that way to can rename all of them. Any help or advice would be wonderful!
Hi there,I have an acrobat form set up with one field that is set to allow for 6 characters (numbers) to be entered. There are scenarios where someone could enter 6 zero's in the field. Unfortunately, if I tab to the next field the six 0's change to one 0. If I go back and select the field, it displays six 0's. Is there a script I need to include so that all of the 0's alway display? This field isn't a calculation so I don't need decimals or anything.Simply put, if someone enters 000000 I need it to display like that in the field. Letters cannot be inserted in this field, only numbers.Thanks!
I was wondering if it's possible to open other (external files) using a stamp of some sort? A dynamic stamp perhaps? Well, at this moment I haven't found anything. Let me know if you know. Thanks, folks.
We have a form that will be filled out by operators. The operators fill out a signature field when the form is completed. The supervisor then reviews the form and signs a second signature field to confirm that everything is filled out correctly. I have two questions.Can the supervisor signature field be read only, then when the operator signs off, the supervisor signature field is now able to be signed?Can the supervisor signature field be limited to who can sign it?Thank you in advance.
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.