Unlock the power of Acrobat SDK through our community.
Recente
Sorry before hand I'm new to this, this sounds like something I can use. I have several PDF forms that I have to sign but it has to be signed on a specified line like line 22. Is there a way to do this.Thanks
I have dropdown list in my form and would like to change the color of the font for one of the five selections how would I do this?
I am having issue of jpeg,png files not coming while browsing image in adobe reader. I have developed the same using adobe acrobat pro. While browsing image jpg,jpeg png file type select option not coming. The same works in both adobe acrobat pro and foxit reader. // Mouse Up script for a button applied event.target.buttonImportIcon();
IF check box 8 is checked, then rating15 will populate with value from text46How do I do this?
I want to get leading plus sign while fetching value from a text field in adobe acrobat pro. I have typed (say +326777) in the text field, but on fetching the same, getting 326777 instead of +326777. I am fetching the text field data as below:getField("txtNum").value;
Hello all, what I need with is a javascript button that will enable me to click it and the result will remove the amount from the calculation, click it again and the amount that was removed will be added again.Let me explain what I'm trying to do. I am creating a form that shows the total of material costs, then adds a percentage markup to the material costs from a drop down. Then I have a field to select the labor for the job. I'd like to have a button to remove the labor to see only the material costs by itself. Then click the button again and the labor total would be added once again without having to re-type it in. Would someone have a javascript that would help me do what I want? I hope it can be done. Thanks.
We need to get specific data from tables from PDF-files, is there any way to convert all tables in the copiable PDF-files to processable and formated tables(doc/xls/etc.) by patch ways.Many Thanks! !
I am working with an Adobe form, and need to format a field to select a value from one of three other fields. The other three fields have dropdown lists from which to populate the individual fields, and I need to be able to select one of these three values to appear in the fourth field. Data in these fields are not based on calculations, but on personal choice selections from lists of options.
I have a javascript script that prints a few PDFs. They are printing about 10% too large. If I print each one manually, they print normal size.I am using a folder level script and using printparams to adjust the settings. I have tried setting pagehandling to "fit" and "shrink" but it is still larger than it is supposed to be.Any suggestions?Thanks
there is an interactive tour provided in the welcome menu of Acrobat 2017. Does anyone know if Adobe Captivate was used to create this? How can I create my own interactive tour inside of Acrobat to show users how to use our plugins to Acrobat? I do not want this to be a video. I want users to actually click on buttons and engage, not simply select a button to advance the next clip/scene. Thanks,Jordan
I am creating calibration certificates, my fields are set as numerical values, but I cannot leave a blank field when data is not available. How can I default the blank fields with "--" using javascript?
Repeated attempts to check for updates result in a message "Update failed." Is Acrobat 9 no longer supported at all?
I am writing a C# application that needs to use Adobe Acrobat DC to open a PDF file and save it as a text file, using Acrobat's file conversion. How do I do this? Can anybody show me some sample code using the SDK? I have already looked through the sample code provided with the SDK but I don't see anything that helps me convert a PDF file to a .txt file.
Hello,I would like to synchronize external events (from a WebSocket) and the advancement of my presentation in Acrobat.I'd like to use the AVPageViewGoTo function when I get an event from this WebSocket.Therefore, I created a C++ class handling my WebSocket connection. In this class, I have a method binding the WebSocket's events to a function passed as a parameter.In my plugin, I have a function ("GoToPage") which looks like this:void GoToPage(int pageNumber){AVPageView page = AVDocGetPageView(AVAppGetActiveDoc());AVPageViewGoTo(page,pageNumber - 1);}I pass it as a parameter (as a std::function<void(int)>) to my WebSocket client.My problem is that whenever the "AVPageViewGoTo(page,pageNumber - 1);" line is called from the client, my plugin crashes and I have an access read violation (even if page is not null).I guess that this problem is due to the fact that I try to call a function of Adobe Acrobat's API outside the main thread (as explained here https://forums.adobe.com/
Hi Guys,Thanks for your help firstly. I have almost finished my pdf but have one last step.On the first part of the .pdf there is a bunch of yes/no questions. These are coded for colours and to give a final risk rating depending on the answers.I'd like to script a box on the last page that is a summary of must do risk controls, however I am having trouble with making it multiline.Essentially, I'd like it to be something like.if(this.getField("OCTA").value == "No") { event.value = "Radio carriage required, monitor ATC freq 15 mins prior to flight."} else {event.value = "Nil"}then add another line if(this.getField("Non_CTRL_AD").value == "No") { event.value = "Radio carriage required, monitor FIA and CTAF 15 mins prior to flight." } else {event.value = "Nil"}I'm obviously doing something wrong here as it only calculates the first one. I'm obviously a noob at Javascript but am so close to finishing the form.There are three or four of these questions that would give
I'm using a simple javascript to validate a field, and turn on a checkbox based on the value of the field. However, I'd like the validation to loop or cycle through multiple fields prior to turn on the checkbox. Here's what I have: this.getField("Check Box3").checkThisBox(0, (event.value=="0"));this.getField("Check Box4").checkThisBox(0, (event.value>="1"));
I am working on a windows computer. I've tried selecting the multiple text field boxes and right clicking but it does not give me the option to select format category: number.
Hello,I hope that somebody can help me, with the next questions.I'm looking for a script that can automatic splitting and save a document (in this case 126 pages) into a maximum off 6 pages so that's means 21 (126/6) separate documents.If the splitting in to 6 pages is possible, than the next question is: On the third page off every document is a description, is it possible that this description can be the name off the file? What I want is if I save the file, than it's namend "AMENDE3333666446727181". As an example see the attachment (in Dutch), I have marked the description.... Note: the description is different every time.
I am making a document that generates pay periods and the numbers get off when I get to Daylight Savings Time. When I enter the first date, the next box adds 13, the next adds 1 to start the next pay period, next 13, and so on. I am calculating this using milliseconds and was wondering if I can add something to disable DST or at least calculate is using days so this wouldn't be a problem. Can anyone help me?
Hello,First, sorry for my english, i'm french...I actually use a script to rename layers with getOCGs().The problem is for groups of layers, I have a group by page, as you can see on the picture, but it's not really a layer so it doesn't appear in the result of getOCGs().How could i rename those groups ?Thanks a lot...
I want to open an attached pdf when i click on a part of 3d model.when i try host.exportDataObject({ cName: "MindSphere_GettingStarted.pdf", nLaunch: 2 }); it throws an error this is my complete code://startvar myMouseHandler = function( event ) {if ( event.isMouseUp ) {var myMesh = null;if ( event.hits.length > 0 ) {myMesh = event.hits[0].target;}if ( myMesh != null ) {host.exportDataObject({ cName: "MindSphere_GettingStarted.pdf", nLaunch: 2 });}}}var mouseEventHandler = new MouseEventHandler();mouseEventHandler.onMouseDown = false;mouseEventHandler.onMouseMove = false;mouseEventHandler.onMouseUp = true;mouseEventHandler.onEvent = myMouseHandler;runtime.addEventHandler( mouseEventHandler );
Hi.How do I set print options using javascript?ThanksJustin
Does anyone now the javascript formula to have a form field in Adobe Acrobat Pro calculate "Future Value" given present value, years & interest?
In a very simple Delphi program that holds an instance of TAcroPDF, if I set the .src property to a file, all is well and the pdf displays in my application.However if I call any procedure on the ActiveX control (I've tried LoadFile, Print, PrintWithDialog, GotoNextPage, GotoPreviousPage) then the application crashes after closing. This even happens if I call a procedure without loading a file. And calling Free() on the ActiveX control also throws an exceptionThe program code hasn't changed. The only difference is installing Adobe Reader DC ActiveX (version X and XI worked fine for years). I have tested this on another computer to confirm. As soon as Adobe Reader DC is installed, the problem starts.The error is:Exception EAccessViolation in module xxx.exe at 51F04CE6.Access violation at address 51F05CE6. Read of address 51F05CE6.Code below:unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, OleCtrlsAdobe, Ac
Hello everyone, I'm creating an Assessment form (fillable form) for work and a review of this assessment is required six months after. The software i'm using is Adobe Acrobat Pro and the software it'll be used by at my workplace is Acrobat Reader DC. I'd like to add a button that reads 'Set a reminder to review assessment' to send a custom email to an email address and on a date identified by the worker. It can be identified by a pop-up window asking for this information or I can add fields for the workers to input this information before pressing the button. Let us name these fields futuredate and workeremail.The body and subject of the email could be from an outlook email file (common directory for all workers) or something within the code, whichever one is easier. If it is something within the code, It can read "Reminder: review assessment for client # (there's a field with the client number, its name is clientID)I'm a noob and I am probably asking for too much, any advice or
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Você já é cadastrado? Entrar
Ainda não tem uma conta? Crie uma conta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.