Unlock the power of Acrobat SDK through our community.
Actividad reciente
Hi All, I am using Acrobat Pro DC version 2020.012.20048I would like to ask you to help with the following:I have many pdf technical drawings. For each one I want to add an image holding additional information.When this additional info changes, I create a new image file (image source is the same) and rename the old one.What I would like to achieve is that pdf drawings update image after opening, showing the new file content.Is there a solution for this? The more simple the better. Thanks in advance,Gabor
Howdy, knowledgeables!I currently have eight tabs open on my browser in my effort to crack this code, and not one of them has helped me accomplish a simple, singular if/else effectively in a particular box's properties, which doesn't bode well for the fact that the ultimate if/else should be many, many lines tall.What I need to create is three auto-filling field variations, two of which are not mathmatically derived but are numerical values unique from but reliant on the user-entered value of another field, while the third field IS the mathematical sum of the two auto-generated fields, but only if a checkbox is marked. At this point, I would very much just appreciate hunks of text I can copy and drop where they need to go!So in other words, there are five total fields and one checkbox interacting in the chain: if the user enters into field "A" a value of "1", field "B" will automatically display a value of "3"; elsewhere, if the user enters into field "C" a value of "9," field "D" will
Hello, I have a question.I am using the javascript code below to email a pdf file as an attachment in my email.But the only problem is that it will create a attachment for the complete document.Is there a way to send only a specific page ? var url = "mailto:testemail@test.com?subject=My Subject&body=Here is my form data.";this.submitForm({cURL: url, cSubmitAs: "PDF"})
Hello,I am looking for a javascript code that can send a specific page to the printer.The people who will use it all have acrobat reader DC I have foud the code below but is doesn't work for printing the first page. var pp = this.getPrintParams();pp.printRange = [1];this.print(pp);
Hi allUsing the Action Wizard (Tools>Customize>Action Wizard) I created an action that sets the page box (page size) adds the trim marks and saves the document (see attached (XXXXX Label.pdf) I have a separate form with fields (some are dropdown) that I would like to integrate with the XXXXX Label.pdf by placing the form fields at the top Is there a Javascript that would allow me to add those form fields to the top XXXXX Label.pdf? Thanks much!
Hello all!Adobe Acrobat DC proMac os 10.12.6I want to create a acrobat action to split top level bookmarks using bm names for file names, to my surprise Adobe doesn't have that as an option under the "tools to add" when creating a new action. I was equally surprised to find very little discussion or code postings on the net about this subject.What I did find doesn't work. I was hoping one of the experts on the forum could take a look at the code below and give some direction on how to get it to work.Thanks in advance!!BookmarkCollection bookmarks = document.Bookmarks;for ( int index=0, fromPage=0; index<bookmarks.Count; index++ ){ // determine last page of next part int toPage = -1; Bookmark bookmark = null; if ( index == bookmarks.Count-1 ) { // last bookmark - append all remaining pages toPage = document.Pages.Count; } else {&n
I have the full version of Acrobat Pro installed and licensed on my computer, but I don't want anything to do with the "Acrobat Document Cloud"! But every time I boot up, I get a message saying "Update available for Acrobat DC". Does this have anything to do with the fact that I have Adobe Creative Cloud installed? I was required to have it installed when I subscribed to a minimal-cost monthly subscription to Photoshop CC.But I never wanted anything to do with any 'cloud' features with respect to Acrobat Pro.How do I make these messages stop appearing?
I'm trying to determine if it's possible to automate the Acrobat DC Compare Files tool, either through the API or JavaScript. Any help would be greatly appreciated.
I posted the following question in the Adobe LiveCycle forum, but it appears to be hidden or something. The link to the post goes to a 404 error if the person is not signed in to the board, apparently. So I'm reposting it here, and apologies, I know this isn't a LiveCycle forum, but I'm getting a bit desperate for help._____________________________ I have an old form that was created by someone else in 2015 in LiveCycle. I am working on it in Designer but have very little experience with it; I'm mostly learning by doing.I have two text fields where I need to have a character count, one for characters used and another for characters remaining. Even though I'm working from the original file where this worked, in my new version I keep getting errors, even though I haven't changed anything.The first field is called shorttitle which has a 40 character max, and the count shows the characters left. The next one is abstract, and that needs to be an expandable text box and the character co
Hello! I'm new here, and also using Adobe, but I'm trust on some of you have the solution to my problem, because I spent days try to do, but when I download the document is exactly the same, I don't know if I'm putting the javaScript in the wrong side, or javaScript code is being ignored by the API...So first of all, thanks in advance. My version of Adobe is Adobe Acrobat PRO 2017 and the thing is, I need to show a page to the document if a value of the form is equal to 3, in other case, then show another page and hide the previous one. Other thing that I can do is put the text in the document inside a form field, and condition the field with the same condition that I mentioned, but applied to fields, but I don't know who can I do that neither. I don't want to use mouse up or something like that, the document need to be automatically generated with following these conditions. Thanks again, Silvia.
Hi, everyone. I have a script in drop down field named "MODEL". It has two options is the list, G2500 and ONYX. Depending the selection, the script changes/sets the items of the list. When I try to select an item from the drop down list G1CDU other than first item, it goes back to the first item. So, I'm not able to select any other item.this.getField("G1CDU").clearItems(); switch (event.value) { case "G2500": this.getField("G1CDU").setItems([ "Item 1", "Item 2", "Item 3"]); break; case "ONYX": this.getField("G1CDU").setItems([ "Item 4", "Item 5", "Item 6"]); break; } Can you please help me in this regard?
Hello! I'm hoping some one can help me out there. I'm using Acrobat DC. I have a form that has a small area that I can't seem to figure out how to make it do what I want, if it's even possible. I would like a set of radio buttons to only appear if another check box is selected AND for them to dissapear when the check box is deselected. I can make the first part happen by adding a "show/hide" action but this only works one time. If the check box is deselected the radio buttons stay visible. If this has to been accomplished by using a javascript, please site an example as I am a complete newbie at that. Thanks!
I have been trying to set up dynamic page numbering for a fillable form I have created. There are several fields on the form that cause pages to either spawn or delete, so I am wanting the script to auto update the page numbers and the total number of pages. I have been researching this for several days online and have found several different scripts and none of them seem to work properly. This is the one that has made the most headway. event.value = "Page " + (event.target.page + 1) + " of " + (this.numPages); The problem I am running into is that when I use the event.target.page I get weird answers like "-1,21 of 4" then "-1,31 of 4" on the next page, etc. Does anyone know why the form is calculating this way? The number is increasing, I guess, on each page and the total number of pages is correct, but that number formatting is wrong. I have also tried this variation: event.value = "Page " + (this.pageNum +1) + " of " + (this.numPages); That script just
I'm having the worst time trying to find answers to this...What I have is a PDF document that consists of several individual forms. I want to set up the whole document so that when you open it, it immediately creates an options box that allows you to choose the form(s) you want, and when you click OK, it generates only those forms. I know how to code the appearance of the options box, but I have no idea how or where to code it to actually make it work. I think it's in the docReady event, but beyond that I'm stumped. I'm working in LiveCycle, ver. 11.0.1.[...]. Thanks in advance.
Hi All,I am looking into the feature for enabling/disabling share, export and auto save feature in Adoebe Acrobat Reader DC. I have been looking into couple of days. So far my findings are as follows,1. We could modify the registery keys to disable the Share feature by setting bEnableShareFile to 0. I set this property at "\HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\DC\AVGeneral".2. Hide the menu items by using app.hideMenuItem("Share File"); Both of the options are not working for me. I must be missing on something.Is it possible to enable/disable the share file, export pdf and auto save feature?Please note that I am new to Acrobat/Reader plugin development though I had some experience in photoshop, illustration extension development. Any help would be appreciated. Regards!
Greetings:I am working on an employee on-boarding packet with fillable fields and QR codes for scanning into our document managemet system.I have a seed page that captures name, address, etc of the new employee (completed by the HR Representative). These fields are repeated throughout the document and autopopulate becuase I use the same field names for each field; ie I have 3 FirstName fields, 3 LastName fields, etc..Information from the seed page is used to calculate QR codes with metadata for ultimate scanning into our document management system.Once the seed data is complete, I selectively flatten (the HR representative selects a button which performs the function) the repeating fields throughout the document so they can not be modified further. I also, or so I thought, flattened my QR codes, so it would maintain the image first created.I thought I had flattened the QR code as I included the field name in my list of fields to be flattened.As soon as my new employee types in anything
I require to make the number entered in the field look alike Rs.10,10,10,100.10/- as such is the indian currency format but i am unable to find any such separator style in which it can separate like indian style, can you provide me with some custom format script so that it looks alike indian currency format Karl Heinz Kremer
Hi, I am working in Acrobat DC and created a terms and conditions form used for clients to sign and return. One of the dropdown selections allow the client to either "Authorize" or "Not Authorized" us to use their credit card. There are several text fields, whereby the default is "Not Required", however if they select "Authorize", I want those text fields to change to "Required". I have tried custom validation scripts recommended in other posts, but when selecting the "Authorize" option in the dropdown, those text fields still DO NOT change to required. The current script I am using is in the dropdown field: this.getField("Name of text field").required = (event.value=="OTHER"); I have also tried similar script in each of the text fields, but to no avail. I also tried to use this.calculateNow(); in the document level javascript, but again, doesn't change text fields to required after the dropdown selection. Summary, any of the custom vali
Hi,How can I insert pages from one PDF file into another PDF file in the following way using Acrobat Javascript?Page1 of source PDF file will be insterted after page 1 of destination PDF file, page 2 of source file after page 2 of destination file etc keep inserting until last page n of source file is insterted after page n of dest file? (both source and destination pdf files have same number of pages) Thank you!
I am specifying the AVDocPermRequest callback as part of the _t_AVDocOpenParams during opening of a pdf document. Even though the callback is called for some of the operations like edit, annotate.. Some of the permissions are not being accessed or honored by most of the adobe tools as well. Few scenarios which are failing:PDPermReqOprOnline was working till the latest release and the adobe cloud was being disabled for the document, in the latest release even this is not honored, the upload to cloud and share a link are active inspite of denying this permPDPermReqOprUIemail was working in one of the old releases of Acrobat probably 2017, never seem to work on the latest DC release, i.e., denying this permission is not disabling the email option.Never could get compare and combine tools to disable its options inspite of denying all the permissions. User can easily extract pages and create new PDF these permissions are not honored at all. We are creating a plugin
Hi,I am creating PDF files using the Adobe PDF printer using a C++ program.I would like to lock the PDF to prevent further editing. Only changing of the content of the PDF to be prevented, the signing shall be allowed. I have to do it programmatically.Please clarify API to lock the PDF programmatically.Regards,Mathews
I have Adobe Acrobat DC (updated to 15.006.30119) being used with a Windows 10 system and a Chrome browser (updated to Version 48.0.2564.109 m). The Adobe plug-in is enabled and we can see the Adobe button used to convert a web page to a PDF. However, when when we try to convert any web page to a PDF via Chrome (selecting "Convert Webpage to PDF ...") we get an error notice "Conversion Failure" with no other information. When I try to use the same extension in Internet Explorer 11, nothing happens at all (no error message and no PDF created).Does anyone have any suggestions on how to handle this?
There is any way of moving a file or copy and delete it in JavaScript? I want to make a action that OCR the pdf file and after completion move it to another folder.. That would be very usefull. Thank you in advance
I have a PDF document with form fields that is 3 pages long. I have considered this my "Template". However, some users may need this template to extend up to 17 pages long sometimes and when I merge another page of course it duplicates because the form fields are the same name. How can I add similar pages but not have two particular form fields duplicate?
Good Morning, I am trying to revise a form that was created by a predecessor of mine which uses' many custom calculation scripts that are inter-related as a way of form validation. I am trying to add my own custom calculation script to a box (Box27b) that will require information to be placed into it per our standards. But, once I sign the document (IAOsign) I would like for that information to disappear/redact from the document, while still leaving the many other numours fields inside of the document in its read-only state upon my signature.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
¿Ya tiene cuenta? Iniciar sesión
¿Aún no tienes una cuenta? Crea una cuenta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.