Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
Here's my dilemma:I'm making an unique invoice.Sales tax is 1% for county and 6% for state. County is capped at $50. And Total sales tax is capped at $18,000. I have no experience in JavaScript. How can I set this to run automatically based on the total? And then is there a way to turn it off for when sales tax is not needed?Thanks in advanced!
I have created a fillable pdf form with a submit button that emails it. i need the form to be non-fillable once emailed. Currently, the recipient receives it filled in, but can alter the form fields as it is still fillable. Please help!
Hallo zusammenIch habe eine Frage bezüglich JavaBei einem PDF Dokument das ich gemacht habe würde ich gerne über einen Senden Button das Dokument an eine Mail anhängenIch will auf die Schaltfläche "senden" drücken und es wird eine Mail geöffnet wo der Betreff automatisch ausgefüllt wird. Im Betreff sollte die ausgewählte "Art" und der ausgewählte "Ort" stehen. Geht das so oder muss man das anders machen?Das es mir die richtige E-Mail Adresse einfügt das habe ich gerade noch geschaft für andere Sachen muss ich dann aber schon fremde Hilfe in Anspruch nehmenBesten Dank + Gruss
I have a PDF which contains the same image in the same location on every page. The image looks like a stamp with a transparent background that has been flattened into the document. It can easily be removed manually in edit mode with Acrobat Pro DC. Is it possible to automate this process using javascript or an action?
I'm needing to create a custom stamp in Adobe X Pro that show the current date (system). I am not familiar with how javascript works and all the codes that I've found online are for older versions of adobe and do not work.
I have inherited an Acrobat plugin which displays 1-n PDF pages in an offline bitmap using PDPageDrawContentsToWindow, in addition to displaying 1 PDF page in the main Acrobat window. The offline bitmap shows imposed output.This is a Windows only plugin, not targeting Acrobat Reader.Certain PDF files crash the DC SDK plugin version, but work fine in the Acrobat XI plugin version. Other PDFs are fine in the DC SDK plugin. The crash is always in PDPageDrawContentsToWindow. There is no consistency as to whether the 1st or n-th page rendered to the offline bitmap crashes PDPageDrawContentsToWindow.In all cases, the PDF page displays fine in the main Acrobat window and there is no indication the PDFs are corrupt (Acrobat does not ask to save the files, syntax preflighting passes, etc.)I have looked at the "What's new" document, but there doesn't seem to be significant changes from XI SDK to DC SDK.I have changed the plugin to wait for the AVPageViewDidDraw notification before starting to us
I have the following code entered at Document-Level Javascript in my Acrobat Form. "MS CHECK" is hidden my default. If either "MS CHECK 12" or "MS CHECK 13" is checked, then "MS CHECK" should appear. The following code works for that part of it, but when "MS CHECK 12" and "MS CHECK 13" are unchecked, "MS CHECK" stays visible when it should go back to being hidden. Any suggestions? {var c1 = getField("MS 12 CHECK");var c2 = getField("MS 13 CHECK");var c3 = getField("MS CHECK");if(c1 != "Off" || c2 != "Off"){c3.display=display.visible;} else {c3.display=display.hidden;}}
I want to add a javascript that auto-generates an invoice number in the following format: yymmddhhmm-rr where the digits are year year month month day day hour hour minute minute - random digit random digit. Can anybody help me with this? I know how to insert it, I just don't know the actual coding.
Hi,I have a button created on my Acrobat Form, and I would like to use this button to show/hide some other fields.So basically, if user click once, it will display some other fields, and if clicks for the second time it will again hide fields.If it was a checkbox, I could simply assign a mouse up event as follows to solve the issue:this.getField("myfieldtoshowhide").display = (event.target.value=="Off") ? display.hidden : display.visible;But which kind of script and event is required for button? I simply could not solve it out.
I have been tasked to find a replacement for our current web based PDF document viewer, markup manager.Our need to be able to view PDFs.Load a PDF and add a markup and save the markup. User will then be able to reload the PDF and markup and make edits.This can be done until the document is released.Requirement is that we control the menu ( example add save button)Using javascript to sent the markup to a webservice to save the markup our document management system.Currently using AutoVue . Would like to see if we can user Adobe Reader instead.Options?
I have created a form with some calculations but need to discount the amount due based on the month the application is submitted. I marked the two boxes I need help with. The first box is named "Pro-Rated Adjustment" and the second box is named "Pro-Rated Adjustment B". I need help writing the script for each of these boxes. Can anyone help?Just to recap: I need a script to calculate the pro-rated adjustment (-$12.50 if submitted when TODAY (box at bottom left of form) (which represents the month by a number automatically) is September ) the -$12.50 will be multiplied by a number depending on the month For example, if they submit the application in October, the -$12.50 will be 2*-12.50;I need a script to calculate the pro-rated adjustment (-$4.17 if submitted when TODAY (box at bottom left of form) (which represents the month by a number automatically) is September) the -$4.17 will be multiplied by a number depending on the month For example, if they
So I am supposed to aggregate tons of numbers from ~100 PDF forms I prepared in Acrobat Pro DC earlier and display them in tables in a Wordpress website. However, as I have to use the VisualComposer I need the table code to be quite specific, so I was wondering...as opposed to pressing CTRL+C/V a billion times:can I somehow extract the form fields of a PDF (named "date1", "Amount1", "Amount2", "Amount3"...) and write them in a specific manner into a txt file? Such as:[cq_vc_datatable_item data1="date1" data2="Amount1" data3="Amount2" data4="Amount3" data5="Amount4" data6="Amount5" data7="Amount6"][cq_vc_datatable_item data1="date2" data2="Amount7" data3="Amount8" data4="Amount9" data5="Amount10" data6="Amount11" data7="Amount12"]where the "dateX" and "AmountX" are the actual numbers/inputs, of course?I have no clue about JS unfortunately, but I guess I could hack my way from a script that pretty much does already extracts fields and writes them into "variables/placeholders" that match
So I've been trying to do this for a while now, I just can't seem to see what's going wrong with the formula...This is the excel version (note: instead of cell names, I need to put the form name, which is OverallVisits);=IF(H8=500,"250",IF(H8=1000,"350",IF(H8=2000,"500")))So I replaced H8 with OverallVisits but it's not working.I also used a converting website and it then came back with syntax errors...Please help anyone Thanks in advance!
This is an example of what I need:If Box A is filled in with "x", then Box B will display results "1,2,3,4,5".If Box A is filled in with "y", then Box B will display results "6,7,8,9,10".If Box A is filled in with "z", then Box B will display results "11,12,13,14,15"And so forth.Thanks for your help!
Hello.I want to be able to find a sequence of ten numbers in a pdf. I was thinking of reading through each character of the pdf and using an if statement with the isNaN function, however, I'm not sure if that's even possible because I don't know how to read each character in a pdf. If there is another method on how to do this, then that would be fine, too.Any help or guidance would be appreciated.Thank you.
Hello. I'm a beginner in javascript, and I have adobe acrobat X pro. I want to be able to search for a specific string within the pdf, and then save the sequence of numbers that come after that string for my file name.For example, the text would look like "EA 224400" . I would search for the string EA, and then save 224400 as a different variable that would later be used for the file name. This sort of text is found multiple times in my pdf on different pages. Therefore, I want to be able to search for EA, save the number sequence after EA, split document at that point, saving the pages from current page (typically 5, though not always) up to page before next instance of "EA", then save an individual pdf for each number sequence using the number sequence for the pdf file name.I found a different discussion that had almost the exact same concept that I wanted (Split large pdf on repeated text pattern, and save new pdf with custom filename ), however, the only difference is that I want t
I was able to spawn in a new page successfully, and on my end, when I click the "Add Page" button I created, it jumps to that page. However, for others, it is not doing that, it simply remains on the initial page. Is there a script I can add to the button that spawns the page, that will make it also go to that newly spawned page?Additionally, I'd like to be able to allow clients to Delete an unneeded page. The form originally is one page. They can then click to Add a Page. My client would like to be able to delete a page in case the Add a Page button is clicked accidentally, or someone changed their mind.I've searched Google to no avail, as many of the links that look like they are the answer I need, is from acrobatusers.com which seems to no longer be active I should mention I am VERY new to all of this. Thanks in advance!
Is it possible to add a button to a PDF that acts just like the 'Previous View' action you get when you go to View>Page Navigation>Previous View?
Hi: Once in Edit mode of Acrobat Pro Dc where can I bold existing text? Thx
HII am using ADOBE Acrobat Pro DC V 2018.011.20040My aim is to manually fill out the top table i1 to i3 and j1 to j3. Then press the bottom table calculate button and the result appears in the value column beside it as a %.Using WBC button as an example the formula is (j1WBC-j3WBC)/(i3WBC-j3WBC). Applying the formula to the WBC value text field . I have proven the formula works.However i need to put all the data into the top table before doing the calculation. My solution was to press a button, it does the calculation and assigns the value to the text field beside it. I have set up the button properties in the java script I have put rWBC=(j1WBC-j3WBC)/(i3WBC-j3WBC).rWBC is the name for the text beside it.At the moment pressing the button does nothing.Your comments and help will be most appreciated.Regards MH
I am trying to find a javascript that will allow all of the fields in my form to populate in sequential order. I have 10 fields on the PDF and I would like them to be numbered sequentially based off of the first field. Any help would be greatly appreciated.
I have an excel file with over 60,000 numbers. I am trying to code in (using js) these numbers to autofill my pdf form when a user enters a certain number in a field. For example, if the user enters "9999999" into a field, four other fields automatically fill based on the number they entered. However, since the calculation script only allows a certain number of characters, I am unable to write this code (basically a if/then statement) for all 60,000 numbers. Is there a way I can keep these numbers in an excel file and have the calculation script read this file and put these numbers into an array?
Hello I want to create a PDF document that only allows the user to edit text fields if they are blank. Once the field is not blank it should not be editable (read-only). This is the code i used for that:{var f = this.getField(event.target.name);if (f.value == "")f.readonly = false;elsef.readonly = true;}I also have a button that asks for a password, and if the password is correct they can edit a field until they click out of the field.My issue is that the above code only works if the custom calculation script is set to this. If I take the same code and add a Mouse Up JavaScript Action it does not work correctly. For example if a field is blank i have to click on the field then click out and then click on it again to enter a value. Is there way to focus on the script once i click on it?The reason I want to have the script in a action rather than a custom calculation script is that i have many fields and pdfs that need to modify. So instead of going to each field individually and pasting
i have created a dropdown list. i want to copy the list several times on the same page and across multiple pages. when i copy and paste, the dropdown answer selected gets replicated across all the dropdown lists so i cannot have different answers to each question. how do i stop this happening?
Hi, I creating PDF document with script on its load. Script content is some like:try {var cURL = "http://www.whitemesa.com/interop/InteropTestC.wsdl"var cTestString = "This is my test string";// Call the echoString SOAP method -- it is an RPC Encoded methodvar response = SOAP.request({ cURL: cURL, oRequest: { "http://soapinterop.org/:echoString": { inputString: cTestString } }, cAction: "http://soapinterop.org/"});app.alert('ret', 3);} catch (expp) {app.alert(expp, 3);}I know what it need some "Form Save Rights" to be viewable in Adobe Reader. And I saving it in Adobe Acrobat Pro with: File menu -> Save As other -> Reader Extended PDF -> Enable more tools.But when I opening new pdf in Adobe Reader 2018.11.200400, I seeing "MethodNotAllowedError" again/Question: what should/could I fix? My SOAP server will be my own, what I should install onto it? I just need an internet-datetime in my pdf.
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.