Unlock the power of Acrobat SDK through our community.
Recently active
I was having issues with Adobe and decided to uninstall the application so that I could reinstall and hopefully have everything working correctly. Uninstalled, rebooted and then tried to reinstall. I double-click SETUP and on the first screen, I'm prompted for "USE TRIAL OR SUBSCRIPTION" or "I HAVE SERIAL NUMBER". If I enter the serial number that is on my Adobe account, it tells me that it is an invalid serial number. If I click on TRIAL and click INSTALL, it does nothing and won't install. I've tried to run the cleaners apps with no luck. Any ideas on how I can get this application reinstalled? Thanks in advance!
Hello,we are forced to use an very old sofware that uses Adobe Interapplication Communication API (IAC) to printout pages from a PDF.This software relies on Adobe Pro 5.0.Now, upon upgrading Acrobat, I managed to find out that the API was changed slightly by Adobe. Since version 7, the call to "printPages" does not work anymore with "PSLevel" set to 1 - which I cannot change since we have no sourcecode.Is anyone aware of this issue or has a workaround ?
I am working on a pavilion rental form and having trouble with code in one specific section. There is a "total" text field that will reflect a dollar value. The value is determined by which checkbox "pavilion" a user wants to rent. The if-else conditions I created for this work as I intend. event.value = 0;if (this.getField("Roller Hockey").value!="Off") event.value=53;else if (this.getField("Tot Lot").value!="Off") event.value=53;else if (this.getField("VP Large").value!="Off") event.value=80;else if (this.getField("Submarine").value!="Off") event.value=53;else if (this.getField("Mermaid").value!="Off") event.value=53;else if (this.getField("TSC Large").value!="Off") event.value=80;else event.value = "0"; However, there are separate checkboxes for the time period a person wishes to rent, since they are booked in half-day periods. I want the "total" text field and value from the if-else conditions to show or hide based on which time period is selected. if (thi
Hi Community, I can get my code to sum total annual leave when string includes "AL" however, if the string include another category e.g. "SK" for sick leave, I get NaN sum value error. I need help to make my JavaScript to only see strings value associated with AL and then calculate over 5 days e.g vars A to E.I may be going about this the completely wrong way.. any help would be appreciated. Thanks //sum annual leave over working week//Mon to Fri var's a to evar a = getField("CHset1").valueAsString;var b = getField("CHset2").valueAsString;var c = getField("CHset3").valueAsString;var d = getField("CHset4").valueAsString;var e = getField("CHset5").valueAsString;event.value="";var parts1 = a.split("AL, ");var parts2 = b.split("AL, ");var parts3 = c.split("AL, ");var parts4 = d.split("AL, ");var parts5 = e.split("AL, ");if (parts.length >=2){event.value = (1*parts1[1]) + (1*parts2[1]) + (1*parts3[1]) + (1*parts4[1]) + (1*parts5[1]);}else event.value = "";
I have two text boxes: Name & SignatureSignature text box has default "XXXXXXX" unless overwritten, using this script: // On Focus script: if (event.target.value==event.target.defaultValue) { event.target.value = ""; event.target.textColor = ["RGB", 0/255, 0/255, 128/255]; } // On Blur script: if (event.target.value=="") { event.target.value = event.target.defaultValue; event.target.textColor = ["RGB", 0/255, 0/255, 128/255]; } I've used this script for other forms, however this form is different. I do not expect user to input new information as it is intended for a wet signature, so I have made it "read only". I would like to have the "X" text cleared if a user inputs into the Name field, and return if the Name field is blanked out.How can I amended these scripts????Thank you!Michelle
Hi experts I know how to import an attachment via JavaScript, letting the user choose the file. Know I want to import a set of files located in the same folder, the path of this folder is known and always the same. Only the quantity of files varies, and their names. Can I use JavaScript to programatically import all files contained in a folder as attachments in a PDF? This script will run from an Action in Acrobat Pro DC for Windows. Thank you
I would like to know how can I create this Script, and be able to paste what I have in the clipboard right after the last page that I have. For example, if you copied an image to the clipboard I want to press the button or Call the code and the image have inserted followed by my last page that I have in my file. I want to achieve this using code of Java Script
Whether I run without parameters and select a file or add the path parameter, it will not read the text file into the stream. Keeps returning undefined. Any thoughts?
Hi everyone, Is there a script that can easily highlight every other text line in PDF? Or at least every line with a different color?
Is there an iPhone version of Adobe Pro Version 20.04.00
We want the user to save the PDF files to specific folders by selecting the Folders in the custom form. The Custom form will display the Folder>SubFolder>SubFolder (combobox selection). Open Dialog.Can we intercept the Save OR Save As to display the custom form OR add a new menu through which can save the PDF (Save/Save As can be disabled).Any other suggestion to meet the requirement.Please help.
How can I convert the content on the web to pdf?Can you explain in detail how to do it step by step? Thank you so much.
Hello, I have a fillable PDF that totals the amount of several cells at the bottom (20 total). In some cases it is a dollar amount (which I want it to sum up) and in other cases it is text or percentages that I want it to exclude. Is this possible to exclude them and how do I do it? Thanks
I am trying to mkae my own class in Adobe Acrobat DC using Javascript, but I keep getting this error "Syntax Error: class is a reserved identifier". Which doesnt make any sense as I am not making a variable called "class" I am defining a class to make objects. Here is my code: If anyone can help, please get back ASAP as this is a project for a client and I have a certain number of hours to work on it and get it done. Thanks
Hi all, I'm extremely new to this and it's generally outside of my wheelhouse so I'm looking for a bit of help. I'm hoping to create a budget form that allows people to select whether or not the item will be charged Harmonized Sales Tax (which is 13% where I'm from). Not all items are taxed so I'm allowing them to choose via a radio buttom whether tax is applicable. I'd like if they choose 'Y' the subtotal should calculate the 13% tax, and if they choose 'N' I'd want it to simply calculate based on the Cost Per and Quantity of the item. I'm able to calculate the Quantity and Cost per into a subtotal very easily obviously, but I'm somewhat lost as to how I can use the radio buttons to calculate the percentage tax. Any help is much appreciated.
Hello, I need to be able to hide my JavaScript in a Form, How can this be done? Regards,JP
I built a button on a form to email the entire .pdf back for review. I figured out how to program the button to execute a Java script that will pull data from a field and display it in the Subject line of the email.var mySubject=this.getField("Traveler Name").value;this.mailDoc({bUI: true, cTo: "corporate.security@mycompany.com", cSubject: mySubject})What I can't seem to figure out is how to edit the script to include the text, "Business Essential Travel Request from: " to precede the [Traveler Name] field in the Subject line: PS: I have NO Java KSA's.
Ok, so my D1, D2, & D3 columns all have the same calculations, but only one of these columns will be used per row. My overall form has 6 "Polygon" rows. I would like to create the form where any row can be used for any of the D columns. I tried to use the simplified field notation calculation, but obviously it duplicates the answer (I didn't bother to format the last 3 boxes yet). I ran into a similar issue earlier (with division), and it was resolved with a validation script (which someone graciously provided to me). I am too ignorant to extrapolate that solution into this problem though...someone please help! Thanks in advance
Hello all. I have created a custom fillable stamp with text fields, a dropdown field and fields that pull the current date and identity. The requirement is to have a digital signature instead of just the identity name be pulled in. Im assuming this is not possible but cant find any documentation to neither confirm or deny this. If its possible please direct me to the proper source. If a digital signature is not possible but pulling in an image of the signature is possible, please send me to the proper resource. I'm not talking about a separate stamp, I need to pull this into the fillable stamp itself. Please advise.
Hi,I'm creating an interactive Bingo board so my student can complete activities at home. The parent will click the button to mark done. I found the following code to change the color of a button. If only once then set the fill color as blue and then apply the following JavaScript code as the MouseUp event of the button:event.target.fillColor = color.green; If you want it to change back and forth, use this code:event.target.fillColor = (color.equal(color.blue, event.target.fillColor)) ? color.green : color.blue; Is there a way to add to the change back and forth code to add words. I want add the word 'Done'? Blue would be blank. Once the button is clicked, it would change to green and the word done would appear. I actually would prefer yellow but I will just change the word. Also, is there a way to add the same property to all buttons at once or do I need to add the script to each bingo board?I really would like a transparent circle to cover the square but that
Hi, I have a list of items and each item has a point value that is summed up in a "Total" calculation. Is there a way that I can deactivate one or more items from beeing counted? Perfect would be a checkbox for each item, that I could click and the item would not be counted - without having to delete the item. And if I uncheck the checkbox it would be counted again? Tim
Hi there, I need to convert a PDF into MS Excel sheet using command line.Wondering if there is such thing exist in the Adobe world, I have Adobe Acrobat Distiller 2017 right now. However, I am open to buy some upgrade if command line way to convert a FPD into EXLS file. Thanks in advance for any help towards this matter.-Ahsan
Hi all, long time reader, first time poster. Thanks very much for all the help and info I've already managed to gather from here. So onto my question:I've used a custom format as a work around to the divide by zero errors. It works perfectly, but sometimes it will show 33% or 33.333% or even sometimes 33.3333% (33 just an example). What can I add to my script to make it so it has no decimals? Or worst case scenario, only 1 or 2 decimal places?Also, just thought of a side question, is it possible to have it show blank rather than NaN? The custom format script I've used is: var numerator = + getField ( " RMTimely " ) . value ;var denominator = + getField ( " RMTotal " ) . value;if ( denominator ! = = 0 ) {event . value = numerator / denominator ;} else {event.value = " " ;} Any help or guidance you can give me on this is much appreciated. Thanks in advance. Kyle
Hi,Can i open a word attachment in a pdf with Excel VBA?thx if someone have an answer. Best regardsAxel
Hello, I have a fillable PDF form that I have created. I have everything ready to go with the exception of submitting a form. I want the submit form button that I have created to email a copy of the PDF to the recipient. I have tried the native submit form action, and I have tried javascript to try and get the button to email a copy of the form. I can only get it to create a draft in the "Drafts" folder, and not send. I have searched the forums and the internet to try and find a solution. So far the only success I have is that it creates a draft. Can somebody help me and/or point me in the right direction?Thank you, Jeff
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.