새로운 Adobe 커뮤니티에 오신 것을 환영합니다.
Questions
최근 활동
How install Multimedia.api to Acrobat pro DC? Need to but video acrobat document but plugin not found missing plugin are Multimedia.api where i can get it?
Is it possible to get the page number that a field exists within using javascript? I have a 5 page form with 205 fields and I have built the code to export the field property values, for each field. I would now like to add code to include the page the field exists within. I have searched and cannot find anything that states anything regarding form pages. Below is my code to write to the console the form properties. Once I get it the way I want, I will have it write to an array instead of to the console and then export the array values to a csv file. for (var i = 0; i < this.numFields; i++) { var f = this. getField(this.getNthFieldName(i)); console.println(i + " | " + (f.type) + " | " + (f.name) + " | " + (f.readonly) + " | " + (f.required));}
I have a form that has several calculated fields, it works fine in Acrobat Pro, but very hit and miss in other programs. The form is an insurance application and it calculates the premium dependent on the "State" and the "Deductible" ("ded_1"). In Mac, the whole form seems broken, not just the formulas, but the layout too. I'm having issues with one particular field "ded1".The options of a drop down list field "ded1" is dependent on the data input of another field "State1". i.e. you input 'mi' it changes it to 'MI' and sets the options in 'ded1' to $5,000 & $7,500. you input any other state it converts it to upper case and sets 'ded1' to $2,500I've placed this code in the 'Validate' tab of the 'State1' field.event.value = event.value.toUpperCase(); // Sets the entry to upper case.// Sets the options for the deductible field.switch (event.value) { case "": this.getField("ded1").setItems([""]); &
How can I batch change document properties (i.e. initial view -> navigation tab) dependant on whether the pdf has a bookmark or not? Javascript seems perfect for this, but apparently document properties cannot be changed with Javascript.
Good morning,I am new to writing code and javascript in Adobe so please bear with me. I have created a form with a combo box. There is a text field below the combo box which is automatically populated with verbiage located in the Export Value for each Item selected in the Combo Box. I would like to have additional field (text fields) populate with various values based on the Combo Box selection. How do I do this? I am using Standard version and cannot seem to find a way to add JavaScript. If you can provide detailed step by step instructions, that would work best for me, as I am a beginner. appreciate the help!
I have a PDF with an intro tutorial compounded by 5 small custom popups distributed on separate layers. The popups has a close button. As a popup is closed the next one is shown and so on. Because I use the very same close button for all the popups (and the poppus will show up in different places on the screen) I have to move the close button accordingly. However I am no managing to do this...I tried:this.getField("btnClose").style.left = "7.82in";this.getField("btnClose").style.bottom = "7.47in";this.getField("btnClose").style.right = "8.04in";this.getField("btnClose").style.top = "7.69in";But then it caused a sintaxe error (I think it didn't like the 'style' property). Then I tried:this.getField("btnClose").left = "7.82in";this.getField("btnClose").bottom = "7.47in";this.getField("btnClose").right = "8.04in";this.getField("btnClose").top = "7.69in";As you may noticed I remove the 'style' so it didn't raise the error but also didn't move my button.PS: I tried to use "px" instead "in"
Hello,I download the SDK DC, and opened the sample project to Watermark. The sample will not compile because the library reference is not installed, but where do I find it? dDoc = CreateObject("AcroExch.PDDoc")Thank youDennis Aubrey
I had previously been able to print coupons in fdf. format using Adobe however now after a computer upgrade to Windows 10 I now receive this message. I have followed other suggestions and have gone in to Adobe under Java and made sure all settings are enabled. I have also gone under trust manager and made sure pdf files are enabled. Any other ideas or suggestions would be appreciated. Thanks
I've created a fillable PDF form in Acrobat where each question has two letter choices which are listed these in a dropdown box (i.e. Question 1 can either be A or B, Question 2 can either be C or D). At the end of the document, I need 4 text boxes that count the number of A's, B's, C's and D's have been chosen in the dropdown boxes. I'm a complete beginner when it comes to Javascript, so can anyone please advise a code I can input to achieve this?Thanks!
My last question was answered.because my current question is related here is a snapshot of that question.So, in the comments field... when text is going to the next line it breaks words instead of automatically moving the entire word to the next line. Is there a way to make the word and the end of the field move to the next line.The word "next" is cut to the next line instead of beginning the second field with the entire word. Is it possible to have it move the full word.Here is the script I used to get the text to go to auto-generate next field:
Hi!I want to do a button in Acrobat Pro and when I press it I want the current page i am on at the moment (lets say page 12) to be downloaded but I want to be asked where to save the document. Preferably on my desktop. Been searching forever but I have not found any script that works out for me. Regards,Dennis
Hallo, ich möchte mit Adobe Acrobat Pro DC ein Formular erstellen (vorbereiten). Dabei habe ich ein Problem mit der Verknüpfung von einem Kontrollkästchen mit einem Textfeld und dem druckreifen Formular. Mein Wunsch ist, dass beim Anklicken eines Kontrollkästchens immer das dazugehörige Textfeld im druckreifen Formular angezeigt werden soll. Wenn das Kontrollkästchen jedoch nicht angeklickt wird, dann soll sowohl kein Kontrollkästchen als auch kein Textfeld im druckreifen Formular angezeigt werden.Über die Registerkarte "Aktionen" konnte ich diese Funktionseinstellung nicht finden. Meine Frage lautet daher, ist diese verschachtelte Wenn-Dann-Funktion über diesen Bereich lösbar? Oder muss diese Funktion über Javaskript erfolgen? Falls eine Verknüpfung nur über Javaskript möglich ist, könnte mir jemand dabei behilflich sein, welche genaue Programmierung ich hierbei zu definieren habe? Viele GrüßeVerena
Hi: I currently have a document that was multiple pages, but only contains 3 pages with contact. I deleted the text form pages 4-7, but how to I actually removing the remaining pages altogether? Thank in advance!
Hello everyone , I'm new with JS in PDF. I try to find answer for my question, byt cant find it anyware. I create 3D inteactive document based on forms and buttons and it works but dont look everywhere the same. For example: sometimes PDF Reader have different Edit>Preferences>Forms> Hightlight Color. I try to write small script to change this Preference to have the same value. Any body open document have the same setupPreferences like : .It is possible? Thanks for answer.
How to rename attached files with Adobe JS? Or at least where the name of the attachment is kept? annots.name returns different value.
Hello,I have a large amount of PDF files that contain attachments.I would like to write a script that will automatically extract out the attachments.I've been looking over the various Adobe websites and I'm not sure where to start.Is there a cost to write a script that use Adobe API's? I can't find that anywhere.Is there a place to search to see if an example code close to what I want to do exists already?thanks!
If the event.value of a combo box is the item name of the current selection, then what do you use to reference the current selection's export value?
Hello, Do you know how to remove visible of Orientation axis Mark by JS in Acrobat? I serch for it in API and nothing.
I need to automate saving PDF files in a directory with enable usage rights on. Can anyone help me with this.
Bonjour à tous,je n'ai pas vraiment de connaissances en java mais je suis certain ma demande peut être réalisable.Je cherche à faire la chose suivante pour un formulaire pdf :Avoir une liste de choix à cocher avec checkbox sur la première page (Accueil de mon pdf):choix 1choix 2choix 3choix 4Lorsqu'un choix est coché je souhaite qu'il s'affiche automatiquement dans une liste sur une autre page de mon pdf.Par exemple, je choisi le 1, 3 et 4 le résultat s'afficherait :choix 1choix 3choix 4Ou si je choisi le 1, 2, 3 et 4 le résultat s'afficherait :choix 1choix 2choix 3choix 4Merci par avance pour votre aide.Cordialement, Laurent M.
Hallo zusammen, hätte mal eine Frage,A =this.getField("Artikelnummer.0").value.toString;if (A = "F.800.600") this.getField("Artikelbezeichung.0").value = "PM14/18 FFH 420-800/FFB 370-600",this.getField("Montagezeit.0").value=60, this.getField("Einzelpreis.0").value="103,83";else if (A = "F.800.800") this.getField("Artikelbezeichung.0").value = "PM14/18 FFH 420-800/FFB 600-800",this.getField("Montagezeit.0").value=60, this.getField("Einzelpreis.0").value="116,73";wenn ich dann in das Feld Artikelnummer.0 F.800.600 eingebe, werden die Felder nicht automatisch ausgefüllt. wo hab ich den Fehler gemacht?mfg
I'm a total novice using Adobe Javascript and I'm trying to split a large pdf with invoices into separate invoice files which are all named by the unique invoice number. On each page the invoice number comes directly after the the words "Invoice No." and is just a 6 digit number, however the words "Invoice No." do not appear at the same word count on each page. So I am confused about using getnthword as it differs all the time. Can anyone help me with a script for this?
Hi!I'm using Acrobat DC Pro. I want to spell check a folder of documents one by one using Javascript. I want a dialog box to pop up only if there is a spelling error in a file. I only want the dialog for when there are errors. I want to be able to correct the error via the dialog box. After I correct the error, I want the spell checking to continue until the end of the folder.Alternatively: I want a javascript program to spell check a folder a file at a time and to copy only the files that have an spelling error to a temporary folder.thanks!@ !
I want to make B's image size on document the same as A's size.A and B use the same image.A: Acrobat tool [Edit PDF] -> [Add Image]B: Read file in plugin -> Extract image data from file -> Create PDEImage in Acrobat SDK -> Add to documentSo, please tell me the following.1. How is the information of the image(size and resolution) related to the size on the document (the value of a and dof ASFixedMatrix)?2. If there are elements that influence the size on the document in addition to the image size and resolution, I would like you to tell me something.
I have created a PDF form with fields that update every time a value is entered in other fields. This works for the majority of users, but for some it doesn't.Example:Two Macs, both with Adobe Acrobat Reader DC. All settings regarding Forms and Javascripts are equal. Both running macOS 10.13.3. On one of them the code won't execute.Regards,Arve Fretheim
이미 계정이 있으신가요? 로그인
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
죄송합니다, 다운로드하려는 파일의 안전성을 확인하고 있습니다. 몇 분 뒤에 다시 시도해 주세요.
죄송합니다, 바이러스 스캐너가 이 파일이 안전하지 않다고 감지했습니다.