Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
I have a number range from 1.77150 to 1.77221 and I would like it to turn red if it is outside that range.
is there a way to extract 3D content (geomtry) from a pdf and convert it to .fbx or another format?Im looking for a solution with the SDK
I have a line item order form I'm working on. There are seven lines in which the user can entered their quantity/unit cost/etc. I've set everything up to calculate the total cost for each line (last column on the form), and then these total costs are summed as the sub total at the bottom of the form. This works beautifully. The problem is I think I need a custom code to sum the sub total at the bottom of the form EXCEPT when there is only one total cost value on the form in which case the sub total field should just grab that with no calculation. I hope this makes sense? Thanks for any help you have!
I have set up a form, and I have used javascript in other pdf forms for the date field, with no problem. In this pdf form, the date is broken out as " of the ___ day of _(Month)__, 20 __. I set up a custom date format for each field.Day - custom format "dd"Month - custom format "mmmm"Year - custom format "yy"On the Page Properties Actions, I have set up to "Run a JavaScript":var f=this.getField("Day");f.value=util.printd("dd", new Date());var g=this.getField("Month");g.value=util.printd("mmmm", new Date());var h=this.getField("Year"); h.value=util.printd("yyyy", new date());I keep getting an error message though "Invalid date/time: please ensure that the date/time exists. Field [Month] should match format mmmm"I'm not sure why I keep getting the error message. Can anyone help?
Downloaded and installed the add in " Create Bookmark Report".From the following site: https://acrobatusers.com/actions-exchange?trackingid=JZXYQLocal machine being used runs most current updated Windows 10 pro and using Adobe Acrobat XI ProBut I don't get a report.Something I maybe missing.1st screen shot of add in being used:(there are number of bookmarks in the Bookmarks 2, 3, & 4)2nd screen shot of report but no bookmarks- also wanted a csv report but none available:
get message that activate product because I am not connected to internet. PC is absolutely connected to internet (i'm composing this message on same pc that product is installed. Tried offline registration, and get message that serial number is incorrect.Any suggestions?
Exactly what the title said. I am trying to OCR hundreds of pdfs which contain both bookmarks and footers, which are causing the OCR to not run on the rest of the page because this page already "contains renderable text". I need to be able to overwrite the existing "renderable text" with a fresh OCR which captures the whole page. Online I see a lot of direction to convert to a TIF or print to PDF and try again, but this will not work as I need to preserve the bookmarks in the document. Help! Thanks!
Hello I am wondering if any one help me.. I have very simple calculation but got stuck I have more then 59 numeric fields that i wan to multiply by user entered data!! I just want when any one enter at QUANTITY field 2 or whatever they want the last Grand total field will show 160 as the text1 price is 80.00 $, so far I have this js code but this code is work only one field. // Get first field value, as a numbervar v2 = +getField("Text2").value;var v3 = +getField("Text3").value;// Calculate and set this field's value to the resultevent.value = 80 * (v2);event.value = 80 * (v3);So I want there will be text1 to text 59 in same conditionevent.value = 80 * (v2); will be change according to item price...
Hi! Can someone help me with JavaScript for a print button on a fillable pdf please? I am not a coder so I just need the script to add to the pdf. I created a form that can be opened from a website. Once open, I have a buttons to email the form, reset the form and print the form. The email and reset buttons work great, but the functionality to print it is not in Adobe Pro DC. I have to add JavaScript in the properties. I just need a simple code to open the print dialog box. Thank you in advance for your help!
I have a pdf, which I opened in Adobe Reader DC by double-clicking the file.I added a sticky note and then attempted to save the file. The save icon, File -> Save, and ctrl-s all prompt me to save the pdf as a new file, as if I had chosen "Save As" rather than "Save."I can overwrite the existing file just fine, but it has to prompt me to ask if I'm sure I really want to.What gives?
Hi I just signed up for the free Acrobat DC trial and downloaded the desktop version but when I tried to use it I got a message that my trial had expired. It looks like someone else previously had a trial version on the same PC. Could that be why it thought my trial had expired? How to get it to work for my trial period?
HiI would like to know if there is a java script code for all these "Discard User Data" options? I am using Adobe Acrobat Pro X 10.1.16 on Windows 7.Thanks.
I am creating a form in Adobe Acrobat and I need to average a column of numbers. The problem is, not all rows of that column will always have a numeric value but the basic calculation function includes the row in the average anyway. Here is a simplified version of my table:CriteriaRating1.131.241.31.421.53The average of the four rows that contain a value is 3. But the calculate field function counts row 1.3 as a zero, even though no zero is present and generates an average value of 2.4. I don't know Javascript very well. Is there a custom calculation script that can help me with this?
basically, i just wanted to put a smiley on a document with some arrows. i had to go through edit then add picture then the whole background document disappeared. then i deleted the page then reinserted the page then added the picture first and the arrows second, because the "arrange" menu items were not working before. you have to go to "edit" to add a picture and then the document does a whole OCR thing automatically -- and now even Acrobat is hanging with a dialog box that reads: Content Preparation Processyou have to go to "comment" to add an arrow, but the arrows are only available from an icon with a drop-down menubasically -- you have to hunt and peck and now the app is hanging and i am working with a 4 page scanned document i wanted to put a smiley onto with some arrows. geeze -- what is going on? i used to love Acrobat, it was like the surgical scalpel you could use to process and print documents and take care of a good number of deliverability issues, etc. i am working on a b
I frequently have dozens of pdfs that I need to print the comment summaries on. I have the extract commented pages script and it is very helpful, but I would like to automate the next step - printing the summary. Using Acrobat DC on a MacThank you!
Hello,I am having a problem with searching through comments in highlight annotation.Problem behavior is somewhat strange.First time when it searches through the comments, it does it successfully.When I search second time and scroll a document little bit then Acrobat crashes.When I try to debug, at some point, it gives me error that Acrobat.pdb is not loaded and hence I can not debug it further.I want to debug it further (in Acrobat.dll) because I think I can get some clue for crash.How can I load this Acrobat.pdb and debug in Acrobat.dll?Here is my code to search though the comments:ASText searchKey = ASTextNew();searchKey = ASTextFromUnicode((ASUTF16Val*)reqText, kUTF16HostEndian);SearchQueryDataRec srcQuery;memset(&srcQuery, 0, sizeof(SearchQueryDataRec));srcQuery.size = sizeof(SearchQueryDataRec);srcQuery.query = searchKey;srcQuery.type = kSearchActiveDoc;//Search through comments of Highlight annotationsrcQuery.scope = kSearchDocumentText | kSearchMarkup;srcQuery.path = NULL;sr
Hi,AxAcroPDFLib is not working as expected on a 64-Bit .net application.We are facing this issue after upgrading our 32-Bit application to 64-Bit. Changing the target platform to 'x86' is not acceptableIs there any other solution for this ?
Hello,When I delete annotation using PDPageRemoveAnnot method, it deletes the annotation from the page successfully.But when I look at the comment tab, it still remains there.Here is my code snipet to find and delete required highlight annotation:for (int i2 = 0; i2 < PDPageGetNumAnnots(page); i2++) { //Get a specific annotation annot = PDPageGetAnnot(page, i2); if (PDAnnotIsValid(annot)){ //Determine if the annotation is a Highlight annotation if (PDAnnotGetSubtype(annot) == ASAtomFromString("Highlight")) { //Create a character pointer to store the annotation's text char * annBuf; ASInt32 bufSize = PDTextAnnotGetContents(annot, NULL, 0) + 1; //Allocate the size of bufSize to the character pointer annBuf = (char*)ASmalloc((os_size_t)bufSize); //Populate annBuf with the annotation's text PDTextAnnotGetContents(annot, annBuf, bufSize); //Compare the contents of annBuf with a string if (strcmp(annBuf, i
I have created JavaScript for number linking, if I click a number in fig it will go to the corresponding explanation. This was developed using acrobat 8. But in adobe 11 it is very slow to execute. Previous when I execute the script it was taking 2 sec for the file. But for the adobe 11 it is taking 2 min for each file. It is JavaScript problem in Adobe Acrobat XI Pro??
I want to use acrobat api in my winfrom application,but i can not use the acrobat dll before install acrobat pro. i want to develop my own application for business,then how to use the acrobat sdk with c#
In a fillable PDF is it possible to do a recursive function... it needs to be 5-6 levels deepvalue A changes bcoz of value B which changes due to value ARun the equation 5 times and it normalizes.If yes, then plz provide and example with help of an script.Thank you in advance.......
I need to convert an excel If Then Statements with multiple cell logic into a fillable PDF
I am trying to fill a date field (date3) with the later of two other date field (date1 & date2) on my form.If date1 > date 2, then date1 = date3; else date2 = date3I have tried multiple variations of other script on these forums, but have not had any luck.
I have already added Print and Clear buttons to my form, but the submit form only points to a URL and Execute menu option does not have the send options.Is there a script I can write that will do this? I am still new, and this is my first form.
HelloI am editing a form in Acrobat where I have a drop down menu with 5 options in a field. I need to create a custom script to use addition for the first three options and subtraction for the last two options. Any help would be greatly appreciated.
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.