『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the power of Acrobat SDK through our community.
新着順
Hello, I am trying to implement AVAppFrontDocDidChange in Adobe Reader DC 15.010.20060 When the callback is called I make the following calls:AVWindow hWindow = AVDocGetAVWindow ( doc);ASText titleText = ASTextNew (); ASTextSetPDText ( titleText, szCaptionOut); AVWindowSetTitle ( hWindow, titleText); ASTextDestroy ( titleText);After calling that, The titlebar of the App is never actually updated, but if i make the following call: ASText titleTextNew = ASTextNew (); AVWindowGetTitle ( hWindow, titleTextNew ); LPCSTR lpcszTextNew = ASTextGetEncoded(titleTextNew, 0);It is set with the correct text.Do I have to do anything special in Reader DC, to get it to refresh the active documents titlebar?
I have an add-in that adds a toolbar to acrobat. This toolbar contains 3 buttons. Based on the active document, some of these buttons should be visible, and others should not be.When I add the button to the toolbar I am using the AVToolButtonSetCompteVisibleProc function to set my visible callback. In a very simple example I have set my callback to simply return false. When debugging the code, I can see that this callback is called, however the effect is that the button is disabled, not hidden.The version of acrobat is Acrobat Pro DC Version 2018.011.20063
I understand that saving thumbnail images of pages in files was eliminated to reduce file size. However the current state of viewing pdf documents in thumbnail view could be drastically improved by not having to redraw thumbnails every time the scroll bar is moved so that a thumbnail goes offscreen and a new thumbnail pops up. Also, having to redraw every thumbnail if a single page is rotated makes no sense.Obviously this is not an issue if you only have 5 or six thumbnails, but if you've dragged the thumbnail pane wide enough to get an overview of an 80 page document, this can be really, really annoying, especially if you're editing the document by moving pages around.Could someone with some clout please fix this very easy problem?Thank you very much!
I want to have a drop-down's export value change depending on a text field. Is there a way to do that?Thanks-Austin
// get the value of the form field var text1Value = this.getField("OrderNumber").value;// here you need to make sure that no illegal characters are used, and also that text1Value is not empty// make a file name from the field value var newFileName = text1Value + ".pdf";// get the path where the file is currently located var filePath = this.path.replace(this.documentFileName); // create the new full path var newFullFilePath = filePath + newFileName; try { this.saveAs(newFullFilePath);// Only this will not work from a button... } catch (e) { app.alert("Error! Could not save as: " + newFullFilePath); }
Hello everybody!I'm elaborating 8 millions of hand made index cards (paper, size A6 approximately) for a dictionary, that have been scanned as pictures, saved as PDF (400 dpi, color) and gathered in documents of nearly 100 pieces each. I have therefore nearly 75.000 single documents. The next step is the digitalization of the content of each card, passing their standard informations in a kind of a relational database. I want do automatize this process as much as possible. (If I accelerate the process of elaborating a single card of 1 sec., it means I have saved 7,5 millions of seconds = 270 working days of 8 hours! (If you want to see an example, please feel free to email me at themistokliu-at-hotmail-dot-de.)The 100 digital cards of a document have the same "title" or belongs to the same word. My question:Is there any method to automatically split the 100-page-PDF-document in 100 single PDF-documents, which are automatically named by the title? For example, if a document named H
any suggestions? Frankly I can't figure it out. When I click on fill & sign I get a blank page.
Hi experts.Today I received a strange PDF document, when it is opened it automatically launch the Print command.So I tried to remove this unwanted Action with Acrobat Pro DC.But I cannot find it, it can only be seen in JavaScript : All JavaScript, and it's labelled "Belong to: Document-Actions : Document Open" (see screengrabs), and it's not a Page Action.I never heard about a Document Action named "Document Open", I cannot find it in the Acrobat UI nor in the SDK JavaScript Reference…The only clue I have is the document creator : Skia/PDFDid I mess something obvious or is it a real mystery?You can download this PDF here: Shared Files - Acrobat.com
I can not save my PDF File with Specific Text Fild data, which Auto Generate . Such as Order Number 20120, its save 20120.pdf Please Help me.
I was able to get the formula to work using the simplified notation calculator, but it was giving me the format error message. Per my code below, I am trying to calculate ((V1+V2)/V1) -1. But it is not calculating anything. Please help!var v1 = Number(this.getField("Original_Line_Amount)").valueAsString); var v2 = Number(this.getField("Overage_Amount").valueAsString); if (v2==0) event.value = ""; else event.value = (v1+v2/v1) - ; Thanks!
Dear Community,I am searching for a method to automate a working process with PDF files. The automation should be able to open a bunch of PDFs out of a folder, split them into single files and automatically search for a string and a date, combining the corresponding PDFs together und "safe as" the PDF files in another folder.Is there any way to do so without the need of a key?Do I need the SDK for that?Can I simply script it in C++ as kind of a macro like in MS office?Do I have to let it be certified by adobe?Do I need to be certified to create such a routine?What are my options in this case?Thank you very much and regardsMathieu
I have a field where I would like people to enter their payment card expiry date.I've set the format of the field as a date, formatted mm/yyI am trying to have the default value of the field as 'mm/yy' so users can type the correct format instead of finding the date in the calendar. My problem is that I am getting the error saying that the default value does not match. Can anyone help me with this?
Hi All - really hoping someone can help me out with their JavaScript knowhow!I‘m creating a PDF form for my team which will be used to record the results of testing. What I’d like to do is have a text field which will change its text value and text colour, depending on the value inputted into another field.I have a text field in which a user will copy and paste a value which they have acquired - in this case it will be a hash value. There are expected reference hash values, and those acquired by the user during tests should ideally match these, but of course they may not. I want confirmation and a strong visual indication of this using a calculation script.As an example:I have a text field which the user will paste their acquired hash value into; this can either be upper-case or lower-case - we’ll call this field ‘Acquired-Hash’.For ease, let us pretend for this example that the expected value is “3bf5”.Next to the field ‘Acquired-Hash‘, I’d like a dynamic text field (called ‘Result’)
In .net window application we are showing pdf by using AxacroPdfLib control. First time it is showing fine but when the window is minimized then the top of edge showing background text like as below screen shot.Could you please help on this.Thanks in advance
We are using a pdf as a training document to test users on a web based process.We want to confirm that users have selected the correct option in the drop down field and if not show a validation to advise them to select to correct response.We need a custom javascript that reads the "Workflow" field and validates that the response selected is "Level 1 Rebuttal"Can anyone assist?The code we have tried isoptionObject.selectedvar x=document.getElementById("Level 1 Rebuttal").selected;optionObject.selected=true/falseWe have tried it as an Action on the drop down field itself as well as the "review form" button on the pdf and neither work if the selection has been changed but is wrong. it only performs the validation if the selection has not changed.
Hello! I have a pdf calculations form, based on a previous calculation table designed in Excel. Presently, the Excel file was changed by its author in an interactive pdf one, with formulas transposed in the Javascript language. The trouble is that the calculations done automatically in the pdf form (basic on the same inputs) generate some differences in the final results, comparing with the similar ones calculated in the Excel one. They are given in the pdf because keeping only the integers, rounding the medium / final values etc, based on the Javascript formulas. My question is whether / how could I solve this trouble, considering that the calculations from my excel workfile are quite complex and the reference values may not be changed. Thank you! Vladimir A.
HI,Any one can help to send any tutorial, script and how to do this POPUP Menu in interactive PDF file as INDEX tab.
I have a simple subtraction calculation (A-B=C) that worked fine until I designated these fields as either shown/hidden based on the response to a radio button. If radio button 1 is clicked, the fields for A, B, and C are "shown". If any of the other radio buttons (button 2 or button 3) are clicked, A, B, and C are hidden. Once I added this script, the C field no longer calculates. Can anyone help?
I am using Adobe Acrobat XI on Windows 10 Pro. The Add Text box appears to be at the right height, but when I click away, the text drops about 3/4 of a line lower. Problem just started today. Is there a way to adjust the location of the text box so that it is predictable?Thank you.-John
I was attempting to edit a form, but received a message to use Lifecycle designer, which I do not have. Although I am a Creative Cloud user, must I upgrade to this product? And, is there a way around this? Thank you!
Is there a downloadable PDF file for "Interapplication Communication API Reference" for version X or XI? I already have this document for version 8.0 of the SDK.
I have a PDF with bookmarks which all start with XXX NAME. I want to rename XXX to YYY.. I believe the solution is very simple using JS, however Im a coding noob. Can anyone provide the javascript for this 'simple' task?
Hallo, i've two simple inputs named "Text1" and "Text2". And javascript on unfocus from Text1.Javascript here:var text = "";var barcode = "";text = getField("Text1").value;barcode = getField("Text2");barcode.value = text;It's works fine. But when i fill Text1 with long number (16digits), Text2 becomes strange, by the table belowText1 goes to Text29203803018350709 92038030183507089203803018350708 92038030183507089203803018350707 92038030183507089203803018350706 92038030183507069203803018350705 92038030183507049203803018350704 92038030183507049203803018350703 9203803018350704
I need help with this. I have searched the web looking for this and haven't found a complete script and I don't know how to patch one together from multiple scripts. We are currently using a fillable PDF template form for all our inspections and have figured out how to use it from our tablets. I need to add a button to this form with a java script to lock the entire PDF so it can not be edited. Its okay if it is printed or copied, we just want to provide some level of protection from a customer accidentally altering a inspection report. I would like to make it so the button can be activated and deactivated with a password prompt for both occasions so techs don't have to constantly unlock after accidentally clicking the button. I don't know much about java other than how to copy it to a button in a PDF and select it as a mouse up to exec a java script. I would like to set the password as 123456 for the time being so I can easily find it in the script and replace with the password we wou
Guten Abend,vielleicht können Sie mir helfen...Wie kann ich den selben Text (per Funktion Text hinzufügen) mit einem Klick auf jede Seite eines mehrseitigen PDF (Adobe Acrobat Reader oder Pro)?Vielleicht kann mir geholfen werden...Vielen Dank im Voraus,EP
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.