Unlock the power of Acrobat SDK through our community.
Nyligen aktiv
Hi, I want to get the PDF document details like document name, page ranges as a report. I can get the name and page ranges using batch sequences for batch process but I don't know how to write it as csv or xl report. When I searching in forum and google, I read it we can do it using menu item calling. But if we use Menu item we should code for folder selection, file opening and closing. How can we process that?How can I get the report for pdf files for batch process?Batch Sequences Code:if(global.dataLine == "undefined") { global.dataLine = ""; } var docName = this.documentFileName; var startPgNo = this.getPageLabel(0); var lastPgNo = this.getPageLabel(this.numPages-1); var docPgRange = startPgNo + "-"+ lastPgNo app.alert("docPgRange" +docPgR
Hi all,I have a script for adding layers that works perfectly. However, after executing this script I want to change the document properties to "fit page" and "show layers panel". Is there a way to set the navigation tab, page layout, and magnification using a script (under File>Properties>Initial View)? I know you can set those as your default in acrobat, but this script will be used by others who may not have that as their default, hence why I want to include it in my script.Thanks
I am using VBA as a platform to do some PDF manipulation. The issue I am having is that I cannot seem to get the PDF object to save if the PDF object have not been opened. Below is a snippet of the code that inserts pages to the PDF object, and then saves the pdf object. In terms of the code, I have determined that it works since I have tested the save method with the same input with another pdf object and it worked just fine. Can someone help by explaining why it doesn't allow me to save the object?Thanks!Dim NewPDF As New Acrobat.AcroPDDoc Set NewPDF = CreateObject("AcroExch.PDDoc") If NewPDF.InsertPages(j, OriPDF, j, 1, 0) Then MsgBox "Success" If NewPDF.Save(PDSaveLinearized, WritePath & "\" & sh.Cells(StartRow + j - 1, i).Value & ".pdf") Then MsgBox "Success" NewPDF.Close Set NewPDF = NothingWhen the above code was ran, neither of the success lines worked as expected.
I want to use a script to open a file and then add a watermark in one step. I have a script that, when simplified, looks like this: app.openDoc("filepath");this.addWatermarkFromFile("filepath");When I have acrobat opened to the home menu with no files open and run this script, it opens the file perfectly but doesn't add the watermark. It returns the error "this.addWatermarkFromFile is not a function". However, if i leave the document open after running it the first time and run it again it adds the watermark with no error. This rules out any filepath errors, since both lines work just not at the same time. Here's the main question:What is causing the "addWatermarkFromFile" function to fail the first time, but not the second? How do I fix it?Adding a document level script to run upon opening the document would not be beneficial for what I'm trying to do here.Thanks
On Acrobat DC when trying to convert a PDF to Word it keeps prompting i have no internet connection although I have!
Adobe Plugin created with Adobe SDK 10 and its working with Adobe professional 10 , its not working in Adobe professional 9.
All,Is there any way to make it so that if a field called "10 MARKED WEIGHT OF LOTRow1" has numerical data in it that "KG" is entered into "10 MARKED WEIGHT OF LOTRow1a" and if there is no numerical weight entered in "10 MARKED WEIGHT OF LOTRow1" that "10 MARKED WEIGHT OF LOTRow1a" is left blank. Any help is appreciated. I'm editing this on Mac for use on Windows PC.Thanks-J
I am trying to create a formula for one of my fields so that it automatically calculates it from 2 other fields. I do not know java script and am just trying to put it in as an algebra formula but of course it's not working. This is what I have:I'm trying to get the Y column to populate off of what is entered in the X column. The field is called X1 and the number I'm subtracting is the 36 which is a field called ARC and of course the result is call Y1.This is what the formula looks like in the Y field now under the calculate tab: X1-ARC=RESULT/2, so of course you can see the result is 16 but needs to be 8.Can anybody help with this please? Thanks. Sorry but I'm not a Java guru, just an Engineer trying to get by.Dean
After you adjust the magnification on a pdf can you save it so that it opens in the adjusted view (i.e. full page) when sent to another user?
Plase share link for Adobe SDK 9.
How can I insert a document ahead of the first page with a javascript code
Hallo, ich wollt in Adobe Acrobat in einer Pdf ein Feld progammieren. Und zwar soll wenn in dem Feld der Name einer Firma eingetragen wird, in einem anderen Feld automatisch die Telefonnummer eingetragen werden. Ich dachte an eine if-then Programmierung, weiss aber nicht wie.Kann mir jemand helfen ?Danke im voraus
Hi,i am creating a Dropdown for a team selection, and want the field below to autofield depend on the dropdown selected.The Dropdown (TeamName) selection are :Team1Team2Team3the option for the the "Captain" Filed are,if Team1, "Andy" ; If Team2, "Bob", If Team3, a free text that i can fill in later.the problem is, i want to have that if Team1 and Team2 is selected the field will be ReadOnly/Protected, if Team3, then we can edit the field.I've Tried this, the selection is okay, but it wont make the field as readOnly, can anyone help please.var one = this.getField('TeamName');var two = this.getField('Captain');if (one.value == 'Team1'){two.value='Andy';two.access="readonly"}if (one.value == 'Team2'){two.value='Bob';two.access="readonly"}if (one.value == 'Team3'){two.value=' '}Thank you
Does Acrobat Reader DC support plugins?
How to convert number to text on another field
Liebes Forum,für einen Kunden erstelle ich beschreibbare und rechenbare PDF-Formulare. Allerdings übersteigt folgende Anforderung mein bescheidenes Wissen.Ich habe diverse Datensätze (alles Zahlen) aus einer Excel-Tabelle (immer 9 Spalten x 5 Zeilen) und möchte diese als Array in eine Variable schreiben.Ist das so richtig?var Tarife = new Array([263.7,316.44,382.36,83,99.6,120.35,207.9,731.5,1243],[241.7,290.04,350.46,83,99.6,120.35,167.2,621.5,1056.08],[218.6,255.12,316.97,83,99.6,120.35,146.3,475.2,807.48],[116.3,139.56,168.63,83,99.6,120.35,104.5,0,0],[105.3,126.36,152.68,83,99.6,120.35,83.6,0,0]);Anschließend möchte ich natürlich das Array auslesen und bin maßlos überfordert. Wie spreche ich das Array an, wenn ich beispielsweise Spalte 3/Zeile 5 auslesen möchte?Vielen Dank für eure Hilfe,RalfAcrobat Pro DC (2017.009.20044) auf macOS Sierra 10.12.5
HiHow to make type separator number like this 1 234,00 - 123 456,00I do not find it with other separators
Hihow to round up a fieldfor example filed 'ex' = 4.5rounded = 5
I am part of an organization that uses the pro version of Adobe Acrobat Pro DCthe process fails when I try to recognize any amount of pages in a pdf. I receive an error that states"Acrobat could not accessthe regognition service becauseUnable to locate the Paper Capture recognition service. Your installation may be corrupt.This is probably due to either a low memory situation or an corrupt installation. If the problem is not cleared up by shutting down other applications and/or reboot, then please re-install Acrobat." then I click ok I get another diag box that states"Acrobat could not perform the Text Recognition on this page because Unknown error.I have checked the "security tab and enhanced security tabs, and the file properties have been checked to allow for that type of outside document to be unblocked. And have proceeded to check my system for RAM /Memory leaks,(none found)I have reinstalled several times, I then proceeded to use the the Acrobat cleaner application for DC and DC
Hello I been using the following tool form addthis.com to share the content on all social media but I notice if theres a contact form on the page the Tab does not work it goes directly to the addthis widget instead of following the contact form is there any way to fix this issue? also try it on the website since is a little tricky - www.palomacondos.comStart typing Name once you press tab to complete the form it jumps to the Share options. Thanks if anyone can figure it out. Lina
When combining files into one PDF The final output has 75% of the images at a smaller size. Each image is exactly the same size so I'm not sure why this is happening. Here is what I've been doing. Each image is 5.5 x 8.5" at 450DPII'm using an updated version of Adobe Acrobat DC. I'm selecting Create> Combine Files into a single PDF... Dragging and dropping the images (which are all the same size) into the drag area. Then I'm clicking the combine button. The program does it's thing and then spits out a PDF where 75% of the images are really small and the others are huge. I just assumed it should work. I have no idea why the sizes are coming out different in the PDF.If anyone has an answer that would be awesome! Thanks!-Derek
Is anyone else experiencing CC Acrobat Pro DC flooding the system.log (Console) on Mac OS X with hundreds of the following messages every single time you click on the Acrobat window—and know what to do about it? I've searched the forums and even Google, and not one result came up for "AccNodeMacView::mdAccessNotify". Is there a setting somewhere where I can tell Acrobat not to log as much?7/8/16 8:49:03.531 PM AdobeAcrobat[648]: AccNodeMacView::mdAccessNotify called7/8/16 8:49:03.531 PM AdobeAcrobat[648]: 0x7fd64dd0b0007/8/16 8:49:03.531 PM AdobeAcrobat[648]: 0x7fd64dd0b0007/8/16 8:49:03.531 PM AdobeAcrobat[648]: inside7/8/16 8:49:03.531 PM AdobeAcrobat[648]: 327717/8/16 8:49:03.531 PM AdobeAcrobat[648]: inside, h not NILI have tens of thousands of these messages in system.log now. Any insight would be most appreciated.Thanks—Dan
I have a two page form that need to work off one another. What I am looking to do is that if one check box is checked, all other check boxes are greyed out/disabled. However, if the check box is uncheck then those other check boxes are still be able to be checked independently of the other.
Hello, I'm new to JavaScript for Adobe forms I'm not sure of all the coding or proper terminology. So far I've been doing alright searching the forums for answers, but I can't seem to get this one right.I have two separate fields with script in them that when the boxes are checked it calculates the savings for the customer. One is for how much they would have saved if they where members and the other is how much they are saving because they are members. It's 20% difference for members and none members.I would like to put all of the script into one field to run the calculations. When I try to combine them only one check box will work the other doesn't.The two fields and scripts areSmileyClubSavingsif (this.getField("RepairFee").isBoxChecked(0)=="1"){event.value=this.getField("Price").value*0.2;} else event.value = 0;Subtractif (this.getField("SmileyClubDiscount").isBoxChecked(0)=="1"){event.value=this.getField("SmileyClub").value-this.getField("Price").value;} else event.value = 0;Worki
I want to apply digital signature in a PDF with abdobe acrobat using RSA Algorithm. I need to verify the signature in it by a public key pair of the private key with which signature was set in c# to the PDF.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Har redan ett konto? Logga in
Har du inget konto än? Skapa ett konto
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.