Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
КАК ОТПИСАТЬСЯ ОТ ADOBE ACROBAT?Поддержка не отвечает. В чат не могу написать, он на английском. Деньги снимает с карточки Digital River Ireland Ltd.
Is there a way to write a web application (asp.net) that load pdf file, read its fields, edit the fields and save the documents with a new name? The C# examples that exist in the SDK are not web example and used to open the PDF file. This behavior can cause a bed performance in web applications
I am using Adobe Pro DC. Thanks in advance for your help!
Hi All.In my PDF form I would like to calculate total hours between two date fields StartDate and EndDate which formatted like m/d/yyyy. And two time fields StartTime and EndTime which formatted like HH:MM. If StartDate and EndDate are the same so total hours between = 0. If startDate and EndDate are different (5/10/2017 and 5/11/2017) so Total = 7. For instance:StartDateEndDateStartTimeEndTimeTotal5/10/20175/10/201709:0013:004:005/10/20175/11/201709:0015:3012:30How to solve that problem?Thanks.
Hi,I have 2 questions:1) I do not understand how something which looks like a button (see Image from Action Wizard form) shows up as a type: "ok" as shown below. I need to understand what a type of "ok" even means and why it is not a "button" as it is with the Skip and Cancel buttons. I looked and cannot find an explanation anywhere, only check boxes, buttons, etc.2) Once I understand #1, how can I make it so that the user only has to click this "Apply Label" button once to execute the entire loop. Right now the user has to click on "Apply label" for every document open. I copied what I think are relevant parts from the code (see Excerpts of Code below).Image from Action Wizard Form:Excerpts of Code (with relevant text in red): { &nb
I need a simple to place a numbering sequence on a dynamic stamp. I have searched the entire web for 5 whole days and have found that I must pay $140 to get such a simple java script to simply apply a numbering system to a dynamic stamp that counts every time it is placed! Is there anyway to obtain a script that I can add to a dynamic stamp to simply number itself 001, 002, 003, and so on for each time I place the stamp on a pdf document?
I'v wrote a plug-in file (X.api) by Acrobat DC SDK. Could u tell me the steps of using MakeKeys.exe and SignPlugin.exe to identify the file and the fees if it's needed?
Can i convert pdf into a jpeg in Adobe Acrobat XI Standard
Hallo,https://acrobatusers.com/tutorials/using-colors-acrobat-javascript hier steht das man die Farbe convertieren kannaber bei mir funktionierte es nicht, er macht gar nichts. Muss ich da irgent eine Schleife bauen um jedes einzelne Objekt zu ändernoder wie löst man so etwas?var cmykBlue = color.convert(["RGB", 0.18,0.18,0.18],["CMYK, 10,0,0,10]);Danke für jede BemühungenGrußJürgen
This used to work for us, then suddenly started failing around March. After several horrific, frustrating 2-hour interactions with Adobe support (in which they have repeatedly promised to escalate the problem, but apparently have not), it's still not working.Here's the deal:Word 2013Acrobat Pro DCVery large files (the problem seems to start occurring around 700 pages; the document I am working on now is around 1800 pages)What we've tried:* uninstalling and reinstalling the programs* running installation repairsWe can run a PDF outside of Word, but we need to use the Add-in to tweak the bookmarks (we need to set Heading 7 bookmarks to be at the Level 1 heading in the final PDF). And yes, we could do that manually, but this has worked for years (like over 10 years), so why should we have to set things manually now after all this time?One thing I did do early on (back in March 2016) was back out a bunch of Office updates. This fixed the problem, but our IT has things set up so that update
Hello, i am reposting my problem because i dont seem to get any help and i am starting to become desperatehere's my problem:I had a adobe CC suite for a year but now reverted to adobe mastercollection CS6,installed the mastercollection, everything worked accept acrobat X pro. It keeps giving me a 130:11 error.It seems the distiller is working just can not use acrobat pro!I chatted with the helpdesk for hours and went to the forumsthis is what i already did:-deactivated, deinstalled CS6, downloaded mastercollection CS6 from the adobe site and reinstalled it (2x), still the same problem -downloaded programmanager 10.0 and updated it, still the same problem - deinstalled adobe creative cloud and reinstalled CS6, still the same problem - deactivated programs, restarted them and reactivated them, all programs worked but X pro still gave 130:11 error - i used adobe erase to erase all the programs af adobe, then reinstalled CS6, still the same problem.I am really getting frustrated, i n
hi, in my form Drop Down List available 50 items. i have found bellow code so as per bellow code i have to make 50 cases. updating 50 cases will take lot of time. is there any other code available that i can easily copy paste all the details??. i mean first i will copy all drop down options & then corresponding auto population options. thanks.. var sNewSel = event.value; switch (sNewSel) { case "ProductNo1": this.getField("ItemDescription").value = "blah, blah"; this.getField("Size").value = "blah, blah"; break; case "ProductNo2": this.getField("ItemDescription").value = "blah, blah"; this.getField("Size").value = "blah, blah"; &nbs
I am new to Java Scripts. I read several online articles and have had some success but the one I am trying to attempt is not working. I am on Adobe XI Pro.What I am trying is a simple algebra calculation E = A-(B+C+D). I didn't use the Simplified Calculations because my fields were named with Symbols and Spaces automatically when I created the document. I was having a problem with the calculation order here anyway.I have attempted this in two different formats - please see below but neither give ma a calculation. I am not getting any errors they just don't work.Can someone please point me in the right direction?
Can anyone lead me to a place to download Acrobat Pro 8?
I am using Acrobat Pro DC 2015 Release (continuous) Version 2015.017.20053 on Mac OS X 10.10.5. It is possible to modify the word "Untitled" as circled below to something else. Thanks in advance for any ideas on this.
I used a script to autopopulate physical and mailing address based on a drop-down selection from of location's name. If there is an exception for the mailing address, I would like to delete out what was autopopulated and manually type in the correct information. However when I tab to the next field, the autopopulated data comes back and what I typed in disappears. Thanks for your guidance all!
Hello,I am new to Acrobat Javascript and I would like to get some help on this:I have a pdf form where I have a Volume "VF" [liter] in one field and a Flow "Q" [liter/minute] in another field. In the third field I would like the calculation of Emptying time in seconds: (VF/Q)*60Now, I manage to get the formula right, but as you start to fill in the other fields, the Q field is equal to zero so you get a message that the stated value do not match the field format. I understand this has something to do with the denominator is 0. I googled and tried the Javascript below but it doesnt work. What is wrong?(all fields have the same format.)// Custom calculation script(function () { // Get field values as numbersvar v1 = +getField("VF").value;var v2 = +getField("Q").value; // Perform calculation if denominator is not zero (or blank)if (v2 !== 0) {event.value = ( v1 / v2 ) * 60;} else {event.value = "";} })();
Hi,I am trying to change the spacing using alignment properties but unsuccessful. I do not want these huge gaps between "Include Doc #" and "Enter Page Prefix" and "Include Page #" and "Include "of N" pages (see Image from Form below). I tried align_distribute, align_left, align_fill but no luck (see Code below). The output remains the same. Image from Form:Code: { &nb
Hi,I want to add text to following check box but it is squished.I tried adding height but it did not work. { type: "check_box", item_id: "SPst", &nbs
Hi,I am creating a dialog box with list box. I wanted to display the bookmark name in the list box with the dialog box. is this possible to do this using adobe acrobat javascript?Thank you,Ariv[Moved from non-technical Forum Lounge to specific Program forum... Mod][Here is the list of all Adobe forums... https://forums.adobe.com/welcome]
Hi,How do I disable checkbox? { type: "check_box", item_id: "SPst", &nb
I just heard about personalization of pdfs with filters like e-motions etc. Does anyone know how to access these features in Acrobat?
I have a drop down with 12 items. Each item has an Export Value. Can someone show me the javascript to enable me to have the drop down item price to go into text fields? What I'd like to accomplish is, to have the first Item export price go into text field A when that one is selected, then the second Item export price go into text field B, then the third Item export price to text field C, and so on. I want the prices to remain in the corresponding text fields until Reset. I hope this can be done and not too complicated cause I'm still learning javascript, but I like working with it. I'd appreciate any help and any script examples that I can learn from. Thanks guys.
I want to keep the "\" in the static text below but the output shows it missing. How can I maintain the "\" in the static text?{ type: "view", align_children: "align_top", alignment: "align_top", &
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.