Unlock the power of Acrobat SDK through our community.
Askettäinen
I have been tasked with the process of altering a fillable pdf form at work. The purpose of this form is for an employee here at the office to run this application and to select a proposal and it populate a list of classifications and wage rates, save the pdf form and then they can email that form to users in the field to fill out and return.I am not really that familiar with fillable pdf forms but as a programmer feel I can handle it. The form I am trying to populate contains three columns; a classification field that I populate with selected dropdown items (I found this easy) and then an Hourly Rate Paid column that I am trying to populate dynamically when they select a classification and a number of employees column that they enter manually.What I need the form to do is when a classification is selected from the dropdown (by the user in the field) the form is supposed to look through a dataset of some type and find that classification along with its related wage rate and then automa
Hello there,I am trying to do a simple equation that I can not seem to figure out. I have a subtotal amount and discount that is being given. For the total amount I would like it to give me the price amount with the tax being included for a new total. I would think this formula would be work. I could be wrong. Total = subtotal1-(Subtotal1*discount)or subtotal1-(Subtotal1*discount)when i did the an easy equation it does not change the numbers as well. I also fixed the calculation order.
Hi Acrobat forum readers:Is there any way to utterly force Adobe PDF's printer driver to use only document-specified fonts that are installed at the system level and stop printer font substitution?I am having a thorny and bizarre font substitution problem with Microsoft Word 2016.I designed a corporate identity for a company that deals with education publishing.I specified using "ITC Century Std" as a standard font in the identity.When we view a test document I created on screen in MS Word, there are 3 lines of text at the bottom of the page after a subheading. (see attached JPEG Word screenshot)When you print that document to either Adobe PDF as a printer or to any paper laser printer, there are suddenly 5 lines of text at the bottom of the page after the same subheading! And more bizarre, every single line on the page has the exact same line ending (even hyphenated words are identical).At first, I thought it must be a font substitution problem, or a margin change problem.Then, I did
I created a fillable PDF and inserted in on my website. That works perfectly. Now when I test it, I would like them to send it to a specific email address once it fills out. Any idea how that can be done through Adobe Acrobat DC?Thanks in advance.
Using Adobe Acrobat Pro DC...I have created a PDF Form which includes a field for the current date, "Today". It seems to work. I used the following in the "Custom Calculation Script" section var f = this.getField("Today");if (f.value == "") f.value = util.printd("mm/dd/yyyy", new Date());I have a fillable field for a project beginning date "OnAssignment".Assuming both those fields (Today and OnAssignment) are populated... I want a third field, "Duration" to then calculate and display the current duration - the difference between "Today" and "OnAssignment", and have no idea how to do that. The obvious secondary question would be how best to format the result in the "Duration" field. I am hoping for... (example)... 2.3 Years Any assistance, guidance, reference, resource, and/or education would be greatly appreciated.
I have a 2000+ page document that I am trying to insert another PDF after every second page. I'm a Javascript novice and I've managed to get this far. Can anyone offer any advise as to what I'm doing wrong?for (var i=this.numPages-1; i>=0; i--) { if (i % 2 == 0) { { this.insertPages(i, "FileToInsert.pdf"); }
Hello All,I have read a number of posts on several sites. Additionally have noted a number of knowledgeable folks supporting all the of the newb questions. I have visited some resource sites like adobe. and various forums like this one.However I am still not able to glean the solution for the correct java script that will address correctly auto populating the Month of February if 1.29 thru 1.31 is selected in the initial date field.all other dating works correctly Form has 3 date fields, I am trying to provide script that will allow my users to populate the first field and the 2nd and 3rd field will be dated 1 month later , naturally Feb. is an exceptionthe main script I have used to this point is // get value of field to update - field name is Text5var sDate = this.getField('Text5').value;// convert to date time object// the fields format is mm/dd/yyyyvar oDate = util.scand('mm/dd/yyyy', sDate);// get the parts of the datevar fFullYear = oDate.getFullYear(); // 4 digit yearvar
Just discovered that several boxed versions of XI Pro we purchased a few months ago have serial numbers that are either counterfeit or were somehow removed from the Adobe database for being "not legitimate" A massive hardware project that took a few extra months to complete is the reason why we're only finding this out. I spoke with our national IT services providers and they say counterfeit XI Pro licenses are a huge problem right now, and some e-tailers with legitimate licensing rights to Adobe have been victim. The e-tailers are Tier-1 resellers with national rights to Adobe products...whatever that means. However...every single unit we've purchased on eBay works fine. Go figure.We are prohibited from using DC for a variety of reasons. I now face the possibility of asking our organization to abandon PDF as a long-term approved archival format because we cannot work with the PDFs the way we need to. This would impact about 275 million documents in
Is there a way to capture the date in which a user fills in the first field on a adobe form?
I know previous versions of Acrobat Standard had the JavaScript console, but I cannot find it in Standard DC. I've checked the Enable Acrobat JavaScript box in Preferences but I cannot find the JavaScript options in the Tool menu. Was this feature removed from Standard and it's now only available in Pro?
Hi thank you for reading,I just started using forms central and acrobat for editing forms after learning that Outlook Developer is only for total experts who prefer an outdated developer platform haha. I could make the form but the behind the scenes scripting and validating etc. are difficult for me because I don't know anyone with great IT knowledge. I have no coding experience besides knowing where to paste an exact code I need.With the submit button in Acrobat, I have an ask for you all that I haven’t been able to find exactly. I understand the idea of mailto: as a URL to open the form in outlook.In my form, I have To and CC fields that require an email address. Each employee (hundreds of them) will be filling in different To and CC email fields on the form I made. They do not have the capacity to create the script to mail automatically to their supervisors, and I can't go help them all set it up.What code would I paste in the URL to pull the form’s To and CC fields over to Outlook
I would like to automate the bates numbering from my C# / JavaScript code on the existing pdf documents. Can someone help me how do I approch this. Is there a dll that I can call inside my code to achieve this?Thanks in advance.Satyen
HelloI have this java script line that prints the 1st page only of all documents I select.this.print(false, 0, 0);Is there any way I can edit it to print from page 2 - end of document (ignoring page 1)Many ThanksMick
In my Adobe XI document I have a filed named Date.For the Date field, it has a simple calculation script to display today's date in the dd/mm/yy format (IE 22/02/17):var today = new Date();event.value = util.printd("dd/mm/yy", today);Then I have a custom format script to take the value from the calculation script and format it to display as 22ND DAY OF FEBRUARY, 2017if (event.value) { var d = util.scand("dd/mm/yy", event.value); if (d!=null) { event.value = getCustomDateString(d); }}function getCustomDateString(d) { var ordinalSuffix; if (d.getDate()==1 || d.getDate()==21 || d.getDate()==31) ordinalSuffix = "st"; else if (d.getDate()==2 || d.getDate()==22) ordinalSuffix = "nd"; else if (d.getDate()==3) &
I generate several pdf files, every week, each 4-5 pages long. How can I automate the process of comparing two pdf files ?
HI everyone,I am trying to create a pdf form where user are asked to input in the field, sign the document and submit the signed form via email. I have used "Submit a form" action to email to certain address (e.g. [deleted by mod] subject=Send this form). I also want to show the user input in the subject line of the email along with the other information. Someone told me JavaScript can do this but don't know how?Any help will be appreciated. I am using Acrobat Pro.Thanks,Bipin
Not sure where to ask this so feel free to move it to the correct area.I'm using Adobe Acrobat Pro DC and there is a toolbar to the far right where the scroll bar normally goes. How do I move it to another location or remove it? I don't want to hide it. When I move the mouse to the right I want to be able to scroll down using the scroll bar. I keep opening the tool taskbar because of it's location on the far right. It's annoying, inconvenient and counter productive. I need to either move it to the far left, to the tool bar location above or to remove it completely. How do I do that?
I would like to run a script on doc/open that will import some data for later use. Under "Javascript/Document Actions" there are listed "Document Will Close" "Document Did Close" and a few others that I might attach a script to, but no "On Document Open".It must be possible to do this, but I am not able to find it. Any suggestions please?I am using Acrobat DC ProBill
Hello all,I hope to make my question as concise as possible without making my post too lengthy. Please let me know if anything is unclear.My goal from a 1000 foot view: Create a PDF checklist that managers will fill out for new hires. On this checklist they will select a check box for each system that they would like their new employee to have access to. The checklist will then be submitted to the Help Desk via email for account creation. A Help Desk technician will look over the form to ensure that all requested systems are actually appropriate for the new employee (e.g. a manager in the call center should not be checking the boxes to grant access to the various IT administration systems for their new hire, and it will be the Help Desk Technician's job to catch such a scenario). The Help Desk technician then launches a PowerShell script that will interact with the form, automating the setup of the various requested systems.How submission occurs: In my form there is a Submit button tha
Hi,I am a developer, we have a web application developed using asp.net and mostly we use IE and OS is Windows 8.1.There is a page that shows embed pdf files, but latest update is giving issues. Actually it shows pdf but after showing embed pdf there are other links in web page so user can navigate when user clicks on that IE becomes not responding and an acrobat icon pops up and that also becomes not responding. After few seconds(some 30-40 seconds) of delay that acrobat pop-up vanishes later web application navigates properly. This is happening for all embed PDF with latest version of Acrobat reader DC.Just for my refernce verified installing Foxit reader, there above scenarios works fine.It was working till latest update but not working now
I have a row of text fields that need to be rotated based on another field value.From this:To this:I've read through the forum and the only option I can see is to resize each text box? But that would be a lot of coordinates to script!Cheers in advance(P.S. Each text field has a custom calculation script and are individually hidden/shown based on another fields value, so they need to be text fields as far as I can see as opposed to image/button fields!)
Hello, I have a document which has 2 buttons a send via e-mail, and a print button.There is a single text input that has to be valideated for a 9 digit number.I'm using Javascript for the print and email sending and for the validation as well.My problem is, that the buttons are checking if the field is empty, but if I type in the correct amount of numbers, and DON'T click out of the text field the button will rercieves it as empty thus sending the error message.Any help would much appreciated. My javascript skills are decent, but I'm not familiar with Adobe JS.Thank you.
I need to write script which uses adobe's accessibility check functionality. I can do that easily through UI, I need to do the same from script so that I shouldn't open up UI every time. Any suggestions will be highly appreciated.
Morning All,Im trying to scan a multi page document using Acrobat Pro DC, basically i want to put a large document into my scanner. press scan and have all the pages scanned into one PDF.At the moment im getting 1 page of the multi page doc, im being promted to scan more pages but by that time the scaner already has scanned to whole donument. After this is says the scan can no longer be completed.Im usng Adobe Acrobat Pro DC and a network (ethernet) HP Pro MFP M477dw scanner.Any suggestonsCheersWoody
I am using Adobe ColdFusion on my client's server and I noticed that I cannot populate noneditable forms. I am looking for a way to programmatically prepare a form to make it have editable fields. Basically, I am looking to duplicate Adobe Acrobat PRO DC's 'prepare form' behavior via a scripting language? I would not mind if there is a Java solution to this. I am not sure if there is an API for Adobe Acrobat Pro DC but I would be interested in that as well. Any advice? Thanks in advance!
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Onko sinulla jo tili? Kirjaudu sisään
Eikö sinulla ole vielä tiliä? Luo tili
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.