Unlock the power of Acrobat SDK through our community.
Recently active
I need help with a script to change a specific character to lowercase if it was typed in uppercase in a field. Example: 24X12X6 I need just the X's to be changed to lowercase when a button is pressed, only if a number is before and after it. Thanks!
New feature request: revert to prior Acrobat Pro user interface. The UI for Acrobat Pro DC sucks swamp water. I HATE it. Nothing is where I expect it to be. Commonly used functions are now buried under layers of categories I access through buttons (such as create PDF), but commands are not where I expect so hunting for commonly used functions is a HUGE PAIN. Even when moved to the quick bar, often commands take multiple clicks. For example, I can't just OCR a document, I have to click on the OCR button, choose between "this file, in multiple files, or correct", then select the pages, then click on ANOTHER recognize text button before I can execute the command. Seriously? FOUR commands just to issue a single OCR command for a whole document. In the old version I pressed one button, pressed enter and was done: the whole document would be OCR'd, unless I specifically wanted to change the parameters of the OCR in the pop-up screen. 
Hi, I'm a novice at JavaScript so please excuse me if my question is a bit simple. In a PDF form, using Acrobat 9 Pro I'm trying to preform some mathematical calculations in a custom calculation script and I've hit a brick wallI have a number in a variable, lets say 3.7. I want to return the whole number component, the "3" without rounding it up or down. I know I've done this in the past in AccessBasic, but I'm at a loss as to how to achieve it in JavaScriptI tried using toFixed(0) but that still round up. I've searched various JavaScript references but I'm unable to find a function that would help me.The reason I'm trying to do it is rather convoluted, so I'm trying not to confuse you all by entering a long winded description of the problem. Any pointers would be gratefully received.
Hello, I am using Acrobat Pro 2023 version on Windows 10 Enterprise, and in one of the plug-in application that I created, I am saving the PDF file after some changes using PDDocSaveWithParams, it was working fine when Enable Protected Mode at startup option is disabled. But when I enabled the option Protected Mode at startup, it is not saving the file but at code line PDDocSaveWithParams, there is an Exception occuring and file not saved. What I have to do to save the PDF file with this protected Mode. [Question moved to the Acrobat SDK forum]
Hi All,We started seeing the below error on our app today. We are using an adobe dc view sdk for our react app with a valid client id.Please help. DOMException: Failed to read the 'sessionStorage' property from 'Window': Access is denied for this document. at new ErrorBoundary (https://documentcloud.adobe.com/dc-side-nav-dropin/3.0.2_1.83.0/bootstrap.js:1:179576) at ph (https://documentcloud.adobe.com/dc-core/3.10.0/dc-core.js:2:297833) at ij (https://documentcloud.adobe.com/dc-core/3.10.0/dc-core.js:2:318162) at Ha (https://documentcloud.adobe.com/dc-core/3.10.0/dc-core.js:2:364097) at Vk (https://documentcloud.adobe.com/dc-core/3.10.0/dc-core.js:2:352245) at Uk (https://documentcloud.adobe.com/dc-core/3.10.0/dc-core.js:2:352173) at Jk (https://documentcloud.adobe.com/dc-core/3.10.0/dc-core.js:2:352036) at Fk (https://documentcloud.adobe.com/dc-core/3.10.0/dc-core.js:2:349181) at jg (https://documentcloud.adobe.com/dc-core/3.10.0/dc-core.js:2:2
Bonjour, J'ai un souci avec l'outil tampon dans la dernière version de Photoshop. À chaque fois que je souhaite sélectionner un contenu de remplacement en utilisant la touche Option (je travaille sur Mac), je ne fais que de créer une sorte d'effet négatif qui affecte toute l'image.Quelqu'un a-t-il rencontré ce problème? Merci pour vos réponses!
Task: C Sharp: Coverting PDF to MS Word Capture return messages Acrobat translation function. I downloaded Acrobat_DC_SDK_Windows_2021_v3 refereced Interop.Acrobal.dll IJSMessageHandler is not found. Please provide link to download the required DLL. MyJSMessageHandler: IJSMessageHandler <***************{ public void OnMessage( string msg ) { MessageBox.Show(msg); }} AcroPDDoc pdfDoc = new AcroPDDoc();pdfDoc.Open("sourcPDF.pdf");Object jsObj = pdfDoc.GetJSObject(); jsObj.MessageHandler = handler; <******************* type = jsObj.GetType();object[] saveAsParam = { "targetWord.docx", "com.adobe.acrobat.docx" };type.InvokeMember( "saveAs", BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Instance,null, jsObj, saveAsParam); Thanks for your help. 
Hello everyone,I'm pretty new to JS/scripting in PDFs, so I would appreciate your help with this: I have a PDF with two dropdown menus: "Package" and "Locations".The package dropdown has 3 options, "S" "M" and "L" which are priced at 1999, 2499 and 2999.The locations dropdown has 5 options, "none" and 1-4 additional locations. My problem is the following: I want the export values of the additional locations to change, depending on what was selected in the package dropdown:When "S" was chosen, 1 additional location is 499.When "M" was chosen, 1 additional location is 699.When "L" was chosen, 1 additional location is 899. Is there a way I can achieve this? I tried to find anything and copying it into the calculation script, but I think that's totally wrong 😄 Any help would be appreciated, thank you!
I added a submit button to my PDF but when I tested I got an error message saying "Need to be running inside a web browser in order to submit the form." Can anyone offer any guidance
I am unable to preload data on AdobeDCView document.addEventListener("adobe_dc_view_sdk.ready", function () { var adobeDCView = new AdobeDC.View({clientId: "XXXXXXXXXXXXXX", divId: "adobe-dc-view"}); adobeDCView.previewFile({ content: {location: {url: "http://localhost/test.pdf"}}, metaData: {fileName: "test.pdf"} }, {}); // Data you want to pre-fill adobeDCView.registerCallback( AdobeDC.View.Enum.CallbackType.PAGE_VIEW, function () { // Data you want to pre-fill var prefilledData = { "emp_fn": {value: "John"}, "emp_ln": {value: "Doe"} // ... any other field names and their values }; // Set the form fields with the prefilled data adobeDCView.setFormFields(prefilledData); }, true ); });//event listener
I've been developing an Accessibility Plugin for Acrobat that automates some of the repetitive formatting tasks I need to do as part of our remediation process. It was relatively easy to map the commands into menu and context menu items but I'd like to make it even more intuitive. Since I'm also using the Reading Order tool for much of my work, I'd like to extend the tool to add buttons, dropdowns, and checkboxes for some of my tools. Does anyone know if there are hooks in the SDK to gain access to the Reading Order panel? The tool looks like it's been designed as a Plugin itself, so perhaps there might be open source code I could extend? I know, I know: not likely, but one can be hopeful 🙂
How to create a dynamic stamp with an incremental number every time I stamp in the PDF. This will be used by only one person and installed on a single computer. Thanks for your help in advance.
Is there any documentation available on how to generate PDFs with accessibility tags dynamically using PDFkit in Swift? I'm having a heck of a time trying to figure this out. There is hardly any documentation available. I checked the apple developer site and there is hardly anything available. Is this even possible? Thanks, Angela
Hi, I am trying to combine more than 100MB 2-3 files. and found this error. What is file size i can combine using PDFServicesSDK. Adobe.PDFServicesSDK.exception.ServiceApiException HResult=0x80131500 Message=Total size of input asset/assets exceeds permitted size : 104000000 bytes Source=Adobe.PDFServicesSDK
I am looking for a way to batch print only the first page of multiple PDF's on a Windows System. I made an extensive online search but I either need to use ACTIONS Adobe Acrobat PRO (we have standard) or they didn't help.Any suggestions? Thanks...
Wir möchten eine passwortgeschützte PDF-Datei an verschiedene Kunden verschicken. Jeder Kunde soll in der E-Mail aber ein eigenes Passwort erhalten, das auch nur einmal gültig ist. Wir müssen verhindern, dass unsere Datei weitergeleitet werden und durch Weitergabe des Codes auch ohne Bezahlung gelesen werden kann.
Hi all,based on this article (Microsoft Purview Information Protection support in Acrobat (adobe.com)) the Adobe Reader shall have built-in support since version 22.001.20142 (based on info this Download MIP plug-in for Acrobat, Acrobat Reader, Acrobat Classic 2020, and Acrobat Reader Classic 2020 (adobe.com)The first mentioned article descrobes what registry entries (on Windows) has to be updated to enable AIP feature (section <Apply and edit Microsoft Purview Information Protection sensitivity labels on PDFs in Acrobat> / <Installation and setup> / <for Windows>)Currently, we've downloaded the current Acrobat Reader DC version (2023.001.20174 - 64bit), bit none of those requierd entries exists. Even no MicrosoftAIP hive mentioned in the docs exists. Can anyone advise how the Reader shall be AIP/MPIP enabled? The guidance provided on Adobe site (refered above) seems not working. Thank you in advance, Jan
Hi, I need to make pdf which has been saved as spreads (from Indesign) so when you search for a page within Acrobat, you go to the page number not the spread number i.e. if you search for page 5 it doesn't take you to page 8-9 which is the 5th spread, is there a setting or even a script that I can add to my pdf?
Hello everyone, I've detected that when I execute this command"C:\Program Files\Adobe\Acrobat DC\Acrobat\Acrobat.exe" /p "C:\TEST.pdf" this doesn't work anymore. Before, with the /p the document was opened and directly sent to the printing dialog, but it does nothing. Is this a bug or it's simply something that doesn't work any longer?
I scanned an old book, then converted the images to text. I had no issues with that process. Now I would like to make the text easier to read by swapping out the old yellowish background to white, but I am not sure about the best approach to this endeavor. I attempted to simply change out the background color to white in Acrobat, but that did not take. I did not edit the text after I converted it (via OCR). I assume adobe interprets the yellowish background as an image and the OCR process did not actually convert the text to "real" vector text, but just made it easier to modify it. When I change the background to white, it is not visible because the yellowish background is an image on top of the background. Or am I way off?The book is just text, with a few black and white illustrations, diagrams, etc. What would be the easiest process to convert the text to actual text and remove the background yellowish "images" so if I wanted to change the text to white and the background
help...i need help finding AFormAutLib.dll i have both Acrobat DC (professional) and Adobe Reader. however, i canot find AFormAutLib.dll in the acrobat plugin folder. in previous post, there is a link to this but it no longer work... Where can I get the AFormAutLib.dll?
I'm trying to make a dependent drop down, I dont want to add anymore options until I get this error straightened out.
Is there a way that I can add a webpage to an existing PDF on Safari like I can on IE?I know how to save a web page to a PDF on Safari, although I can not find a way to add a web page to an existing PDF like I can with Internet Explorer. Is there a way. I talked to someone at Customer Service and they said I have to use IE to do this function.
Is there any course on LinkedIn from which I can learn Developing Acrobat Applications UsingJavaScript?
So I am creating some PDF's for my D&D group, and I'm the type that like automation.Here is my setup:Text Box PROFText Box STMDCheck box1 STPRCheck box2 STEXText Box ACROI've tried a few scripts from the site, but I am completly new at this. so I apologize if this has beeb asked.I want to enter a number in STMD and PROF manually then if the check box STEX is checked multiply the value of PROF x 2. Then if check box STPR is checked add the value of PROF to STMD then report to ACRO. of course if nothing is checked to just report STMD to ACRO. If you play D&D you understand what i'm tryin to do. with the basic formula I can configure the rest of the fields I will need. Thanks
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.