Unlock the power of Acrobat SDK through our community.
Recently active
Hello-I am trying to create a fill-able form in Abobe Acrobat DC that has javascript that will save it, flatten all the fields and the submit form button and then submit the form as an attachment in an email. However, I am failing to get the submit button to disable. Is there a code that can help? I also need to know where to place it in my line up of actions for the button.Thank you.
Hi there. I'm trying to rename a radio button using JS by creating a new radiobutton field. There are 3 options layed out:[ ] Option 1[ ] Option 2[ ] Option 3 I'm trying to get the coords for each option using f.rect; but it returns the same coords regardless of which option I have checked. Is there a way to do this?
Hello! I have created a PDF fillable form and want the text field "EDOAyrs" from the date they selected in "dd-mmm-yyyy" from the date object, here is my code:event.value = "";var EDOAValue = this.getField("EDOA").value;var TodayValue = this.getField(new Date()).value;var EDOAValue, TodayValue,diff;if (EDOAValue!="") {var EDOA = util.scand("dd-mmm-yyyy", EDOAValue);var today = util.scand("dd-mmm-yyy", new Date());var age = today.getTime() - EDOA.getTime();// compute age in millisecondsvar nAgeMilliseconds = today.getTime() - EDOA.getTime();var EDOAyrs = ( age / (1000 * 60 * 60 * 24 * 365.2425) - 0.005);event.value = Math.floor(EDOAyrs);} And here is the error msg:InvalidSetError: Set not possible, invalid or unknown.Event.value:1:AcroForm:EDOB:Annot1:MouseEnter:Action1MissingArgError: Missing required argument.Util.scand:4:AcroForm:EDOAyrs:Calculate===> Parameter cDate. Please help! Thanks.
Before selecting a Dropdown item, I'd like to have a text box ("Text1") display the exported value as I rollover each item in the Dropdown with the mouse. I am able to successfully do this by entering the following Custom Keystroke Script on the Dropdown's Format tab: if (!event.willCommit){this.getField("Text1").value=event.changeEx;} However, this only works when using the keyboard's up/down arrow keys to step through the Dropdown list items. So rather than using the arrow keys, is it possible to display the exported values by rolling over each item with the mouse pointer before committing to a final selection?
Hello,Im looking to be able to a security and and an expiration date to a pdf when a client downloads it (i need all of the work to happen on the "on-click" button event of the site im working on). Will the Adobe SDK allow for me to do this? I would think there would be an easier way to open the pdf > add js for expire and security > save and deliver to the client. Regards
hi, how do you use these 2 methods of the Field object , getLock & setLock? there's no example in the API reference and also couldn't find useful information on google. thanks.
Hello there ! I am trying to do something which seems quite simple, but I can't manage to make it work. I have two independant sets of checkboxes and when one of the checkbox in the first set is checked, it makes one of the checkbox in the second set visible. Here is the script I have at the moment and which works, but hides all the second set of checkboxes : var nHide = (event.target.value=="CB1")?display.visible:display.hidden; this.getField("CB2").display = nHide; I am looking for a way to hide only one of the checkboxes in the second set (and unfortunately, I can not use separate names for the second set of checkboxes). Thank you for your help.
Good morning!I wonder if anyone here can help me...I have three forms (submission) with various length, but all of them, once it has been filled, will be offering two resulution at the end of the form. These resolutions are going to open a new form (actually there are two of them), lets call it result forms.The promblem I have is this.Submission 1 has 4 pages; Submission 2 has 5 pages; Submission 3 has 3 pages.When I launch Result 1 (spawn from the last page of the submission) the field names will change accordingly to P(the number follow whichever page from it is being spawned).form name.field name.Now, on each pages I have various actiones, governed by Java Scripts, and obviousley they are not going to work because the spawn starting point is different for each pages, changing the field names. Further complicating the matter that I have a number of spawned templates inside both result forms.Is there a solution to this problem?I just hope my description of the problem is clear... 
Hello,Here is a scenario: Inside the organization we would like to use the digital signature, so we can sign the forms via dedicated signature fields that manage all workflow (which fields remain editable and which are read-only after signature). Final signature will by done by customer outside the organization and for that purpose we would like to use "Wet signature" - the function for "Sign document by typing or drawing signature". Is this even possible? How should the final signature field be set? Or should it be other field type? Thank you for your help.
Hi,our requirement is to convert files in some of the common formats like DOCX, JPG, TIFF to PDF files using Adobe Acrobat DC. For each of these files, a standard application is installed and the Windows Explorer contains a context menu entry to convert a file of one of these formats to PDF.We would like to write an application in C# that automates this process. Just pick a single existing file and create a PDF from this file.I have scanned through the Acrobat SDK documentation for the IAC / OLE interface and haven't been able to find any API entry point to get this seemingly easy task done.Can you please provide me with a hint where I can get any information about how to convert / print an existing file to PDF using a C# application?
Hi,by pressing a button and executing a script on a page within a PDF formular → how can I check if this / the current page is a page template (or not...)? Thanks a lot!mycc
We have a plugin developed with the C/C++ SDK for Acrobat.The plugin was developed some years back, but seems to have started from the BasicPlugin sample (the files are still called BasicPluginInit.cpp and BasicPlugin.cpp). The plugin is placed in the correct folder (we are running on Windows), and also "Reader enabled" as part of the build. However, Acrobat Reader DC does not load the plugin at startup (no breakpoints/logmessages are hit in any of the handshake functions). We have narrowed the problem down to the following line: client = new SimpleWeb::SocketClient<SimpleWeb::WS>("127.0.0.1:8080"); SimpleWeb is a library that seems to be used to open a websocket connection to our external app. If I comment out that line (and the code that uses the client), the plugin loads just fine, and breakpoints/log messages in handshake methods are hit. What could be the cause of the plugin not loading at all when SimleWeb is used? Ps. I can instantia
I have an Adobe Acrobat form with seven (7) text boxes that contain numeric fields formatted as currency. These are the fees for each subject in a course.Beside each fee there are two checkboxes that operate exclusively (like radio buttons). The Export Values for each of the two checkboxes are Enrol and RPL.Here's a screenshot of part of the form...The textbox field names are as follows...E101-feeE102-feeE104-feeE105-feeE107-feeF102-feeF104-feeAt the bottom of the form is another currency text field named CourseFee (highlighted blue).I need the course fee to sum the fees in the other seven text fields, but I only want to include those with the associated "Enrol" checkbox selected. If "RPL" is selected there will be no charge for that subject.The "Enrol" and "RPL" checkboxes are automatically selected in specific configurations when exclusive checkboxes A, B, or C are selected (these are on another part of the form and are working perfectly). Clicking "A" selects all "Enrol" boxes, "B"
As you can see on the photo, in printing wiindow, it appears many "save as Adobe PDF'' , dose anyone knows how to delete that?
I was wondering if it's possible to read a pdf doc like a book instead of scrolling vertically. Thanks in advance.
Quiero descargar un archivo sin que se me abra directamente y no se como hacer
Sir/Ma'am, I'm unable to see and use Bookmark option in the Adobe Acrobat Reader Pro DC. Please fix the issue and guide me as to how to access the said feature. Thanks
I have a requirement where I need to know in my c++ plugin when Acrobat loses or gains focus. Is there any notification I can register for this?
I have downloaded the PDFTools SDK and sample projects, and have it functional in my test application.It works good for some files, but when I try to reduce the size of a PDF that is large I get this error Message:"Total input file(s) size exceeds the acceptable limit" I've been hunting through the documentation and google, and haven't figured out anything about this.Is it just a licensing thing, and will be better when I pay for the license?If not, is there anywhere that documents how big of a file I can process? Dim sourceFileRef as FileRefsourceFileRef = FileRef.CreateFromLocalFile(pdfFilePath) compressPDFOperation.SetInput(sourceFileRef)result = compressPDFOperation.Execute(executionContext)result.SaveAs(Directory.GetCurrentDirectory() + "/output/" & pdfFileInfo.Name)
I paid for the top tier why do my documents all say "DEMO USE ONLY" - I saw multiple people say this with no resolution offered over 5 years.
I believe I now have two Adobe Acobat accounts and being billed for both. I think I have canceled both but not sure when looking at them. I need to install one back but am afraid that both will be re-installed. I have two email accounts and think they are merged somehow.
Dear all,I am using Acrobat DC reader to do "sign" in a pdf. When i open a pdf, i need to firstly press "Fill & Sign" to turn on the "Fill & Sign" mode, then then do "Sign" on one pdf files each time.May I ask if there is a faster way sign multiple pdf documents? I need to do "sign" about 50 times a day and when I open the file, click "Fill & Sign" mode and then pick a signature to sign on each document, it's really consume me a lot of time and make me tired. May i ask is there any faster way to do this? thank you very much if you would provide any solution on this~! thanks~!LoMing
수고가 많으십니다. Adobe Acrobat XI Standard PDF 파일을 편집을하다보면 10초내로 팅김현상이 발생합니다. 상담사 통화내용으로는 재가 윈도우10을쓰고 있는데 윈도우10은 호환성이맞지않아 팅김현상이 발 생할수도 있다고 했는데 답변 부탁드립니다.
Hi there, Just a quick question regarding accessibilty tagging...Using javascript is it possible to apply the 'Background/Artifact' tag to a button form field. Thanks in advance.
I have a form that contains 6 different fields. I would like them to show values within ranges of a given answer. The field ranges are 5-8, 9-13, 14-17, 18-21, 22-25, and 26-30. If the value falls between any given range, I would like for my form to populate the number in that range. The other fields should remain blank with no data showing unless the value moves to one of the other ranges. If it does, then the original field should blank out.Example: for the field of 5-8: if I have a value of 6, then 6 should populate in the 5-8 text box. If the value changes to 12, the 5-8 text box should return to blank, and the 9-13 text box should show the value of 12.As the values change, the other field range text boxes should react accordingly.Here's my main problem- I can get the values to populate with the data using if and else if, but for some reason the blocks don't return to blank. They basically show residue numbers in the fields that the user would have to go and manually clear out. My
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.