Unlock the power of Acrobat SDK through our community.
Recently active
Hi Experts, Please any guide me to add watermark by node.js and using adobe-dc-pdf-services-sdk-node? Thanks in advance.
I see that acrobat has registered the acrobat url protocol on my (Windows 10) machine.I've tried creating hyperlinks on web pages with urls like:acrobat:|c:\mydoc.pdfacrobat://c:\mydoc.pdfacrobat://c:/mydoc.pdfacrobat:c:/mydoc.pdf...etc.In most cases, clicking the links DOES cause Acrobat to open, but it gives me a "The file name of directory name syntax is incorrect" message.Does anyone know how to format URL to use the acrobat URL Protocol and have it actually open the document? I assume it must work if they bothered to register the protocol in the registry!...of course I'd REALLY like it to work with a web address rather than a local file path, but, per my other question, I doubt that will be working any time soon!Launching Acrobat (full version) with a URL in the Path Thanks,Chris
Hi, my name is Joaquim and I'm a VBA developer. And I would like to create a function where I can insert a macro in VBA that automatically signs documents within Excel. I think of it this way: I have buttons that automatically fill out word documents, and name them based on cell C2. Furthermore, when the system finishes filling out, I have the option to print, or generate it as a PDF (wonderful, right?). Taking advantage of this function, I want to "redeem the file I just generated, and sign it with my signature token". Does anyone have tips?
1.Which language primarly supports Adobe acrobate plugin ?2.Does c++ help to acheieve what we can't with javascript ?
hello ,I am making adobe acrobate plugin , i want to save a api locally in adobe app one time so i can use it anytime and then also i can replace that with other api . Is that possible . If yes pls provide some documents regarding this how can i do these things.
I found a Javascript on the forum that allows me to have a form user attach a file in Adobe Reader to a PDF form. The script is below and works great...as long as I am viewing the saved document on a computer. I have discovered that Adobe Reader Mobile doesn't recognize file attachments added as annotations (only embedded files). Can someone help me modify this script so that the file is actually embedded and not added as an annotation? My follow-up question is the javascript to detach the file with a button. I am using Adobe Acrobat DC to program the form. Thank you so much for your help!!!The way this is programmed is that on the button itself with a Mouse Up action, the following Javascript is run:if (app.viewerVersion < 11) { import_pre_11();} else { import_11();}Then there is a document level javascript for attaching the file that is programmed like this:// Initialize attachment numberattachment_num = 1;//
Hi there - I'm working on a questionnaire form - and need to limit the user to be able to select a maximum of three checkboxes (from a total of 16) on one of the questions.Any help on how to do this would be much appreciated!
I am just getting started with calling the Acrobat JavaScript API, and I am stuck making the SDK work.I successfully downloaded the Adobe DC SDK for MacOS. I found a file within, Acrobat SDK JavaScript Samples Portfolio.pdf, and copied it to my working directory. When I open the portfolio, a dialogue appears. It lists the contained samples, and gives a button, "Install Folder-level JavaScript Samples". I press the button. An alert appears, telling me that "some high privilege Javascript… must be executed from the JavaScript Debugger console…." I click the "OK" button. A block of code appears in the Javascript Debugger console (yes, it is enabled). I click in the block of code, press cmd-A to select all the lines of the code, and press cntrl-Return.Observed behaviour: there is a flash of UI in the upper-right corner of my display. It comes and goes so fast I cannot read it, or even really see it. The block of code is gone from the Javascript Debugger window. There is no new file in my w
I'm hiring a sales team and want to see if this is possible to automate in Acrobat Pro. This is the scenario... The candidate gets a link to an NDA they must sign before getting anything else from the company. Once the NDA is received, they automatically receive another form that requests information about the client (name, address, etc). Once that form is submitted, a third form goes out to them which is an onboarding document. Is this possible with Acrobat Pro? I'd like to have the submission be the trigger for the next document to go out. Hope that makes sense...help if you can, please!
I have an end user running Adobe Acrobat DC (standard) and just in the last few days when they try to print a PDF from an application (like Autodesk Revit) the progress bar comes up, but some of the times it never completes and produces no PDF. The other half of the time the progress bar still never completes but a PDF is produced and is opened. They then have to manually close the progress window.I can't find any rhyme or reason as to why it is doing this after checking it out for a bit. I have uninstalled and re-installed Acrobat DC with no change. I have updated Acrobat DC to the latest version and no change. I have rebooted the PC several times, no change. I have tried printing with different applications and they exhibit similar behavior. The Windows Event Viewer shows a couple of odd Application errors pertaining to Acrobat (below), but I'm not sure if these are tied into the issue or not. It seems like these used to be an iss
I am using Acrobat 9 Pro Extended and am having a problem where I cannot delete a form field (text box).- The field is only showing in the fields list, but cannot be seen on the page itself. - When I click on the Field in the Field list and try to delete it, nothing happens.- I can't right click it either, and it does not even highlight a field on the page when selected.
Hi Experts, Any one know, do we have any free node modules for add watermark in pdf? Please help to guide to add watermark by C++ or NodeJs. Thanks.
Hi Experts, Any one know, do we have any free node modules for add watermark in pdf? I can see few example in adobe-dc-pdf-services-sdk-node. Same like, I want to add watermark. Please help to guide create Node. Thanks.
For a workflow situation we are exporting lots of PDFs to Tiff files for further processing. But with some of those PDFs the Tiff file get's stretched.E.g. The original PDF is 420mm x 594mm. When I export to TIFF it turns into a 4878 x 3999 pixels (or 420 mm x 344,32mm) image. This is just an illustration of how it's get stretched. The same happens for other formats. And it also doesn't matter if I export to JPEG (see attached). Exactly the same result. These are all (initially) simple Indesign layouts: image with some text and logo. Does anybody have an idea what might go wrong?
Hi! Experts, I am creating a PDF Fillable Form. I created a Dependable Dropdown it's working using the below code First Dropdown Name: "Tile"Second Dropdown Name: "Condition" This code is pasted in First Dropdown "Tile" var f = this.getField("Condition");switch(event.value){case "Terracotta":f.setItems(["lichen"]);break;case "Concrete Tiles":f.setItems(["Acceptable","Fair","Poor","Mould","Moss" ]);break;case"-Select-":f.clearItems();} its create dropdown items in 2nd dropdown. NOW I want to auto-populate the Description based on 2nd dropdown selected in Third Field Name: "Description" For Exemple:in 2nd dropdown "Acceptable" Selected it auto populate description in "Description" field and so on. Kindly Help me out.
I'm trying to build a calculator that works out the users BMI.I've managed to get this far at the moment, however I would like to add the users age and gender to the calculation.<!DOCTYPE html><html><html><head><title>BMI Calculator</title><script type="text/javascript"> function computeBMI() { //Obtain user inputs var height=Number(document.getElementById("height").value); var heightunits=document.getElementById("heightunits").value; var weight=Number(document.getElementById("weight").value); var weightunits=document.getElementById("weightunits").value; //Convert all units to metric if (heightunits=="inches") height/=39
I have Adobe Acrobat DC (Classic) Version 2015.006.30119.I saw that there is a feature under Edit > Preferences > General called "Open documents as new tabs in the same window," however, I am missing this option. Is it not available in the Classic track? (Image taken from another post.)
Hello,I am preparing a form for our shipping department and I have it set up to calculate taxes, palletizing, etc and give a total. At first, it was giving me numbers with a bunch of decimal places like $37.555555557778 so I set the format to number and 2 decimals. It also makes an unwanted zero appear in that space even though no data has been entered yet. How can I fix this? I want my calculations to remain the same and for the numbers to only display 2 decimal places but I don't want the zero there because we sometimes have to fill out the form manually. I have very little experience with java script, I read up on some things but they do not make any sense to me. If there is a flat out formula you know that I can just copy and paste to the custom format box that achieves this, please just let me know. I greatly appreciate any help and thank you for your time.
Hi there! I am trying to create a form that prompts you to submit via email utilizing the Actions > Run Javascript. Is there a way to bcc an email? My current script is below. Any help would be appreciated! var targetEmail = "email"var cCCAddr = "email; email"var subjectLine = "ACTION REQUIRED: Status Change Form for: " + this.getField("LEGALNAME").value+" has been submitted.";var body = "Status Change Form for: " + this.getField("LEGALNAME").value+" has been submitted by: "+ this.getField("SUPERVISORSIG").value+" on "+this.getField("TODAYSDATE").value+". \n\nPlease advise if approved for payroll processing.";this.mailDoc({cTo: targetEmail, cCc: cCCAddr, cSubject: subjectLine, cMsg: body});
I am running the code below to attempt to remove a page I created and added a legend to. It gets no error. I created a test file that only had one page and a legend. If I step in the debugger, I see the scroll bar change as if there is no second page and then change back. the second page is now a blank page and does not have the legend content. The bookmark is gone. If I attempt to delete the pag in the UI, I get an error indicating the page is in use. If I save and close thfile, then reopen it, I still get an error saying the page is in use if I try to delete it in the UI. void RemoveLegendBookmark(PDDoc pdDoc){DURING// We make top-level bookmarks only, so add a new bookmark to the rootPDBookmark bmRoot, bmNode;bmRoot = PDDocGetBookmarkRoot(pdDoc);if (PDBookmarkHasChildren(bmRoot)){bmNode = PDBookmarkGetByTitle(bmRoot, pOptions->LegendBookmarkTitle.c_str(), pOptions->LegendBookmarkTitle.length(), -1);if(PDBookmarkIsValid(bmNode)){// get the action for the current bookmarkPD
Hi All,I have a requirement where I need to password protect PDF files in background task. I have an option to call external OS commands from my system to run the tool on specific file.Does Adobe Acrobat DC help in this? Can we execute from command line and make a PDF password protected?Kindly advice,Thank you,Pallavi
I have a macro that opens 2 pdf's and replaces pages from one with the pages from the other. It was working before I moved to a new computer. Both computers are running Acrobat Pro -- but the older one was using 2017 version, and the new one is using the newest Acrobat pro subscription license. Is there something that's changed that would make this method now fail? If Doc1.ReplacePages(Doc1.GetNumPages - 7, Doc2, 0, Doc2.GetNumPages, 1) = False Then MsgBox "Cannot replace pages" Exit Sub End If My code executes fine - but now returns "FALSE" but previously was working fine. Thanks!
Hello,I am trying to create a PDF Form that has expandable text boxes. I would like for users to be able to type in a text box that would expand as the user types and once they are done typing the text box would then revert back to its original size but if you would click on it again it would show all the text that was previously typed.Any help would be appreciated. Thank you.
Could you please advise if Adobe SDK is right tool for building following application.. I need to (high level description):Allow users to select data in the PDF viewer.Then user selects tool which will trigger a custom python functions in the backend, which will analyze selected data and then provide user with feedback. Is your PDF SDK right tool for that? Any examples or documentation showcasing similar integrations?Thank you!
I'm on an enterprise Acrobat. I'm very keen to use the PDF Embed API but I can't seem to access it. It says I need to talk to my enterprise. I have. They can't find any way to get to it. I have looked for cost. Nothing. It just seems like a black hole of no information. Has anyone overcome this?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.