Unlock the power of Acrobat SDK through our community.
Récent
We downloaded the sdk and we've installed Acrobat DC Professional.We looked at the IAC FillFormCS example project in this folder: sdkDC_v1_win\Adobe\Acrobat DC SDK\Version 1\InterAppCommunicationSupport\C#Samples\FillFormCSFillFormCS references these two .dlls:We removed the references to the two Interop.xxx.dlls and tried to re-add them but they are no where to be found (as you can see in this screen shot):So, where are the .dlls to make the SDK examples work?
How do I convert PDF document to XML using acrobat SDKPlease provide any links in this regard Remove header/footer from pdf, PDF’s are not tagged pdf and header footer size is also not fixed across multiple documents. Remove Table of content from PDF.
I am looking to expand on another calculation script I am using for counting check boxes.My PDF Document has a series of questions with which a "Yes" "No" or "N/A" option can be checked. The check boxes are named in the following format:Yes.Q1, Yes.Q2, Yes.Q3...No.Q1, No.Q2, No.Q3...Na.Q1, Na.Q2, Na.Q3...This is what I am using in order to count "Yes" answers on the checklist in a field below:var nSum = 0;var aCkFlds = this.getField("Yes").getArray();for(var i=0;i<aCkFlds.length;i++){if(aCkFlds.isBoxChecked(0))nSum++;}event.value = nSum;This works great for that. I want to expand the script for another field in which it will add the "Yes" and "No" in order to get a count of all "Applicable Items" in the checklist.Any assistance would be appreciated.
Hello,My PDF is passed accessibility through Acrobat but when running it through PAC I have stumbled across an issue I can not resolve been doing extensive research but can not the error is..."f or uf key missing in file specification dictionaries"Can anyone tell me how I can resolve this by editing PDF in Acrobat so that it will pass in PAC Checker.Would be great if I could get some help.Thanks everyone!Mike
Is there a way to check a pdf using javascript to see if it has a stamp in it?
I have a dropdown list of various equipment models with a text box beside it that shows the equipment rating. How can I make the equipment rating automatically populate based on the equipment model? The equipment models and their appropriate ratings are listed below.Equipment ModelEquipment Rating (kW)SE3000A-US (240V)3.00SE3800A-US (240V)3.80SE5000A-US (240V)5.00SE6000A-US (240V)6.00SE7600A-US (240V)7.60SE10000A-US (240V)10.00SE11400A-US (240V)11.40
So I have a form that I want to count the number of times a value has been checked with a value greater then 1. For example:So I have a calculation to add the values for total number of SEVERITY. Create values for the checkboxes. Now I need a formula or script for the number of symptoms that above a 0 for Vestibular Symptom NUMBER.Any thoughts??I also have another list off 22 that I will need to create something similar.ThanksJason
Before, I had installed Acrobat professional 9.0, and in the console window I saw messages of built-in start script and, of course, some error if it occurred, but now I have installed Acrobat Pro 2017, and in the console window doesn't appear anything message or error. I have select, in Javascript preference, the next options:- Enable Acrobat JavaScript, Enable JavaScript debugger after Acrobat is restarted, "Show consoles on errors and messages",
I'm trying to determine if a pdf has layers (I'm very new to Javascript and this API). Below is the function that I've written for this:var check_flat = function(){ for(var page = 0; page < this.numPages; page++){ var ocgArray = this.getOCGs(page); if(ocgArray != null){ console.println(page + " has layers"); } else{ console.println("no layers on this page"); } }};When I try this on a pdf that I'm certain has layers, I only get 'no layers on this page'. Your help is very much appreciated!
Does anyone know if the PDF Optimizer provided in Acrobat Pro XI can be called as an API from another application program? If the API exists where can it be obtained?[Moved to Acrobat SDK forum... Mod]
I am having same problems. I just purchased ADOBE DC and am unable to combine files into a single PDF.Adobe keeps crashing when I try. Windows 10 is my OS and is up to date. I have used the "File > Create > Combine files into a Single PDF" program crashes. I have also the short cut to get to the same place.Also adobe is not recognizing "MS Word 2016: files for conversation to PDF.Please assist.Thanks
I have Adobe design and web premium CS6 and I cant seem to get Acrobat X Pro to open and don't want to download the whole suite again. Is there any way i can fix my install of Acrobat X Pro?
how can I move the camera to a specific or defined location in a 3Dpdf using javascript??
I have a timesheet form that adds and populates based on a varied work week. Normal work week hours can vary by each employee. I want to auto-populate three boxes "Total Hours", "Regular Hours" and "Overtime Hours" based on whatever is entered in the "Normal Hours" field.ex: if "Normal Hours" = 37 and "Total Hours" = 55, "Regular Hours" should read 37, "Overtime Hours" should read 15.ex: if "Normal Hours" = 37 and "Total Hours" = 35, "Regular Hours" should read 35, "Overtime Hours" should read 0.This reply was spot on, except my sheet is not based on a standard 40 hour work week. It could be 35, 37 etc.Basically, "Regular Hours" should be <= Total Hours but cannot exceed Normal Hours.I would greatly appreciate any assistance with this.Thanks!
It seems simple enough, but I'm not sure what I'm doing wrong. I want TextFieldIwantvisible1 and TextFieldIwantvisible2 to appear if Dropdown1 or Dropdown2 is selected. But the default is to keep the Text fields hidden. Here's what I have below. Any help or guidance would be greatly appreciated. I've placed the code in the run custom validation script.var f=this.getField("TextFieldIwantvisible1");var g=this.getField("TextFieldIwantvisible2");if(event.willCommit){console.printtln(event.value);switch(event.value){case "Dropdown1":f.display = display.visible;g.display = display.visible; break;case "Dropdown2":f.display = display.visible;g.display = display.visible; break;Default:f.display = display.hidden;g.display = display.hidden; break;}}
How can I hide or disable the floating Page Control Toolbar. I'm continually having to move it out of the way and virtually never use its controls, so it's truly unwelcome (and I don't want the controls cluttering up the menu bar either). Surely this feature isn't mandatory, eh? Thanks for any clues.
I have Acrobat DC 2015.016.20041 and all comments have become not selectable and don't display the text. If I insert a new sticky note it shows the details but all old ones are not viewable.Top Sticky note is the new one but all others don't show. Image 1 below.A friend opened the document in another program (not Adobe) and they can see the comments. Image 2 below.
I have a .pdf with a 'cover page' followed by six hidden templates. Template 1 is called 'PreSurvey1' and template 4 is called 'PostSurvey1' (the others are not required in relation to this question).When clicked, a button on the cover page automatically spawns a copy of each of these templates which appear in sequential order below. This can be done multiple times but the order in which the templates are spawned never changes.I have a text field called TripDates_TB which appears on both Template 1 and 4. However, when the pages are spawned from the templates they assume the prefix P1.PreSurvey1.TripDates_TB and P4.PreSurvey1.TripDates_TB. This means that the two fields are no longer linked (i.e. you have to enter data into each individually rather than it automatically populating the second instance).So my question is, how would I go about linking them? I have been through the forum and my current thinking is that I would need to use javascript to split the instance of TripDates
I am using OLE (AcroPDFLib/ AxAcroPDF) in visual studio (VB and C#) and it works great but I need to select bookmarks programmatically on workstations that will only have reader installed. Named destinations will not work for me because I will need the actions associated with the bookmarks, primarily the ability to select a 3d view in a 3d pdf.I have read through Adobe documentation over the last week and have identified 3 possibilitiesOption 1 (preferred)If I develop using the Acrobat Pro libraries could I still distribute to workstations with only reader installed? If so what would I have to do to make it legit?Option 2 I could use document level java (probably) but it looks like I would still have to use Acrobat Pro dll to call the java programmatically because I don't want the user to have to push a control or link in the PDF. Maybe I am missing something?Option 3Write a custom C++ plugin to expose the ability to select bookmarks via OLE IAC, I have not dug into this op
Hi all,I have a client who has installed Adobe Acrobat Standard and Pro DC on a Citrix (with VDI) environment. They have multiple front end VDI servers and they have an issue with the license activations. A users can use Adobe Acrobat from any of the multiple front end servers (they are load balanced). However, if they have already activated Adobe Acrobat on 2 of the servers, when they next activate Adobe Acrobat they may be load balanced to a 3rd server and Adobe Acrobat will not allow the 3rd activation. They admins then have to get into the licensing and remove the initial 2 activations before they can run Adobe Acrobat again. They are using serialized licensing.A case has been logged with Adobe support but they solution they provided (ie using serialized license) does not appear to work.Has anyone encountered this issue before and if so how did you manage to resolve it?
Why I didn`t copy from one to another .pdf text on Century Gothic in Cyrillic?File for example: File “Adama.pdf” (http://take.ms/sy5KH) Use Acrobat 11.0 STD WIN AOO License UKRAnd try in Acrobat DC
Hello all.Currently we are developing a plugin for Acrobat Pro.The requirement is to have own item in "Create PDF Portfolio" dialog's menu to be able to add file from our cloud server. Could you please tell me if Adobe have API for this purpose.Thank you.
Hey guys, I am trying to save a script as binary in extendscript so a client cannot view our code but I am running into an issue. Hopefully someone here knows a workaround. In my script I have it calling to include an outside data file to pull informational values the script needs;#include "/Users/GratefullyDyed/Sublimation/data.js";Now I need to change that file path to the path that will be on my clients computer. When I do that and try to save as binary I get an error that "file path does not exist", because the file path is on their computer and not mine. Is there a simple way around this I am missing? Thanks!
Hi, please help me.i create a button and input under script, it's run when click button:var pp = this.getPrintParams(); pp.firstPage = this.pageNum; pp.lastPage = pp.firstPage; pp.interactive = pp.constants.interactionLevel.full;this.print(pp);When i create sercurity for that file and dissable default print then it not working.How to validate form before print document?
Hi All,I have created a stamp acrobat custom dialog containing a few fields. All works fine when I use the stamp first time but as I choose it again and put on document dialog does not appear for input.I have many old stamps created in past. Those all also having same issue is there any issue with the code or problem with Acrobat DC. I remember all was fine with acrobat 11.Please help. Stamp triggering code is below.if (event.source && event.source.forReal && event.source.stampName == "#vw3mBZoIDLu-YhiEXZcuvA") { if ("ok" == oDlg1.DoDialog()) { var cMsg = oDlg1.sACC_No ; event.value = cMsg ; event.source.source.info.DocumentState = cMsg; }}
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Vous avez déjà un compte d'utilisateur ? Connexion
Pas encore de compte ? Créer un compte
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.