Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
I have tried every SUMIF formula on these forums. But none of them worked for me. So I really need your help to complete my formula.W 20,00 G 80,00 W 23,00 G 40,00 W 0,05 G 2,00 W 5,00 G 10,00 W 70,00 G 45,00 What I am trying to do is get the total of all the amounts behind "W" and behind "G". So in this case it would be W= € 118,05 and G= € 177(These outcomres will come in "Text1.1" And in Text1.2".The row (from top to
I have a PDF with check boxes, where I want clicking a certain check box to link to a specific page of the document and print that page. I found this forum which is pretty much exactly what I would like done printing checked items from a form in acrobat reader but I am not knowledgeable in javascript. I don't even know where to put the code in that they reference in this forum.Thanks!
Do we need Acrobat Pro DC tool for using Acrobat DC SDK?
Hallo Zusammen,habe ein Formular mit Zwei Seiten erstellt.Die erste Seite wird ausgedruckt Die Zweite Seite wir entnommen und wir per E-Mail versendet.Jetzt möchte ich dies meinen Anwendern zur Verfügung stellen.Diese haben aber nur den Reader DC im Einsatz und dort geht es nicht.Kann mir jemand helfen?Hier der Javaskriptcode:// Variable und Leerenvar Kunde = "";var Projekt = "";var Mailing = "";var Loeschung = "";var Versand = "";var OutEMail = "";var OutText = "";var OutBetr = "";var Datenloeschung ="";// Variable Füllenvar Kunde = this.getField("NameKunden").value;var Projekt = this.getField("ProjektNr").value;var Versand = this.getField ("AuflieferungMailing").value;var Mailing = this.getField("NameMailings").value;var Loeschung = this.getField ("DatumLoeschung").value;var OutBetr = "Die Post ging ab! Löschung am " + Loeschung;var OutEMail = getField("EMail").value;var OutText = "Sehr geehrte Damen und Herren,"+"\n"+"\n"+"als Anhang übersenden wir Ihnen die Information zur Datenlös
Hey everyone,Could someone explain the below (console) behavior for me? ( Nb. f1. is a text field that is gray.)f1.fillColor==color.grayfalsef1.fillColorG,0.5color.grayG,0.5I'd like to use the background color for booleans , but because the top comparison fails I'm at a loss.For this particular instance I have a workaround but for my overall understanding I'd be happy to know why this works this way
I would like to use an AcroDialog window for updating a field in a PDF form and I need to populate an "edit text" with the value of the field "Text1" existing in the form. How the following script must be modified to do so ?Probably very simple... but I stumble on the solution.Many thanks in advance for your advices////////////////////////////////////////////////////////////////// Acrobat JavaScript Dialog//var oJSDlg = { strEdt1:null, initialize:function(dialog){ }, validate:function(dialog){ var bRtn = true; var oRslt = dialog.store(); return bRtn; }, commit:function(dialog){ var oRslt = dialog.store(); this.strEdt1 = oRslt.Edt1; }, description:{ name:"Dialog Box", elements:[{type:"view",width:634,height:405,elements:[ { type:"static_text", item_id:"Sta2", name:"Veuillez saisir le texte du message :", }, { type:"edit_text", item_id:"Edt1", wi
I developed form in AEM Forms Designer with radio button that show/hide Flowed Subform. That give me to hide subform without blank space. Now I try to develope form in Acrobat DC and would like to do same in Acrobat. If that is possible. How to do that? I will appreciate for detail explanation.Thanks.
Hi,Is it possible to get the data from one textfield to another textfield. The values should exactly match as it is for example: ("1.00245" or "1,000.02542" or "1" or "100.00" or "100.20") the result should be the same ("1.00245", 1,000.02542" or "1" or "100.00" or "100.20") and also if it is negative value we should replace as parentheses.
Dim iTotalPage = gPdDoc.GetNumPages For iPage = 0 To iTotalPage - 1 Dim formApp As AFORMAUTLib.AFormApp formApp = CreateObject("AFormAut.App") Dim fields As AFORMAUTLib.Fields fields = formApp.Fields Dim strScript As String Dim tmp = "var p=" & iPage & ";" & vbNewLine strScript = tmp & System.IO.File.ReadAllText("Script.txt") ' call the method to execute JavaScript fields.ExecuteThisJavascript(strScript) Next[Script.txt] process add link to target page.After call process of Page=0, it d
I have a text field that I need users to enter a specific number format in. The field format must look like A99999. The first character must be upper case character. I will appreciate for detail explanation how to do it in Acrobar DC?
I have a text field that I need users to enter a specific number format in. The field format must look like 9-999-999-9. I have experience to farmat field in LiveCycle but I have problem to set format field in Acrobat DC. I will appreciate for detail explanation how to do it in Acrobar DC?Thanks
I had an issue today where I couldn't send a PDF form I had been working on to a coworker, and found out that the form was being flagged by our server as a virus (MAL/PdfEx-C). I traced back through the changes I made (a previous version had no problems posting) and was finally able to track it down to a function I had added to a field's Custom Format event. In that event, I needed to sort an array of checkboxes to keep them in the proper order and concatenate their values. I added a function to do the sorting, and this was what was being flagged by our server. I moved the sort function out of the Custom Format event into a standard JavaScript code module, and had no problems then emailing the file. This is the function:// Custom sort order for checkbox field arrayfunction customSort(a,b) { return( a.name.toString() < b.name.toString());}Can anyone say why the email server would flag a file for having a function defined within the field's events? I usually don't do
I basically need a formula involving two fields, let's name them Field1 and Field2.So if Field1 is less than or equal to 2000 then Field2=150.However, if Field1>2000 then Field2=Field1 multiplied by .075.Any ideas what the script would look like??Thank you!!
I am working on a pdf file and have gotten to work with hover states (mouse enter, mouse out) and mouse up/downThe one issue I'm running into is when I keep the state on (showing a layer) on click and making sure if I have any other layer I have previously selected is turned off.I did do this by going through each layer and turning it off on mouse up, but I have a lot of layers and that can be a lot to do for each button. Is there an easier way?I tried using on mouse up var docOCGs = this.getOCGs();for (var x=0; x < docOCGs.length; x++) { docOCGs.state = false;}---- and then another actionvar docOCGs = this.getOCGs();for (var x=0; x < docOCGs.length; x++){ if(docOCGs.name == "DBC: National") { docOCGs.state = !docOCGs.state; }}but it turned off all layers except DBC Natoinal. and there are some layers that I still want to show. I tried locking them,
HelloI work with hundreds of PDF files which I have to go through and set up the layout for each one manually. It would be great if I could set up something that when a file opens, it changes the layout for the file to Layout: Single Page and Magnification: Fit to page, then saves. Can anyone direct me to an idea how to do this? New to Adobe somewhat and this would save me a LOT of work.Thanks!
My question is, is there a script for one-sided printing of a PDF file? I have a pdf package with different single forms and need them simplex printed even if the printer driver is set to double-sided printing? Any ideas?Thank you for your Help!
I have a ton of PDF documents that I need to OCR in order to mark up, search and analyse (literature review). I have Acrobat DC and understand that simply putting a document into Edit mode by clicking Edit PDF from the Tools menu Acrobat will OCR the document in the background.Except it doesn't seem to work. And my last two posts have gone unanswered. So I have decided to get a little basic.Has anyone used DC to OCR an existing document? How did you do it?Has anyone used Adobe Acrobat DC to OCR an academic document?Am I the only bunny who can't get this to work?Thanks
I have this code and not able to make it work I have a PDF form that I would like to send an email to the email in the field ("Email"). However I do not want it as a PDF attachment, I would like to copy all the info in the PDF and paste into the email just like I see it on my screen. Here is my code:var subject1 = "SSC Triage Assistance Request: " + this.getField("CID").value,var address1 = this.getField("Email").value,var body1 = this.getField("CID").value,+ this.getField("Order").value, + this.getField("Container").value, + this.getField("Service").value, + this.getField("Date").value, + this.getField("Address").value, + &nb
I am completely new at javascript and I don't know all the terminology so it might take some dumbing down in response. I am attempting to generate a random number between 0 and 1 so I would like it to look like .1234 or .9999. It has to be four digits and I don't necessarily need it to lock once entered. I would only need to print that page and hit my radio button and generate a new list of numbers. I currently have this as my script. this.getField("Text1").value =Math.floor(Math.random()/Math.pow(10000,4));The "Text1" is the current name for the box on my test page and I am using a radio button to generate the number. I will also have multiple boxes that I want random numbers generated in and I would like to use one radio button to complete the task of generating all the random numbers that I would need. How would I also add, say "text2, text3, text4", boxes to this so that all of them would have a separate random number or do I have to enter a script to each "text" box to do this.Tha
We have code previously using AppExit() method to close Adobe Reader 11 after printing using DDE. Now with Adobe Reader DC, the same AppExit() method only exit the currently opened document, but the Adobe Reader DC application is still opened.Does anyone know what is the DDE method we should use to exit Reader DC application instead of the opened document? Or how should we exit the application using DDE? Much appreciated!
How to set time limit in pdf document??
I using Acrobat COM:I want get Coordinates of Words. iPage = 56 Dim PdfPage = oDoc.AcquirePage(iPage) Dim PageHL = CreateObject("AcroExch.HiliteList") '// created to get the page text Dim PageHLRes = PageHL.Add(0, 9000) '<<--SET in FILE! (Start,END[9000=All]) Dim PageSel = PdfPage.CreatePageHilite(PageHL) For i = 0 To PageSel.Getnumtext - 1 '// start the word loop on current page Dim word = PageSel.getText(i) '// get one word
Hello,I have 10 pdfs 20 pages each. I need to combine them into 1 pdf as layers. Standard Import layer allows only to import it page by page which is very time consuming. What are the other ways to do that? I tried to do that in Illustrator as well, but it gives me the same page by page import.Any help appreciated Thank you
I don't see a focus() method documented under the dialog documentation but when I inspect the dialog keys I see that one of them is focus. Is there a way to accomplish this?
Is this possible or no?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.