Unlock the power of Acrobat SDK through our community.
Actividad reciente
I'm using Acrobat X on a Mac. I have this bit of javascript (see below). It does just the opposite of what I'm trying to do. I want to flatten the Stamps, Lines, Call-Out text boxes and any other type of annotation and not effect the buttons and input fields (or any other fields in the doc). Just flatten the annotations. Can someone help me out? Here's the script and a thank you.Script:this.syncAnnotScan();var annots = this.getAnnots();for (var i = 0; i < annots.length; i++) {annots.print = (annots.type!="Stamp");}flattenPages(0,numPages-1,1);this.syncAnnotScan();annots = this.getAnnots();for (var i = 0; i < annots.length; i++) {annots.print = true;}
When calling acrobat from the Excel VBA macro, does the error be displayed only with acrobat Reader?Is it necessary to install the product version of Acrobat?
Is there a way that I can create records of a form saving as same name like in Omni Pro Filler. Our company has went away from Omni Form, but the creation of forms with records is much needed. Some of the forms are single pages and some contain up to 20 pages. When doing EPA's it would be much simpler to open a single file for that employee that has all the past EPA's stored as records versus generating a new file each time need.Thank in Advanced.
Hi.I know how to use util.printf() to get a number formated as: 1234.56n = util.printf("%.2f", n);What I need is a number formated as: 1234,56With a comma instead of a dot.How can I do that?Where can I find some infos since I cannot find nothing in the JS Reference?Thank you.
Hello My company is delivering training and as part of our Go Green initiative we stopped printing manuals. All course material is now online only which means during the course the Attendee has to use Acrobat or some other PDF tool to digitally annotate the course notes. My issue is that Acrobat has a lot of capabilities and features and settings. I would like to be able to do the following: - create a version of Acrobat that has our company logo and brand colours on it- reduce the number of digital annotation markup features down to maybe five or six - preset the digital annotation markup feature settings to an ideal level- be able to redistribute this version to my AttendeesIs the above possible with Adobe Acrobat SDK?Arnold Villeneuve
In my form I'd like to be able to make the annotations and mark ups Read Only after I set them on the page. I don't want the user to be able to select the, let's say, the Stamp I set on the page or any other annotations or mark ups I place on the page. I don't mean turning off the annotations tab section. Can someone please help me out? I've searched quite a bit and cannot find anything that would help. Is there a javascript that would do what I want? Can someone let me know? Thanks guys.
Hello, I am new to all this stuff right here and I need some help, I have a 2 fields, one is a dropdown with someoptions, lets call it "Type" and in that dropdown I have 3 options A, B and C, now In the other field is just a plain field lest call it "Here", what I want to do is that if the Type says A then Here will be have 0, if it says B then 1 and then C 2. or something like that
I wrote some Internet pages to PDF. This results in non-searchable files (in contrast to saving Word documents to PDF, which maintains the OCR in the PDF). Once written to PDF, I run OCR on the Internet pages that I saved to make them searchable. This significantly compromises the visual quality of the files. Is there a reason for this or a way to avoid it?
I have Acrobat XI Pro installed in a Win 7/64 environment. It presently reports being at version 11.0.16 under HELP-About Adobe Acrobat XI Pro ...When it checks for updates automatically, it finds one available and throws the icon in the tray at the lower right. Alternatively, when I go to manually launch the updater, it brings up the Adobe Acrobat Updater window indicating that "Update is Available". When I select DOWNLOAD, it throws the icon in the tray at the bottom right of the screen.In either case, when I click the updater icon in the notification tray, it brings up a window indicating that "Update is ready to install". Selecting INSTALL results in the Windows UAC window asking for the administrator privileges, and then reports "update failed" immediately, with no error code. This is very annoying.For the time being, I have disabled automatic updates in the EDIT-PREFERENCES-UPDATER window, but I am wondering what the heck is going on and why such a c
Does Acrobat do Graphics Acceleration?I have a dell precision 7710 laptop. It has a Quadro M5000M. In NVidia Control Panel I have adobe Acrobat DC to use the Quadro card, but on the task bar, the Quadro Activity icon does not show acrobat using the Quadro.If I run Adobe Photoshop, Photoshop shows it is using the Quadro, but Acrobat does not use the Quadro instead the integrated GPU.Nvidia Says this is an issue with Acrobat. Is there a setting in Acrobat to use the dedicated GPU?I have some large drawing pdf files that take some time to render on the screen.thanks,Mike
Hello everyone, we're developing a PDF with a Javascript (to add images to the PDF by means of a browse button) for a customer and already now we encounter problems to email the file around. Our customer does not receive the file (blocked by mail system without notification), we do not receive his revised version (attachment blocked but email passes).Email scanning systems become become stringent. Does anyone know an alternative? A workaround? Zipping the file didn't help.At the end the file will be used by several hundred dealers so we can't depend on an uncertain mail system.thanks in advance,Tom
Here is an example in a function entered in the console in Acrobat Pro 11.0.18:function loop() { console.println("\nBegin"); var i; for (i=0;i<5;i++) { console.println(i); }}This produces the following output when executed in the console:loop() Begin 0 GeneralError: Operation failed. Root.(null):1:Console undefined:Exec script terminated undefined The loop appears to execute once, but then throws an error when evaluating the conditional before the second iteration. I had similar results when casting the loop as a while statement, except that it failed before executing the loop even once, presumably because it had to evaluate the condition before the first iteration.This issue also arose during batch operation.Any insight?
I am trying to automate creating bookmarks from the highlighted text in a document. We use the Find, Highlight and Extract action on large document files and want to have it also create a bookmarks. This is the javascript from the action// Highlight Colorvar colHilite = color.yellow;var oDoc = event.target;var aAnnts = oDoc.getAnnots({sortBy:"Author"});for(var i=0;i<aAnnts.length;i++){ if(aAnnts.type == "Redact") { aAnnts.type = "Highlight"; aAnnts.strokeColor = colHilite; }}I have tried to use this and then add some more code for the bookmarks but have failed. Looking for some help on this. Thanks
As the description says, I have followed the troubleshooting guide found here:Troubleshoot PDF printing in Acrobat and ReaderI'm unable to print in Adobe Reader XI. I can open it with a web viewer and print it, I can print from every application except Adobe Reader.I have attempted to print as image, saved as a new PDF, restarted, print to different printers.....When I go to View > Tools > there is no Print Production option, only a few drop-downs on the right window pane. None of which contain a Print Production option.Live support doesn't support Reader, so I am here to find what else to troubleshoot.
Hello!I have a form that runs a JavaScript on Submit. It pulls a cc address in from a text field (that is populated by a dropdown selection JavaScript) and submits the form to certain email addresses - this part runs perfectly.I have been asked to update the form to incorporate 4 check boxes and if any of these are selected - the form should be submitted to an additional cc email address.If none are selected then the form runs as it currently is.This may be too general for assistance but I am willing to provide more information if it is helpful.Thank you SO much for sharing your knowledge!
I want to create invoices in PDF format with one field being the invoice number that is sequentially auto generated and is within a certain number range. Help!
I'm an accountant, and from month to month, I will prepare reports and copy and paste the "referencing" I made out of textboxes, from one document to the next, as they always line up in the same spot on the document.Just recently, I've noticed something odd which I cannot fix and would impact hundreds of textboxes in my documents if I am unable to find a solution. My references include single letter text boxes.Originally, textboxes would allow the text to hug the textbox border tightly, like this: Adobe is now adding, what appears to be cellpadding, resulting in the same boxes appear like this: [ A ]The issue is that if I double click to edit the text, it will display as if there is no cellpadding, but when I click away, the gap between the text and border reappears. If I copy and paste a textbox from a previous Adobe document which displays like , and paste it somewhere else in the document or in a new document, it automatically gets adjusted to [ A
Is it possible to ask the user for a folder, make him choose one folder in a dialog window?If possible I would like the dialog box to start from j:\
HI, Sorry i don't know the place to write this so writing here... I am croping pdf to trim size using applescript. 1. Crop Pages -> Get the Trim box values 2. Place the values (T, L, B, R) to the Crop box. 3. Select All radio button 4. Click Ok. Following these steps in apple script but after cropping the pdf (ie., after completing script) no changes in pdf. Actually values are asigned to crop process but no changes. I could not get the issue. Can anyone help me?Code:------------- Process --------set pdfFile to choose filemy mainProcess(pdfFile)display dialog "Process Completed!!!"-------------- Functions ---------on mainProcess(pdfFile) local trimboxFlg, cropboxFlg set cropboxFlg to 0 set trim_box
I am unable to delete two text boxes I inserted with the Fill & Sign tool and now need to delete them. I have tried highlighting and delete, with no results. If you can provide instruction I would be forever grateful.
HELP! when creating comments through tools, text inside comment box is appearing in Greek, but comment list displays in English. How to I change it back to all English??? Not sure what happened but all of a sudden it started doing this...
How can I create a signature that can be superimposed on the document without blocking the text behind it?I've tried stamping - it still has a field around the image that blocks whatever is there; there was a signature that 'floated,' but then it was removed from my system during an upgrade by Adobe.
He intentado con varios códigos java y no he podido restar dos campos, agradezco su respuesta.
HI Forum experts , I have created an interactive PDF form with check-boxes and text fields. I wanted to know if it is possible for 'checkbox 1' to tick, when 'text field 1' has had text entered (JavaScript on the textbox?). The check-boxes will be on another page and will track the progress of text box completion over time.(The form is going to be used for an ongoing audit). If you know of a JavaScript / or how to do this - that would be greatly appreciated. Many thanks - Kind regards Kevin
When I use the calculate "Sum" feature it does not apply the prefix when spawned. I would like my Total to end up on the last page at the bottom. I'm not sure if I need to create a script using "var =" or something totally different, I have 20 fields on spawned page and I'll need to get the subtotal from parent page to add to total of spawned page.Greatly Appreciate Any Help
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
¿Ya tiene cuenta? Iniciar sesión
¿Aún no tienes una cuenta? Crea una cuenta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.