Unlock the power of Acrobat SDK through our community.
Récent
What's the AVCommand's name for Optimize Scanned Pages "Scan:OPT" action? I want to call AVCommandNew, but the name for this action is not documented in the SDK. Is there a way how to call it from the plugin? Thanks.
I've detected mistake, or at least I think so, in JavaScript™ for Acrobat® API Reference latest version,page 258 - Doc properties - templates - ExampleList all templates in the document.var t = this.templates for ( var i=0; i < t.length; i++) {var state = (t.hidden) ? "visible" : "hidden" console.println("Template: \"" + t.name + "\", current state: " + state); }" var state = (t.hidden) ? "visible" : "hidden" " here "visible" and "hidden" are mixed up.not much a mistake, but I really got confused.
Hi,I need my total value amount in my form to display two decimal places. At the moment it shows as .00 no matter what numbers I put in.The script I am using is this:(function () { // Get the field values, as numbers var v1 = +getField("ccc").value; var v2 = +getField("ddd").value; if (v1 !== 0) { event.value = v1 * v2 * 220; } else { event.value = ""; } })();Please help! Thanks in advance.
Do you know an instrument which measure the number of symbols into file?
Hello,I'm wondering how to set preferences for saving a Pdf file to Tiff (Eg.: resolution, color mode, etc.)Any suggestions would be much appreciated.Thanks in advance, M.
I have a fillable form that is submitted via email. When I test the received form the submit button is still active in the file that was attached to the email. Is there a script I can add to the submit button that will deactivate the submit button on the file that is emailed? Where would it be placed in the script before var cToAddr = ?Thank you!Kristen
I'm having trouble validating some required fields in an adobe acrobat pdf. I need to have the submit button validate text/radio buttons/check buttons to be filled out prior to emailing. I also have some fields that are entered to generate in the subject line of the email. But the fields highlighted in orange below are not being validated and can be submitted without a value. I copy and pasted from some of the other buttons code found in the form but I'm sure there's a kink in the code somewhere. I need them to be just check boxes and not white. See the code for one of the buttons below. This is my submit button code. var f1 = this.getField("Logic");var f2 = this.getField("Shift");var f3 = this.getField("Item");var f4 = this.getField("Unwind");var f5 = this.getField("Roll QTY");var f6 = this.getField("Time Procedure Completed");var f7 = this.getField("Start Time");var f8 = this.getField("OP I1");var f9 = this.getField("OP I2 ");var f10 = this.getField("OP
Hello,I need help with my java code. I got a form with 3 columns with 160 text fields in each column. They are named A1.0.0-A1.15.9, B1.0.0-B1.15.9, C1.0.0-C1.15.9.What i want to do is take (value of) B1.x.x - C1.x.x and if the difference is more then 1.0 and less then 1.9 i want to give a message to controll that number. So far i got this code: (function calculate() { var fieldNumber = event.target.name.replace("A", ""); var v1 = +this.getField("B"+fieldNumber).value; var v2 = +this.getField("C"+fieldNumber).value; var v3 = v1 - v2;event.value = v3; })()else if ((v3 >= 1.0) && (v3 <= 1.9)) {app.alert = ("controll this");}else {event.value = "";})();I get a syntex error on row 9, what did i miss? My idea is to call on this function in the calculate tab in the A.x.x column. Please help a novice thats trying to learn java
Does anyone have a simple solution to install a date picker please? Either by script or a portable widget?
I can print from every other app!It goes through the in-app process but then it stalls on "Printing - Looking for printer…" in the queue. The printer shows as being "in use" in the preference pane.Please note that, while these are my current configurations, this was happening before I upgraded OS and Acrobat(s):Mac OS El Capitan EPSON WF-3540 (USB connection)Acrobat CC 2015Acrobat Reader DC 2015I look forward to hearing any ideas as to how to remedy this!Thanks!
My form has a set of fields that I'd like the user to determine how many are necessary. Each block of fields is the same.I'm trying to get the 'Add Sequence' button to display the hidden fields below the preceding fields. Currently, my button works to display 1 block of fields, but I'm wondering if it's possible to get the 'Add Sequence' button to display a sequential hidden field each time it's clicked.
Hi,I'm currently working on a project where we fill a report in MS Access, export in PDF (so far everything work), and (this is a this point that we have trouble) we want to add a signature field with a textbox (to allow the user to sign it and make comments), and send the file location by email.I saw on many forum that we can edit a PDF file with VBA code, especially the function "AcroExch.App", only with Adobe Pro. Is that true or we can use it with other version (Reader or Standard)?I'm sorry if this question was already asked, I hope that one of you have the answer.I look forward to your answer,Nick
Literally a noob when it comes to javascripting. I'm wanting to send a pdf form based on 2 dropdown selections when selecting a submit button. I could be miles out or so close but literally have no idea of what I'm doing at this level. What I achieved so far is from scanning the web. ***Please note I am using a Adobe Acrobat Pro DCDropdown 1 = Head Office and Sub TeamDropdown 2 = Constructive and ElectricalCode iv tried so far but its ignoring my command:var Dropdown1 = this.getField("Dropdown1").value;var Dropdown2 = this.getField("Dropdown2")value;var email = "";if ("Dropdown1" == "Head Office" && "Dropdown2" == "Constructive"){var email = "jasonsdking@me.com, constructive@hotmail.com";}else if ("Dropdown1" == "Head Office && "Dropdown2" == "Electrical"){var email = "jasonsdking@me.com, electrical@hotmail.com";}else if ("Dropdown1" == "Sub Team" && "Dropdown2" == "Constructive"){var email = "jasonsdking1@me.com, constructive@hotmail.com";}else if ("Dropdown1 =
Is it possible to calculate numbers that is added to a documents using comments?Like if i for instance add two comments to a document with the numbers 5 and 10. I would like the total value 15 presented in some way.I need this function to be able to make a time estime on how much time is needed to rewrite sections in a larger document.
Hi Great Supporter.My Question is about, i have more than 20 buttons in my form to control specific tasks in the form, so my question is can i make control panel to be shown or hide outside of the area of the form, i succeeded in showing or hiding the controls inside the form, but what i mean something like (floating panel) outside of PDF, in the past days when i was writing lingo scripting language (Macromedia Director Scripting Language) there was a technology called (MIAW) it refer to (Movie in a Window) that is floating window that can call functions to the main movie, i was wonder if something like that is available inside acrobat pro dc via JavaScript so i will give more space to data entries people !, Thanks in Advance
I'm new to scripting and I'm assuming what I am looking for involves scripting.I want to send out a PDF to the staff at work who wants to order a business card. The idea is when they fill the form with their details, a preview of the business card will display their information on the business card mockup.I created the form in InDesign using interactive. How do I get customer's information from the field to show up on the business card mockup?Hopefully, someone can lead me in the right direction. Thanks.
Salut!I am preparing a form in Acrobat. I have a listbox (e.g., ListBox1) with 10 items (e.g., item1, item2, item3). I would like to show/hide other form fields (that I already created) dynamically according to users selection from the listbox.For example, if user selects "item1" from ListBox1, I will display only form field#1 or if user selects item2 from ListBox1, I will display only form field#2, and so on... I will be really looking forward for any suggestions/corrections.------PS. I used the following amongst others for my ListBox1:if(event.value !="item1") {this.getField("field1").display = display.visible;this.getField("field2").display = display.hidden;}else if (event.value !="item2"){this.getField("field1").display = display.hidden;this.getField("field2").display = display.visible;}else if.....
Hi I have a pdf that i need to sort the pages by some of the information on the page.The pages are yodel type labels with a sku on them that I need to sort by the sku.There are upto 1000 pages per PDF so has to be quite fast.Anyone have any scripts and instructions on how to use them as i have read that this is what I need.Thanks
So I am trying to create a form that the text boxes link together, and so far ive run into a problemI am using this scriptvar t1=this.getField ("Name of First Text Box"); if (event.fieldFull) {getField("Name of Second Text Box").setFocus();}And while it allows me to link them forward I can not backspace into the first field.Is there anything I can do to make them backspace into the first field once in the second?I am very new to java and i found this script so any help would be greatly apreciated.
hi.. are there any way when user open pdf document i can force acrobat to ignore check spelling ?thanks in advance
I would like to add about 3 columns and multiply them by another column and I'm having some problems writing the javascript. I would like to add totals with the following headings: Hotel1+Parking1+Mileage1*USexchange1 . Could someone provide me with the instructions?
when the Chemical Name field is chosen from a drop down the index field would fill with the correct Index number for that chemical. How could this be done? I'm a newbie so explain where and how to make this work on the PDF form.
Is it possible to use Adobe Acrobat to automate a process with RPA on a server. A process like reading a PDF document, apply OCR and extract information from it. What's the appropriate license for this?
HI,Is the only option for protecting code to obfuscate the javascript code? For example, is there such a thing as requiring the user to enter a key before being able to execute the javascript code on their computer like there is for TurboTax? Forgive me if this is a novice question. Any help will be appreciated.Thanks.S
does anyone know how to do this?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Vous avez déjà un compte d'utilisateur ? Connexion
Pas encore de compte ? Créer un compte
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.