Unlock the power of Acrobat SDK through our community.
Recently active
Hi there,Please can someone tell me if I can set the 'Format category' to 'Date' and a 'custom' mask of 'ddmm' to a text field using JS? As yet I've not found the relevant properties to do this.Thanks in advance.
I downloaded a PDF from EZPass so I can return my dad's transponder, as he is no longer driving. Grrr, it irks me when I find forms that are not fillable! I thought it would be fastest to make it fillable, and then ran into the strangest error message and Acrobat DC would not create the form fields. Here is the message:"Adobe Acrobat DC was unable to make this document accessible because of the following error:Bad PDF; error in processing fonts. <cannot find CMap resource file> [1]Please note that some pages of this document may have been changed. Because of this failure, you are advised to not save these changes." Here is the form at the EZPass website:https://www.ezpassva.com/pdfs/returnedtag.pdfYes, it would be easy and quick to use the editing tools or commenting tools and proceed. But what the heck is going on with this PDF?Facts:1. Application: Microsoft Word - returned tag (What is "returnedtag")2. Producer: doPDF Desktop Ver 5.0 Build 216 (Windows Server 2003)3. No securi
Hi, my Adobe Account has register my MacBook for Adobe Acrobat Pro 2020. Image as attached [Images removed by moderator]
Hello, I want a simple plug-in or add-on for advaned image (tiff) to pdf conversion in such a way that it treats as an "Image mask", in other saying is threr any way to change the image conversion settings in acrobat pdf in order to create Image masks from monochrome 1-bit tiff files?Thanks and Regards.
Hi All,I am trying to register document open event handler via javascript but I am unable to listen the event.I am registering it by using SetAction method.this.setAction("Open", docOpen); But when I am opening the document, I am getting error message TypeError: this.setAction is not a functionI am trying this on Adobe Acrobat Reader DC. Please note that I am new to this. I found this https://community.adobe.com/t5/acrobat-sdk/listen-for-doc-open-event-from-folder-level-script/m-p/9418297?page=1#M28501 but the link given in there is not working. Any help will be appreciated.Regards!
How to use Adobe Acrobat to print PDF and pass arguments, such as single and double sided, paper size, is there an example
Is there a workaround to play a web/youtube video inside a pdf? it should'nt be embedded (size) and do not open in browser.
Bonjour, Je me tourne vers vous car j'ai un soucis lorsque j'exporte mon fichier indesign en pdf. Certaines lettres notamment les L sont en gras sur mon document pdf alors qu'elles ne l'étaient pas sur Indesign. Cela pose un problème car je ne veux pas que ces lettres apparaissent en gras lorsque je l'envoie chez l'imprimeur. Merci par avance pour votre aide. Clara
So I have a 2 page "carbon copy" document if you will. I am trying to add a button to spawn the two pages together. In addition, alot of the form fields should also be copied over however, I would like one section to be able to be retyped. I am having a hard time writing the code for this. Can anyone assist?
I have a form with javascript and I'm trying to add a checkbox to a dialog, but it always returns undefined. The first checkbox works fine, but I cannot figure out why the second one with id "ckbox2" doesn't. The alert says it's undefined so it never goes into the if statement. I didn't write this code, I'm just trying to add the checkbox, but I don't see where it's wrong, any help is appreciated. Here's the snippet:function f_getCheck() { if(this.getField("numCks").value>9){app.alert("You may only include ten items in a deposit with a hold!");end;} var y = this.getField("numCks").value; var z = this.getField("t_Code."+ y).value; if(z=="E"){f_getCkReason()}; var dialog8 = { initialize: function(dialog){ this.test1 = ""; this.test2 = ""; }, validate: function(dialog){ var val = dialog.store(); this.test1 = val["rtno"]; this.test2 = val["iamt"] * 1; if(this.test1.length==9&&(this.test1*1)>0&&this.test2>0){ fcb_ABA(this.test1, this.test2
I need help or I am cancelling been trying to reach you for months!!!! how can I talk to someone?? i have been paying $20. a month and have NOT been able to open ANY of my PDF's it just asks me to sign into my Adobe account and goes no where...My work is piling up and I need to open the PDF's??? what should I do?
Full disclaimer: I know NOTHING about Javascript. I've copied and pasted the scripts of other geniuses and have tried to understand the logic behind their scripts but just can't seem to grasp it. Anyway, I have an age field on a form into which I want the age in years automatically calculated from the DOB and the document's date based on separate fields for month, day and year. Until now, I could only find the following script that calculates based on the current date. I don't want the current date but, instead, the date typed into three separate date fields for Month / Day / Year (fields are "MM", "DD" and "Year"). The current script is below: var dob = util.scand("mm/dd/yyyy", this.getField("Date of Birth").valueAsString);if (dob != null) {var today = new Date();var age = today.getFullYear() - dob.getFullYear();var m = today.getMonth() - dob.getMonth();if (m < 0 || (m === 0 && today.getDate() < dob.getDate())) {age--;} event.value = age;}else {event.value = "";}if(
I am using a calculation script to calculate age from a DOB field. It works just fine for the calculation and I can manipulate it to calc either in months or years. The problem is I want to have any ages < 1 year old to show the age in months and ages > 1 year old to show the age in years. Hopefully that makes sense. I have been searching through the existing threads and can't seem to find anything to help this specific need. If there a way to do this - maybe an additional IF clause? Here is my current calculation script.event.value = "";var dobValue = getField("Kid.DOB").value;if (dobValue!="") {var dob = util.scand("mm/dd/yyyy", dobValue);var today = new Date();// compute age in millisecondsvar age = today.getTime() - dob.getTime();// convert age to years ( millsec in sec * sec in min * min in hrs * hrs in day * days in year)// truncate to whole years and adjust for binary floating point errorevent.value = Math.floor( age / (1000 * 60 * 60 * 24 * 365.2425) - 0.005); }If I want
Hi there,I'm having trouble with passing the information returned from a app.browseForDoc within a custom dialog. The app.browseForDoc is assigned to a button, which triggers ok, however I'm encountering 'undefined' when I try to get the filename or file path of the file selected.I think it's the way I'm initialising the variable used to store and return the info from the app.browseForDoc. I've tried initialising 'baseFile' in a few different ways but I'm still having problems.Please can someone help me.Thanks in advance. Here's my code so far: var oDlg = { strName: "", initialize: function(dialog) { dialog.load({"usnm":this.strName}, this.baseFile = ""); }, commit: function(dialog) { var data = dialog.store(); this.strName = data[ "usnm"]; var baseFile = dialog.store(); this.baseFile = data[ "baseFile"]; }, butn: app.trustedFunction(function(dialog) { app.beginPriv(); var base
Hi there,Please can someone help me with this query.Can app.browseForDoc() and a text input field be used together on the same custom dialog?I can do each of the two as separate parts of a process, I just wondered if they could be combined.Thanks in advance.
Hi there,I have a problem when exporting pdfs from Indesign. In Acrobat, the documents appear with visbile frame blocks around certain objects, whether images or text. How can I make those frame blocks disappear?Thanks for any help!
Hi, Is there a script I can use in batch processing to convert about 1500 word documents into pdf? I know it's possible to convert multiple files into one pdf, but this is no good to me. Doing these conversions one by one is going to take forever! I've tried selecting a few documents at a time and then selecting "convert to pdf" from the right-click menu, but each one requires that you tell it where to save, and then opens the file when it is done. I need to convert Word files on a regular basis for work, and could really use a batch process for this with so many to do! I have Acrobat 7 Pro (version 7.1.0) on XP Pro SP 2 at work, and Acrobat 8 Pro (Version 8.1.2) on XP Pro SP 3 at home. If there is anyway it's possible to do this via a batch process I would really appreciate knowing how!! Apologies if this has been covered in another thread, I searched but couldn't find anything. Thanks in advance :)
Hello. I have a pdf file that is digitally signed using a certificate and timestamp.And I want to verify this document in plugin's sigValidate( ) function and display the valid, invalid, etc.The DocSign sample programs appear to be comparing only digest hash values in the sigValidate function.Is it sufficient to verify the digest hash value here?Or do I need to verify other parts (such as certificate or timestamp verification)? Thanks.
Hello,I have a form with 5 fields that are drop down boxes. There are 4 choices: Blank (default), Y, N, N/A. I have two fields that produce a calculation. One returns '# of #' and the other produces a % of Y's.In the default state of blank, the calculations are '0 of 0' and '0%'. The problem is that, unfortunately, some providers will want a printed hardcopy to fill out and the fields have these zero's in them.How can I make the field so blank? I have tried several variations to no avail.1st script '0 of 0':var totalY = 0; var total = 0; for (var i=1; i<=5; i++) { var f = this.getField("JJCRDropdown"+i); if (f.valueAsString=="Y") { totalY++; total++; } else if (f.valueAsString=="N") { total++; } } if (total==0) event
Hi All, I see the option after the signed form, a script can be run. So I would like Adobe auto-generate an order number in a sequence when the form is signed But I am very new to this. Can someone help with this? Thank you in advance Best regards Thanh Le
Hi There,I need to add a JS on adbole fillable form on submit button. when Checkbox1 is not ticked give a warning an desable submit button, when check box is ticked submit button enables to email the form.appreciate your help. Dee
Dear Community,I've a Listbox in adobe acrobat pro with following words: Telephone, Computer, Mobile, Notebook, if i select one or more words from the Listbox, the selected word should in a new Texflied for example :1. Telephone2. Mobile3. NotebookMany thanks for your answer/ help. Best RegardsNoel
I want to turn on/off protected mode when adobe reader is opening. It there API for that. But I don't want to restart acrobat reader again.
Hi, We have integrated View SDK into our application.But I want to know, SDK provides automated form filling feature. can you please confirm SDK supports create fillable forms and fill forms functionality ? Thank youRakesh Sorathiya.
I am using Acrobat DC SDK and Acrobat Reader DC. I want to know if I can turn off protected mode, but I need to use sandbox and broker.exe
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.