Unlock the power of Acrobat SDK through our community.
Nyligen aktiv
Hello,I have 300 pdf files approximately. I need to delete crop and bleed marks present in the document. I am doing now with pitstop. Is it any way to this via javascript? I am novice in Acrobat scripting.Thanks,K
Here's the quick version of my question. I have an excel spreadsheet that writes a JavaScript script in column A of my spreadsheet based on user inputs. I want to be able to run a vba macro in excel that opens acrobat and runs that javascript. I've already figured out how to open Acrobat using VBA in excel, but have not figured out how to open the JS debugger, paste my code in, and run it.In summary: How can I open the acrobat debugger and run my code using an excel VBA macro?Any help would be much appreciated.Thanks
Hi, I'm new to the advanced tools and JS in Acrobat. I have this project that I need to do and I hope you can help me.I need to create a button that when I hover/click my mouse on it, a textbox will appear and people can add/edit/delete texts, and can be multiple lines of text.Pretty much the same as the sticky note/comment tool on PDF, but this needs a more "advanced" approach.Is this possible?Thank you so much in advance!
I'm still learning JS. I would like to have a dropdown menu in a PDF form where the user selects from the dropdown but when he clicks on it, a different output occurs. Example, user selects "G2 - Security" in the dropdown but "ARNO-G2" is what's displayed on the form. Is this possible?
I have been trying to follow instructions on how to create combo which auto pop another combo and intern that combo box auto pop other cells. I used an existing sample script and tried to replace there var and objects with mine but it not functioning. Can someone review my script?I have 6 cells goals, tactics, results, budget, action, tips. Both goals and tactics are combo boxes/drop boxes and the remain four are auto pop from the tact selection.Please note i am very new to coding and trying my very best.******var oTactRef = { "Everyday client meetings":{result:"5 referrals", budget:0, action:"Make asking for Introductions a regular part of the client meeting.", tips:"Use these meetings to initiate your new Value Discussion initiative"}, "Phoenix Conversations": {results:"10 refferrals", budget:100, action:"Reignite your current client base by booking meetings to discuss your new brand in-depth", tips:"Let them know that their experience is val
Hey,I am getting "Acrobat could not compare the document completely. Do you want to see the report anyway?" error.Before it was working fine but after upgrading to windows 10 it stopped working.Operating system: Windows 10 ProAcrobat version: Adobe Acrobat XI Pro (11.0.17)Under File->Properties->Description->Advanced->PDF Producer it says "Python PDF library - http://pybrary.net/pyPdf/After selecting first document it will automatically select "Presentation decks, drawings or illustrations" but it should stay on "Reports, spreadsheets, magazine layouts".I have tried reinstalling Adobe Acrobat DC Pro but it didn't help.It works if i open pdf with word and save it as pdf but our client doesn't want to make those steps, because it worked before.
I try create catalogue with buy option and i stuck on the one thing I need to create java script which after clicking on add to cart button will transfer Qty (filed by customer) to last page where is order .At the moment when customer click on cart code, product description and price are transferred just stuck on Qty.
I want to convert text to outline.Step 1: add wartermark.Step 2: flatten transparency.I can't find a function that can flatten transparency.
I have recently inherited a system that uses AdobeForms to collect data, the system has been untouched for 12 months. I now have 1812 emails sitting in an inbox - each one with a response pdf attached.Is there any other way to export the data to the response file, other than clicking on each file individually? The response file is already set up and in use.I am ok with batch scripting and have a development background although I have never worked with javascript.If someone can point me in the right direction I would be grateful.Thanks,R
Using Adobe Acrobat DC - Create PDF Firefox extension Add-on (as well happens using Chrome extension) gives this errorI tried using different web pages.Also happens when I tried to combine several files and one of them is a web page file (url or local file).it stopped working. I was using this extension for more than a week.Other times gives this error.Best regards.
Hello, greeting from IndonesiaIm new for javascript, im trying make timesheet for daily planner. The first day is monday. I want to make pdf automatically fill the first date for next monday. example: now is monday 8/14/2017, the date fill with this date, but if i make timesheet tomorrow, (tuesday 8/15/2017) the first date will show next monday date (8/21/2017). Could you help me. Thank you and im sorry my english is terrible. Thanks
Hi,I've got a simple function that I have added to the 'DocumentJavascripts' in Acrobat in order to change the style of a field. I know that for a single field, I can use the 'blur' and 'focus' triggers to run it. But seeing as I need to apply this function to most of the fields in the PDF, is there an easier way of doing this? Is there a document wide event listener that would work? I don't think this is important, but just in case the function I'm using is: function Blurfield(){ V=this.getField(event.targetName); if (V.value.length==0) { V.borderStyle = border.s; V.fillColor = color.transparent; V.strokeColor = color.transparent; }}Many Thanks,Herb
I save a PDF into an Oracle BLOB Object in C#.net using ODP. I read the data into an OracleBlob object using pdf.pdfDoc = (dr.IsDBNull(1)) ? null : dr.GetOracleBlob(1);How do I view this object so that it looks like a PDF??
I would like to be able to cross the 23:59 time span. Using Acrobat Pro XI.Result as decimal: Field: 'Time5Dec.5'event.value = '';// get the start timevar sStart = this.getField('TimeIn.5').value;// get the end timevar sEnd = this.getField('TimeOut.5').value;// complete script only if we have dataif(sStart != '' & sEnd != '') {// convert sStart string to secondsvar fStart = Time2Num('hh:mm', sStart);// convert sEnd string to secondsvar fEnd = Time2Num('hh:mm', sEnd);// compute difference in secondsvar fDiff = fEnd - fStart;// convert to rounded minutesfDiff = Math.round(fDiff / 60);// report decimal hoursevent.value = fDiff / 60;}Result as HH:MM Field: 'TimeHHMM.5'event.value = '';// get the start timevar sStart = this.getField('TimeIn.5').value;// get the end timevar sEnd = this.getField('TimeOut.5').value;// complete script if we have dataif(sStart != '' & sEnd != '') {// convert sStart string to secondsvar fStart = Time2Num('hh:mm', sStart);// convert sEnd string to secondsv
Im new to javascript and have no idea what I am doing. Im making a form which, when a check box is marked, requires another field to be filled. In my screenshot, there is a check box if a person was referred by a doctor. I want to require the name and phone number of the doctor if the check box is checked. I have been looking around the forums but I don't seem to be able to find an answer to my question. Im certain someone knows how to help me with all of this great knowledge in the forum. I appreciate your help. Please keep in mind, javascript is NOT a forte.
In illustrator, i can create outline for text.How should I do the same in Acrobat SDK?
I created a template in Scribus and added pdf forms fields before saving it as a pdf. I then opened the pdf in Adobe Acrobat Pro 9 and entered the following scripts in my percentage fields, but neither worked.if(event.value == 0 | event.value = "") event.value = "";if( Number(event.value) == 0) event.value = "";I entered each on their own, but neither worked. I also tried entering them in the "Run custom validation script:" and "Custom Calculation Script" sections and neither worked. Currently, my form will print out "0.00%" when no value is inputted into said fields. I want the fields to print blank if no value is entered. Any help is highly appreciated, thanks!
I cannot seem to delete pdf files under windows 10
I already have a custom calculation script setup but I wanted to fix it a bit. var v1 = Number(this.getField("NMS").value); var v2 = Number(this.getField("CMS").value); var v3 = Number(this.getField("CMS").value); if (v3==0) event.value = ""; else event.value = (v1-v2)/v3;The script is giving me what I want in percentage. But what if I enter $5,000 in field "CMS" but left a $0.00 or blank in the field "NMS" yes it will give me a -100% in percent box but that's not what I want. I want the percentage to stay as "0.00" because if I do it the other way around such as $5,000 in the field of "NMS" but left a a $0.00 or blank in the field I get a "0.00" in percentage box. I need help from anyone.
I want to extract pages from pdf and display the images in an HTML container on a web site for clients to see their photo books before purchasing. read through some discussions and found the script below that extracts the pages from a pdf. I can use jquery flipbook to flip the pages. So the part I am not clear on is the Acrobat part extracting the pdf pages.What I want to know is what version of Acrobat do I need in order to do this simple step? I need to automate the whole process. I would need Javascript to Open Acrobat, then open the pdf, then extract the pages, then close acrobat.FI would need Javascript to Open Acrobat, then open the pdf, then extract the pages, then close acrobat.I don't want to use Flash to make a swf file for the flip book because it is not a permanent book. It is only a proof and once approved can be deleted. I just need to automate the process for all customers. The site I am working on uses PHP and Filema
Is it possible to set different default field highlight colors? Adobe Pro XFor example; the below code I found sets all document highlights to redif (!app.viewerVersion < 6) { // for version 6 or above app.runtimeHighlight = true; // turnon field highlighting app.runtimeHighlightColor = color.red; // set field color }Is it possible to set a default field highlight of "textField1" with a color.blue and "textField2" to color.red?I tried the script below for giggles: (of course, it did not work)var test1 = this.getField("textField1");var test2 = this.getField("textField2");test1.runtimeHighlightColor = color.blue;test2.runtimeHighlightColor = color.red;I couldn't find anything in the API reference either.
I previously developed custom javascript for adobe XI that custom stamps and saves the file. Now our company is moving to DC reader but want the same functionality. Is this possible in Reader?
We have seen a new issue with Acrobat Pro DC 2017.012.20095 and multiple plug-ins. We are aware that it affects plug-ins from multiple vendors.The plug-ins add tools which appear in the tool pane, can be added to the right hand pane, and appear as options in Quick Tools. So long as Tabbed mode is selected, this works as in previous updates to DC.However, starting with this update, if tabs are switched off in Preferences, the plug-in tools do not appear in the tools pane, right hand pane, quick tools selection, or quick tool bar. They return if tabs are switched back on. The plug-in remains installed and active, with menu items that it added still working normally whether or not tabs are activated.Does anyone have any info on this?
I have set up some basic formulas in my PDF. Example....I have a Swing field and a Cycles field. In the Cycles field under calculate I have a Simplified field notation: (60*60)/Swing The formula works fine but I have to have a number in Swing or it gives me a The value entered does not match the format of the field [Cycles] - the format in Cycles is set up as a Number. What do I need to change to be able to have a blank in Swing?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Har redan ett konto? Logga in
Har du inget konto än? Skapa ett konto
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.