Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
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.
Where can I download adobe 8 standard?
Hello,I work in the legal field and we like to use Acrobat to perform bates numbering. An issue I've had for a while now is when a PDF contains images of varying dimensions, a single font size bate number doesn't always scale to the image as we would like. A standard letterhead images looks perfect with a font size of, let say, 12. When the next image is an ultra high quality photo with a huge dimensions size, a 12 pt font size is impossible to read when the image is scaled to fit in Acrobat. When the next image is a logo with very small dimensions, the 12 pt font size is monstrously large and most often does not fit when printed across the image.I'm fully open to Java, VBA, or other scripting if necessary. I know I would be able to determine the proper viewing font size which could scale with images when viewed on a monitor. I wrote a little script to use on another program which I could use to drag and drop a folder of single page tif/jpg images onto an exe which would export a delim
I was wondering if there was a way to trigger the 'Remove Hidden Information' feature that Acrobat has through JavaScript. (I'd like to run this selectively on only documents which contain certain information, which is why I'm hoping to use JavaScript rather than the Action Wizard.)If anyone has any thoughts on this or workarounds, I'd be grateful. Thank you!
I am trying to create Acrobat pro DC PDF's with automated table of contents. I need to create reports of project files, each sub-folder needs a table of contents that links to the individual files. Is there a way to automate this process?Also, is there a way to have the pdfs I combine update when the source file changes? I can get Word to do this, but cannot figure out how to get acrobat to do the same or even import the linked files from word.Thanks in advance for any insight!
I have a few text fields. Is it possible to type into TextField1 and when that field is full, to jump to the next text field (TextField2) and continue typing automatically. Then when that field is full, jump to the next (TextField3) and so on. Is there a javascript to do this? Can someone show me please? I need to have it done by Sunday night. Thanks so much, guys.
I need to set a PDF file limit to be 5 MB. Is there a way to create this restriction? Is there a code I can insert into the actual uploads icon to set individual attachment file size limits in Adobe Acrobat Reader.
if (event.value=="VD") event.target.fillColor = color.gray; else if (event.value=="OD") event.target.fillColor = color.ltGray; else event.target.fillColor = color.transparent;
Is there anyway to start a saved "Action" in Acrobat Xi from VBA?In acrobat 9.0 I was able to create a batch process and using send keys (not really happy using sendkeys, but it was the only way I could get this to work), to kick off a Batch Process.I can't seem to recreate this in Acrobat 10 and up. Send keys no longer works as the Tools have no hot keys.Can I use the SDK to call a previously saved action?
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.