Unlock the power of Acrobat SDK through our community.
Nyligen aktiv
Hi there,I have been using Adobe Acrobat with Enfocus PitStop and Quite Imposing plug-ins installed for about a year now. Recently, I have been experiencing issues with the Quite Imposing feature. It seems that when I go to N-Up or Step and Repeat my crop marks are about an 1/8th of an inch short than where they should lie. Is this an issue that can be addressed within the program or does something further need to happen?Please help!Andrew
How do I add computer to my subscription.
My the goal is to get currently selected text in Adobe Reader from another application. As I'm a newbie in Adobe SDK development, firstly I'd like to know is it possible to do this at all and what it the best approach. Currently I got it working from my C++ application by sending Copy Menu ID message to Adobe's main window and then retrieving text from clipboard but this solution is not stable because time to time this ID changes. I wonder - can I implement selected text copy/extraction by use of some Adobe's technology (IAC, plug-in, etc.) and what is the right solution for this aim? Thanks.
I am trying to insert a url in image and then insert that image in a pdf document so that the document can be tracked. Do adobe has some functionality so that it can track the document(get all the user details who opened the document) once it is opened after the download.Message was edited by: Malcolm Thomson Updated title to make it shorter and easier to read.
I'm trying to create a form where all the data comes from Excel and auto-populates a few fields into the PDF if a correct value is typed into the first field. I'm basically trying to create a search function that allows information to pop up when searched. I've noticed that when I try to import data from Excel into the PDF I created, I'm only allowed to select one row of data to import, and it populates all existing form fields on the page. I don't want this. I'm dealing with many rows of data in the Excel spreadsheet. What I would like is to be able to import all data from the Excel file, and have them all as potential data (only showing when the correct value is entered). I really don't know Javascript but I understand that coding is necessary for these types of features. I've been watching YouTube videos and reading other questions and answers but it seems like it's all going over my head. Is what I'm asking even possible? Happy to clarify if anything is unclear. I'm using Acrobat P
HiI have a document (attached link - screendump below) which I have added fields which if ticked, automatically puts the amount owed but if say if the rangers pick up say 2 or more animals, how can I then get the figure to multiply by the number of animals - I guess I would need to add another box to select the number of animals etc but what would the formula be please? I have added the file via Dropbox (I hope it works)...https://www.dropbox.com/s/hbhnfr7v9l4snx1/Fees%20%26Charges%20-%20City%20Assist.pdf?dl=0Thank you .
Hello, I'm fairly new to javascript and have never used it within Adobe Acrobat before so I'm pretty lost. I'm using Acrobat Pro DC and I'm trying to take the user input from two text fields and add them together to show the sum in a third text field. What I have set up is three text fields with the names of "valueOne", "valueTwo", and "sum".In the actions tab on the properties window for the valueOne field I have a trigger of Mouse Down and the action to run javascript, I wrote - var firstValue = this.getField("valueOne").value; I did the same on the second text field with - var secondValue = this.getField("valueTwo").value; Then for the third text field, which will show the sum, I'm not sure how to autofill it? I've tried something like - event.value = (this.getField("valueOne + valueTwo").value=="") ? "";It's not working - and I'm not sure how to have it just show up without using a trigger event? Any advice would be much appreciated, thank you!
Hi, all.I am experiencing near-constant crashes when creating PDFs from Word 2016 using the PDFMaker in Acrobat Pro DC for Windows.Following is the application version information (applications show as up to date): Microsoft Office 365 ProPlusOffice Version: Office 2016 32-bitVersion 16.0.6741.2048 -and-Adobe Acrobat Pro DC2015 Release (Classic)Version 2015.006.30174 -and-Windows 7 Enterprise, Service Pack 1The error messages are:Microsoft Word has encountered a problem and needs to close. We are sorry for the inconvenience. then....Word is running into problems with the 'acrobat pdfmaker office com addin' add-in. If this keeps happening, disable this add-in and check for available updates. Do you want to disable it now?The only temporary workaround I have found is:Choose Help > Repair Installation in Acrobat DC. However, that fix usually only works for the next PDF, then has to be repeated for every subsequent PDF.The docu
I need to add together two columns "Actual Hours" and "Actual Pets", then divide to get "Hours/Pet". I then need a running total for each day of the week that provides the week to date and the month to date.My goal is this: (AHMonday + AHTuesday + AHWednesday + AHThursday + AHFriday) / (APMonday + APTuesday + APWednesday + APThursday + APFriday)The average is not the same as week to date (off slightly, but very important this be accurate) and I need to account for fields being empty without sending errors for not completing the calculations. I am using adobe acrobat pro.
Hi,I want to find a method that would replace all the occurrences of a given word within the PDF file, with a hyperlink that would take me to another page on the same PDF file. I am working with Adobe Acrobat, and it appears that Javascript is needed to perform the action. I don't have a lot of experience in Javascript, so If I can get some assistance and direction, that would be greatly appreciated!Thank you!
I have set up form fields to automatically populate calculations once numbers are entered into some of the other fields on the form. Everything is working except for the last formula:var v12 = getField("Out of Pocket Investment").value;var v10 = getField("Opt 3 Monthly Payment").value;var v11 = getField("Opt 3 # of Months").value;event.value = (v12 - v10 * v11) * .75 ;Any thoughts as to why this is not working for me?
Hello, I would like to know how to automate date and time (military time) based on a previous input. Please refer to the image below.So, I would like to automate it so that when the shift supervisor has filled out the signature field, both the date and time field will be automatically filled. How can I do that? Please help!
Hello everyone. Since I don't know anything of javascript and even if I checked other posts in this community, my field doesn't disappear.So I have a checkbox called "another country" when the user selects this checkbox a dropdown menu should appear, called "select a location" with a list of other countries.At the moment this is not working and I see both the checkbox and the field.This is the script I've added:// Show/hide select a location text fieldsvar nHide = another.target.isBoxChecked(0)?display.visible:display.hidden;this.getField("Select a location").display = nHide; // Show/hide select a location text field label overlaysthis.getField("Overlay_1").display = event.target.value == "Off"? display.visible: display.hidden;Can someone tell me what's wrong? Thanks,Alessia
Here is what I have:var cFormTitle = "CF Order Investigation: ";var cAccountName = this.getField("Account Name").value;var cAccountNumber = this.getField("Account Number").value;var cToAddr = "qualityanalyst@test.com";var cCCAddr = "salessupport@test.com";if(this.getField("Radio1").value = "Yes") {cCCAddr = "salessupport@test.com";}this.mailDoc({bUI: true,cTo: cToAddr,cCCAddr: cCCAddr,cSubject: cFormTitle + cAccountName + " - " + cAccountNumber;})When I try to select OK to save it, it gives me the error: SyntaxError: missing } after property list 13: at line 14The output I would need is similar to this:To: qualityanalyst@test.comCC: if the Yes Radio button is selected I need this to auto fill to salessupport@test.comSubject: CF Order Investigation: 123456 Test AccountAny help would be huge!!! Thanks ahead of time guys
I'm a newcomer in the JS world and need to create a JS code for sending a form via E-Mail using an action button.See code below, I moreover don't have a clue how to put a text value in the subject line if a checkbox is ticked.E.g.: "required" (checkbox 1) "not required" (Checkbox 2)--> C1 is ticked --> write "required" in the subject line--> C2 is ticked --> write "nrequired" in the subject line--> both are ticked --> write "required" // "nrequired"var mySubject=this.getField("Company").value+"//"+this.getField("ObjNr").value+"//Invoice"+this.getField("iMS Number").value+"//"+ ????varbody='Hallo DM-Team,\n\nanbei erhalten Sie den ausgefüllten Antrag zur Stammdatenänderung für Personen\nsowie die benötigten Anlagen.\n\nMit besten Grüßen,\n\n'+this.getField("MitarbeiterPM").value;this.mailDoc(false,"masa@gmx.com","","",mySubject,body)Merci!!!
Hello!I'm new to javascript, so please excuse my lack of knowledge . The first field on my form can be blank or have a numeric value. That field plus about 20 others will be added together to result in a grand total. Based on what the number in that first field is, I've written a calculation script in another field to determine whether the number in that field is greater than, less than, or equal to a specific number. That's working great, except that when the form is opened, the specific number from the calculation script is showing up in that calculated field. I want the calculated field to be blank unless something there is an amount in the grand total on the form. The number printing in the calculated field (which happens to be the last field on the form) is currently -12.00 until a number is entered in any of the 20 or so fields; as soon as any of them has a value entered, I want the calculated field to begin showing it's calculated number. Could I use a validation script to do th
I'm looking for a way for a button to export a value only when checked, or to be able to export null when unchecked since the default unchecked value is 'Off'. Is there a way I can do this with javascript?
Hello;I'm looking for a script that will take a user's input of mm/dd/yy, convert the year to YYYY and copy this value to another field in the document's header. I think I almost had it at a certain point but I'm clearly lost now.Here's what I've been able to put together. Is there any way that this can be done? I appreciate your help.// convert date to yyyy and copy value to Specimen 1 Date Collected field in form headervar d = new Date (this.getField("Specimen 1 Date Collected").value);var today = new Date();if ((today.getFullYear() - d.getFullYear()) >= 100) { this.getField("Specimen 1 Date Collected Header").value = d + 100;} else { this.getField("Specimen 1 Date Collected Header").value = d;}
Hi All,Any thoughts on how to add a script in Adobe Acrobat 2017 to a text box, which will perform and show a current word count from a required amount "Say 250 words", and if this is not achieved, then show a message box saying "Word count much exceed 250"I have 4 text boxes on a form and need this to show in a field above each text box.Thank you for any help provided
I want to create a PDF that provides either content (text) or options contingent on the value chosen in a previous field. 1. First question; does this sound doable with javascript. For purposes of question one; here is a simple exampleAssume a form with 2 fields; Size and Color.For size, there are two options in a dropdown; "small" and "large"If the user selects "small", then text options for color would be "red" and "green". If the user selects "large", then text options for color would be "black" and "white". 2. Where would one find documentation on the methods available for Javascript within Acrobat. Or any documentation, for that matter?
I would like to add a action button that will allow a user to close a the current page they are viewing without asking to save.
Morning all, Apologies if this questions been asked before but I've only just recently begun using Acrobat DC. I wanted to know if there was anyway i could rename hundreds of documents by using text from within the file? Currently I have to click open the file, read the name of the file and then rename the document. Not only is this mind-numbing but is also open to human error so wanted to see if anyone had a better solution for this?Your help would be much appreciated. RegardsTej
In Adobe Reader / Acrobat after add comment and set status to "Accepted", how to get status from JavaScript API.Also can use JavaScript get "Review History" information?
I use Enfocus Switch and I'd really like the advantage of saving a smaller PDF to be emailed to my clients. I can't seem to get this as a script or an action that I can utilize in Switch. Has anyone developed this?
I can't get the JavaScript to round down to 0.5. In Excel, FLOOR.MATH(A1,0.5) does what I want, but it doesn't do so in Adobe. For example, I need 1.1 to 1.4 to round down to 1.0, and 1.6 to 1.9 to round down to 1.5. I have the formula event.value=Math.floor(this.getField("CPE1").value,.5) in Adobe, but this just returns 1.1 to 1.9 to 1.0. Any ideas?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Har redan ett konto? Logga in
Har du inget konto än? Skapa ett konto
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.