Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
Hi all,are there any free way or automation script can check all bookmarks and links on PDF and report them to check broken one, i searched a lot but all tools are paid.Thanks a lot in advance
Hi All,I am using Adobe Acrobat Pro DC, I populated data from C# using acrofields. Regarding eSignatures, we have three Signatures in the pdf form. When I try to draw the first eSignature its ok but when try to second, the first one changed as it is like second one.Can any one plz help on this.ThanksBhanu
I have a booklet that is in Chinese. When these pages were scanned, not all of the text was perfectly vertical/horizontal, some of the pages were not scanned and it left some of the text at an angle. So, when I run the OCR Text Recognition, it will automatically rotate the pages so the text is horizontal. This erases part of the page and leaves the corners white.How can I run the OCR Text Recognition without it moving/rotating any of the pages?In the attached PDF, the first page is the original and the second page is after OCR Text Recognition has run. How can I prevent this, but still run OCR?Thanks,Sean Before OCR &nbs
Hi I work at a company where we have 14 different restaurants, and all I wan't is to create a website, that the restaurant managers can log in to and create or edit their menu'sWe have a graphic designer that makes all the templates, but they have to fill in the text using inCopy,inDesign or Word. Instead, I want him to be able to upload the template to a FTP server, and they can log in to a website, that I create in javascript and html, and plug in the new menu's.Is that possible? I hope someone is able to get me going 🙂 Thanks!
Hi,We have a customer that supplies large pdfs, sometimes up to 8000 pages, that they have created possibly with Word merge or a similar program. Every 4 pages is a new cover letter (or record). I need to add a padded 4' Arial identifier (record number) that will show in the window of the envelope after the Letters are folded down. Basically...PDF p1 would have 0001PDF p5 would have 0002PDF p9 would have 0003PDF p13 would have 0004...and so forthCurrently I bring it into our variable program, Fusion Pro, and add it there, but it's very long composition.I'm pretty sure this can be achieved with a script in Acrobat, but not with my limited Javascript knowledge.We also have Pitstop, but I couldn't find anyway to do this there either. I'm running Acrobat XI on the Mac and Acrobat 9 on the PC.Any help would be appreciated!Thanks in advance,Lisa
Hello,I'm having layout alignment problem. In "Content and Layout" the cards are correctly aligned to the edge of the screen. However, in the Preflight and also in the application there is a space between the cards and the margin.Can someone help me please?Thanks,
Hello,I'm having a layout alignment problem. In "Content and Layout" the cards are correctly aligned to the edge of the screen. However, in the Preflight and also in the application there is a space between the cards and the margin.Can someone help me please?Thanks,
I renewed my subscription to ADOBE ACROBAT Export Utility last night. When I log in I get an Adobe screen that says: Currently unavailable We apologize for the inconvenience. We are working hard to make the service available. Please check back shortly. What's happening?
Hi,I wanted to create a bookmark tree using app.execMenu("NewBookmark").In top level I can able to create the bookmark with name.If I wanted to create a bookmark tree with many childs in many level I am unable to create the bookmark. can any one help me on this?the output should be1st child(1st level) aaa(2nd level) bbb(2nd level) ccc(2nd level)2nd child(1st level) ddd(2nd level) eee(2nd level) fff(2nd level)Thank youAriv
When making a calll into the AcroPDF library to display a PDF within a client window, a failure occurs within the AcroPDF.dll file causing the program to crash
The plugin will be simple, and is going to be used internal to our company .
Hi, I need to know if cuantan with any product that converts pdf to xml structuredflow:* Recepcionan layered pdf* They convert pdf to xml orderly and structured
Hello,I many PDFs that I read in using Acrobat DC and I always need the top table on the second page of each PDF, I store these values in excel and later into a database.Is there a way to automate this with javascript?Ideally I just need a way to quickly get data from the top table on the second page.thanks
HI,I am trying to make it so if the total number of pages (numPages) is 1, then the code inserts the "1" + "page" and if there is a total of 3 pages , it would insert save as "3" + "pages". I don't understand why the following is not saving the pdf with the cSavePath (i.e., filename) based on whether the total # of pages is 1 or not 1: cSavePath += " - " cSavePath += event.target.numPages If (event.target.numPages == "1") {cSavePath += " page"} If (event.target.numPages != "1") {cSavePath += " pages"} I even tried as numerical value:cSavePath += " - " cSavePath += event.target.numPages  
Hi there,I have recently been developing digital pdfs for salespeople to use to process orders. These are very nearly complete.One aspect of them is a unique ID agreement number. The format of this is as follows: aaa/bcccccaaa is a predefined personnel number.b is the last digit of the year - this currently does not update automatically and is just set as "7", and I will manually have to change this in 2018.ccccc is a calculation of how many minutes we are into the year, divided by 5.25 (to keep the number as 99,999 or less during work days of the year, so this number is never more than five digits)The problem I'm facing is that if ccccc is below five digits then the agreement number will be too short. Is there any way that I can force this part of the script to return five digits including leading zeroes? The calculation script I'm currently using is below:var dd = "01/01/17 00:00";var rd = util.printd("dd/mm/yy HH:MM", new Date());var d1 = util.scand("dd/mm/yy HH:MM", dd);var d2 = ut
Hi,So someone was kind enough to provide the following code to generate an error message if there is a comma in the folder path. However, this error is also coming up when there is a comma in the file name. How can I make this error exclusive to only objecting a comma in the folder name and not the filename. I don't care if there is a comma in the filename. For example:C:\\test,in,the,program\file,1.pdf should generate an errorC:\\testintheprogram\file,1.pdf should not generate an errorif (/,/.test(this.path)) {app.alert("Error 104: Action Wizard will not run with commas present in the path folder. Please remove all commas from the path foler and re-execute the program.");event.rc = false; }
Hi,Is there a way to remove a previous version of an action wizard from a user's panel? For instance, I have an action wizard called BLA 1.9 an BLA 1.10. I want the users to only use version 1.10 and the only way I can think to ensure they use the right version is by writing code which removes version 1.9. I know the user can remove manually but is there a way to have this done automatically, without user doing it?S
Hi,So even though this question doesn't pertain to Acrobat I'm asking it here because it's a javaScript question.I have a little scripting experience but I'm brand new to JavaScript.Can someone please explain the example of the ++ operator found on this page?The example is below so you don't actually need to follow the link. Arithmetic operators - JavaScript | MDN // Postfix var x = 3;y = x++; // y = 3, x = 4// Prefixvar a = 2;b = ++a; // a = 3, b = 3A little history...I was trying to increment a variable by one through each iteration of a conditional statement.I was trying to duplicate an item "x" number of times until "x" equaled 10.I basically wrote the offending line of code as x = x++;That statement sent the script into an infinite loop.I did this based on my experience with MEL for Maya.So from what I read & what was explained to me about JavaScriptI learned that unlike the other language I knowa postfix ++ operator would keep the variable the same &a
How to define a shortcut key so that text box can be filled?
HiI use PDBookmarkGetAction (aBookmark) to get the PDF bookmark's actionbut if the bookmark has multiple actions, PDBookmarkGetAction (aBookmark) only get one action.How I can get another action of the bookmark?Thanks.
My organisation keeps thousands of PDFs (mostly scanned forms, documents etc.), many of which have ridiculously large file sizes due to incorrect scan settings. I'm looking for a way to automate the task of reducing the file sizes while indicating that the file's size was reduced in case something goes wrong.Hence, I'm trying to set up a custom Action in Acrobat Pro XI to: Reduce PDF file sizes in a directoryCan be done very easily: Reduce PDF file size on several pdf automatically ()Delete the original PDFsAcrobat allows you to overwrite the original PDFs (by keeping the original file name), however, I need to insert some text in the filename in order to indicate that it was reducedIf text is inserted into the file name, both the original and the reduced files are retained in the directory 3. Output logs for what was doneWhether or not the file size was successfully reducedWhether the file was skipped (for whatever reason)Whether the original file was deletedDa
When I select "preflight" in Acrobat XI pro, the dialogue box which pops up with all the options is very difficult to read because all of the line options in the dialogue box are squeezed together. It's so squashed together almost completely overlaying each other that even the click down option for more is difficult to execute. I've tried resizing the box itself by just dragging its corners but while the box itself expands the text remains crunched together. I'm on a Microsoft Surface Pro running Win 10. I'm trying to get a document print ready and this was to be my first step. Is there a setting I've missed? Anyone have this problem/fix? Thanks in advance.
Every file I have 'Sent for Signature' appears to me as a single page which I then add a signature and date block to before sending. However, what gets sent (and thus returned to me after being signed) always includes this extra blank page with a signature block on it. A lot of my clients don't even realize it's there until they can't send the form back without signing it. For my purposes, this extra signature block is totally unnecessary and I definitely don't need an extra blank page with a signature on it (it confirms nothing for us). I've looked through my options before and after sending and I can't find the parameter to turn this off anywhere. It never shows up until after I send the document. Can anyone help?
Hi,I am trying to use the Embed3dData plugin on Adobe Acrobat DC.However, most of the objects are simply undefined...I tried downgrading my Visual Studio 2015 to 2013, and still, no change...Thank you!!!
I need help with a form I am putting together.The formula i use on excel is:=IF(AGE>70,0,AmountSelected*VLOOKUP(AGE,RatesBelow$A$15:$E$69,IF(GENDER="Male",1,2),FALSE) /1000)*(EDATE(STARTDATE,12)-TODAY())/365)))))the table i have for the ages and rates is as below:Age Male Female18 0.31 0.1719 0.43 0.2120 0.49 0.21and so on and so forth...so if the user selects an amount of 10,000 and the user is an 18yr old male then => (10,000(18Male=0.31)/1000=3.1) *(01/06/17-30/06/17)/365)(3.1) *(43252-42916)/365)(3.1 *336)/365)(1041.6/365)=2.85How do I translate the above into javascript?
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.