Unlock the power of Acrobat SDK through our community.
Actividad reciente
I have made one form which requires validation before signing....... everything is working good........ clicking validation button pops up a message about which fields need to be filled (if any require fields are not filled by user)..Now i want to ask is it possible in pdf form that instead of pop up message..... the fields which are not filled by users are highlighted in red there itself instead of a popup message (bcoz the formatting of pop up is very bad and i am not able to format the popup mssg.. they come up very messy).
Hi,Using Acrobat Professional DC, wondered if it is possible to create a script to get the name of an object for example as an event target (for example, on entering a page?).If I can get an object's name, then possibly I could add a script to change its fill color or some other property?Am learning scripting in Acrobat, have been reading the scripting API, correct syntax, and would appreciate any help to get an object's name based on an event.Thank you in advance.Stephen
Hello,I want to call a function from .api plugin.For example, If I created a plugin to open a PDF document in Acrobat or Acrobat Reader then I want to call that function from other application(might be written in c or java etc).Can you please tell me how can I achieve this?Thank you in advance!Regards,Navnath
HelloI am trying to write a simple script that will populate a text field based on another drop down field's selection. I'm getting an error but I have copied the code from somewhere and tried to make it my own with little luck. Please advise? I am adding this as a calculation script.var selectedContact person = this.getField("Contact person").value;if (selectedContact person=="Person A") event.value = "+ 44 123 456 7890";else if (selectedContact person=="Person B") event.value = "+ 44 123 456 7890";else event.value = "";I'd like to repeat the code on a "Contact Email" field where based on the selection in "Contact person" the email address is prefilled. Any help is much appreciated.
I have a Custom Stamp that I want to use in the Actions area. can thuis be done.
i am making a form .. in which following items has to go to the dropdown menu: Z80.0: Family history of malignant neoplasm of digestive organsZ80.1: Family history of malignant neoplasm of trachea, bronchus and lungZ80.2: Family history of malignant neoplasm of other respiratory and intrathoracic organsbut the problem is..... we have very small space for dropdown to accomodate such long text.. so we decided to just put the codes...... so my question is:is it possible that while pulling down the menu it shows full name.... but after selection the value is set to the short form...like Z80.0 , Z80.1 after selection but while selection full name is visible..
Hello All,I am in the process of developing a pdf form that will contain approximately 30 combo-boxes of employees names. I am looking to have all 30 combo-boxes reference one listing for their values as the list may be frequently updated and I do not want to have to update each of the 30 combo boxes every time a change needs to me made to the employee listing. I am looking for some input on how I can accomplish this easily. My thought was javascript or something may work. Thanks in advance for your help!
My code is fairly standard, if people need to see more I can provide but essentially I am just trying to access a field's ButtonLayout property. I know the field I am accessing is a button, b/c I Added it previously in the code and I can review it once the file saves. The last line below is the one that doesn't work. I get the error "Object doesn't support this property or method". I am using MS Access 2016 with the Adobe Acrobat 10.0 Type Library. In contrast I can access the Value, and the BorderStyle properties and set them just fine. The lines in green work, the line in red does not work. Why? I've tried not using capitals and camel case. No difference....Set pdDoc = avDoc.GetPDDoc()Set jso = pdDoc.GetJSObjectjso.getField("buttonImage1")..BorderStyle = "beveled"jso.getField("buttonImage1").buttonImportIcon CStr(photoSet!Photo)jso.getField("caption1").Value = CStr(photoSet!Caption)jso.getField("buttonImage1").ButtonLayout = "1"...
I am new to programming in Acrobat SDK. I am trying to create a tool in .Net in a Windows application. The tool should reduce pdf file size without end users interaction. Is it possible in Acrobat SDK? If yes, any examples will be appreciated.Thanks!
I'm trying to run a script that once the division is picked only that specific account number will populate?DivisionAccount No.Administration100-57136-71500Board of Directors100-57136-70100Customer Service100-57136-70400EHS100-57136-71000Engineering100-57136-70800Executive - GM100-57136-70200Facilities Maint100-57136-71600Finance100-57136-70600Fleet100-57136-71200Human Resources100-57136-70300IT100-57136-70500JRWSS1-51215-100Operations-Admin100-57136-70900Public Information100-57136-70700SanOps100-57136-71400Support Services100-57136-71800Water Consv100-57136-71100Water Ops100-57136-71300Water Production100-57136-40000
I have the following in an excel cell: =IF(N32>75,N32-75,0)Can anyone help me with turning that into an equation I can use in Acrobat Pro X?Thank you very much to any replies...
I added a third party plugin button from the Quick Tool and displayed it on the toolbar. However, if you hide the tool panel window, the tool button of the third party plugin will be hidden the next time Acrobat starts.Please let me know if anyone knows how to not hide.
When I get a PDF that needs to be filled out, but has no forum fill areas, I just use the Typewriter function and type on the line I want filles out. Then I ise my computer Pen to sign on the screen. Then I email the form to who needs it. Unfortunately anything i use with the Typewriter functun and I email mail out the PDF there is no typing on the PDF. My signature is there but what ever I did with the Typewriter function is missing. Can someone tell me why?Thanks,Steve
Okay, hopefully the last question of the day...I've simplified my problem down to the following: I have two radio buttons that, when clicked, populate a combobox with a set of options. The first set consists of the numbers 1-5, and the second is simply the string "N/A". Then down below, a numeric Cost field will check to see if the contents of the Quantity field is not "N/A", and if it's not, it will turn the quantity string into an integer and multiply it by 10. Otherwise, if it is "N/A", it will return 0.The problem is that, as soon as you click on either radio button, Acrobat gives the error "The value entered does not match the format of the field [ Cost ]". So it sounds like Cost is expecting an integer and receiving a string, but I'm not sure why it would be getting a string. Other than that, it works as expected.
How can i decline acrobat the use of my device camera?
I have tried to upload Adobe Pro XI 2x now and it keeps setting the language as Danish even though I clicked English (north americcan). How can I change the language? I can't read Danish!
In a mouseUp action for a radio button, I want to include some Javascript to disable another form field (a combobox). This is what I've tried, and it isn't working:this.getField("fieldName").disabled=true;
I'm new to Javascript in PDF forms. I'm trying to put a combobox (named "Additional Users") on a PDF form that populates with values from an array. According to this help page, it looks like you can use a 2D array to store the keys and values for the combobox.What I've done will populate the combobox, but once you select an option and click away from it, the value resets to the first option, which in this case is 0. In fact, even the example code from the help page does the same thing when I try it out in my form. What am I doing wrong? var dropdown = this.getField("Additional Users"); dropdown.setItems([ ["0", 0], ["5", 5], ["10", 10], ["15", 15] ]);
Help! I have used the Basic example in the SDK as a basis to create my plug-in, it works fine on my machine so I built it to put on another machine, and discovered because it was in debug mode, it was using the debug version of the C++ libraries which aren't distributable, however when I change it to a release build then it just doesn't appear as an add-in (It is signed and reader enabled).I don't know what I am missing \ what I should be doing in get this to work, it has been ages since I have done anything in C++ so the many many options in the project properties are lost in time. I have spent nearly 4 days this and not made any progress. Can you help? Or at least point me some areas to check? People to ask.Thanks in advance.Danny Banks
I am looking for JavaScript that executes Tools-Pages-Insert from File in Adobe Acrobat. I have a coversheet. I would like to add a button to it that allows the user to insert other pages from another PDF. I have found the JavaScript that adds another PDF as an attachment, but that doesn't accomplish my goal. I am using Acrobat Pro XI. Any help would be greatly appreciated.
My laptop died and I bought a new one. How can I install my adobe as I just bought it about a month ago but when trying to install it says already redeemed.
First I am a novice at best...but learningI have a form that has a worksheet the user will complete prior to filling out the form. The worksheet is a series of 71 check boxes that will assign a category value...1, 2, or 3, and populate 1 or more text boxes with different instructions.There are 15 discreet groups of category and text box combinations possible depending on which checkbox is selected.Check boxes are named cbGroup1.1, cbGroup1.2....cbGroup15.1...The function below is called from a mouseup event in the checkbox field.function setText(){if (this.getField('cbGroup1.3').value == 'Yes') { this.getField('rptCategory').value = 'CATEGORY 1'; this.getField('rptInfo.1').value = 'Instruction one'; this.getField('rptInfo.1').display = display.visible; this.getField('rptInfo.2').value = 'Instruction two'; this.getField('rptInfo.2').display = display.visible; this.getField('rptInfo.3').value = 'Instruction three'; this.getField('rptInfo.3').disp
Hi all: I have read the Appendix E: PDF Name Registry in PDF Reference(version 1.7) and know that developers can register own names, but I can find how to do it, please kindly give some information about register names, Thanks.BTW, I want to register SubFilter names mentioned in 8.7 Digital Signatures.
In Acrobat DC 2015.17.20053, I created a PDF from a .PNG (resolution 131.6 dpi). It created a clean-looking .PDF (here it is at 150%):But when I use OCR Text Recognition, it degrades the quality and creates a lot of artifacts:Is there a way to use Text Recognition and maintain decent quality?
I have an Access application that is being developed using Acrobat 9.5 but will be used in an environment using Acrobat 7. I would like to be able to find what version of acrobat is installed when the app is running so I can do different things depending on the version in use.(a) Is this doable?(b) How would I go about it?None of the documentation I have read has given me any clues.TIA
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
¿Ya tiene cuenta? Iniciar sesión
¿Aún no tienes una cuenta? Crea una cuenta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.