Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
I have a form where Date and DOB are populated from the system. I need help to mark the checkbox (Check Box2) if person in younger than 18. Please help.
Hello,I haven't played with JavaScript in a bit and I'm a novice at that.I have 9 fields that have a manual entry which is a percentage (I have the field set to 'NONE' format because the percentage format spits out too many zeros).Score1=15%Score2=10%etc.All fields must add up to 100% and display my TotalScore field.I can get any of my scripts to work.Please assist.Thank you
I just had Windows 10 installed on my computer and am trying to re-install Adobe Acrobat 8 that I purchased a few years ago. Currently running Adobe Reader 11. I keep getting the error message that my serial # isn't valid, etc. Adobe support is useless.Thanks,Raymond
Hi,I'm trying to reinstall this on a new computer and I know its the correct serial # and version, because I logged into by Adobe account and that is what is says. However, it tells me that my serial number doesn't match the product, but it does. Don't know what to do here???Thanks for any help!
I have a page with 6 buttons. How do I change the action using javascript?
I am looking to use this feature as it is requested by a client, but I am unable to find one working example. Is the 'search' PDF Open parameter still supported? I need something like this to support my end-users.So if this works can I get some documentation on it besides the http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf from 11 years ago and maybe some explanation of the limitation?
I have created a trusted function (code below), when I call this function the button gets created on the page however this button is just a blank box, how do I get an image to show in the created button. I am running this in Adobe Reader XI, which I believe should allow this functionality, if not can anyone explain how I am able to add an image to a pdf using javascript. app.addToolButton({cName:"TestButton", cExec:"CreateMyButton('NextButton', this.pageNum)", cLabel:"Test Button", cTooltext:"Test_Button"});var CreateMyButton = app.trustedFunction(function(cName, nPage){ app.beginPriv(); // Acquire the crop box (visible area) for the current page var pgRect = this.getPageBox("Crop", nPage); // Build Button Rectangle in lower left corner of page var fldRect = []; fldRect [0] = pgRect[0] + 36; // 1/2 inch from left side fldRect [1] = pgRect[0] + 56; // 20 points high fldRect [2] = pgRect[0] + 172; // 1/2 inch wide&nb
I need to find a good, in-depth, tutorial/reference for creating custom dialogs. One that starts at square one, not assuming I already know the Acrobat object model and Acrobat javascript intimately.I want to create a custom dialog that prompts the user via radio buttons for the folder they want to save the current document to. It's not going to be very complex, but I want to do it right.I see numerous code samples here in the forums, but instead of trying to adapt examples I don't yet understand, I want a structured approach that will take me step by step through building my own.Christian Bahnsen
HiI want to highlight the words which having inline formatting (italic, bold) throughout the PDF. Actually, I am working on online proofing process and we need to check mismatches in inline formatting. If anyone having the script, please do the needful. Using Adobe Acrobat 9.
I use Adobe Distiller 9 to convert eps. files (from Quark XPress) to PDF files for printing of news magazine. i assume I have to download another Distiller program, but cannot find any way to do that. Need help.
Hi!We use password security to allow only printing of our PDF files. Modifications on the files are blocked. After converting files from .docx into .pdf, we need to open Acrobat XI Pro (running Windows 10) at File>Properties>Security Tab. There is the drop-down menu, and we select Password Protected. Acrobat then opens the window, where we need to select if we disable printing and modifications.Question: is there a way to change the printing and modification settings, so when selected Password Protected, Acrobat will open the new window already selected as "Printing High Quality" allowed and "Modifications" disabled?Any advice is welcome! 🙂
Adobe Export PDF, årsvis.önskar inte förlänga prenumerationen
I'm having a problem with opening random pdfs with Acrobat Pro DC. If I clicked on the pdf nothing happens. If I open Acrobat then open the pdf, I get "Adobe Acrobat DC has stopped working". It will open other pdfs. I initially thought that is was a corrupted file but I can open the same pdf using Acrobat Pro XI without any issues. I've already added the missing folder listed below. I'm on a PC with Windows 10.C:\Users\USERNAME\AppData\Local\Adobe\Acrobat\DC\ToolsSearchCacheAcroC:\Users\USERNAME\AppData\Local\Adobe\Acrobat\DC\ToolsSearchCacheRdr
I have an Action I'm building. The first Execute JavaScript action steps I added had a "Prompt User" checkbox I could uncheck. The latest Execute JavaScript action steps I've added do not display the "Prompt User" checkbox and are opening the JavaScript Editor, which would confuse the user.Why aren't the new Execute JavaScript action steps displaying the "Prompt User" checkbox?ThanksChristian Bahnsen
Hi everyoneI got a PDF generated from another software. It creates pages that i don´t want/or can't print.I need help with a script that can search for words (going to be about 5 different words) and delete the page containing one of that words and the page before.I found a script here but it only deletes the page that contains the word.I´m also not sure how to add multiple words without coping the whole script and type a new word.Using this script nowfor (var p=this.numPages-1; p>=0; p--) { for (var n=0; n<this.getPageNumWords(p); n++) { if (this.getPageNthWord(p, n) == "WORD") { this.deletePages(p); } }}Anyone got any good ideas to help me?
Hello!I was wondering, is there a way to use acrobats email function without attaching the file to the mail?I just want to mail some information regarding the file not the file itself since it usually is very heavy files I work with.But when I use this.mailDoc it automatically attaches the file.
I know nothing about how to do Java Script so I hope that this can be done...I want to have a drop down list named Service Code of about 30 different service codes (i.e. 90791). When a particular service code is selected I would like it to add a (1) one in another field named DAC. At that time I would like there to be a sum of all the 1's that had the 90791 codes selected.There are two other codes that will need to be added in separate fieldsThank you for your help it is much appreciated.Alex A.
Good morning Adobe community,Our current forms mapping is setup to display a member's name by the following order. Last,First,Middle in a single field (ie Johnson,Gary S). Where Last,First,Middle have their own column with character limit in our table dictionary. There is only a space between first name and middle.Char Limits for each column:Last 80First 20Middle 20I'm trying to break the names apart (similar to slice) and re-display the name in a single field such as: Gary S Johnson. Were each name char limit varies. Is this possible? I appreciate any assistance as this is beyond me. Phil
HelloI have been a paid subscriber for a few years and never had a problem converting pdf's to word or excel until now. Over the last week or two each time I try to convert a pdf if brings up the error message "An error occurred while trying to access the service", with no further details. I have checked that I am logged in, and can't find any suggestions in the help section.Can anyone assist?Thanks!
First of all it really sucks being ignorant. BUT, I am really grateful for the help offered here, so Thank You!!I have created two Document Javascripts with an array of field names. Here is one...function AddGPM(){ // Set up an array of field names var aNames = ["N36", "N37", "N38", "N39", "N40", "N41", "N42", "N43", "N44", "N45", "N46", "N47", "N48", "N49", "N50", "N51", "N52", "N53", "N54", "N55"]; // Set up an object that will be returned var oValsGPM = {}; // Loop through the field names and add name/value pairs to the object for (var i = 0; i < aNames.length; i += 1) { oValsGPM[aNames] = getField(aNames).value; } return oValsGPM;}Here is the other...function AddPressure() { // Set up an ar
I need to create a custom calculation between two dates in my form. I have a Date of Birth (DOB) field and a Start Date (SD) field. I need to be able to input these two dates in a form and have a separate field called Age at Start (Age) to calculate the age broken down into Years, Months, and Days (ie. 4yrs, 2m, 26d). I've searched everywhere and haven't found anything that would breakdown the age. Any help would be greatly appreciated. Thank you in advance.
I want to be able to add a submit button to my existing pdf form and want to receive it back after a user fill in the form questions.
Dear Sir, I need to create a field where a person can type ID card number 123-1234-1234657-1, but hyphen must come automatically as shown in the number when a person type the ID number.regards
Hithis.pane = 'Bookmark'; will open the bookmark panel on the open document, however it does not set the initial view navigation tab setting.So when the document is closed (after saving) it still won't set the document to open with the bookmark tab open.Is there a way (execMenuItem and messing with the registry?) to do this. ThanksTrevorWould be good to know for both Windows and Mac
Hello folks,I am working on a script that adds a custom button. Via a privileged function triggered thru a menu item, I can add a document-level script that creates this button.However, when I try adding an icon to the button, the debugger throws an error: RangeError: Invalid argument value.Doc.importIcon:1:Document-Level:Add_ButtonHere is my document-level script:this.importIcon("HomeIcon", "C:\\Test\\Home_Button.png", 0); var oIcon_Home = util.iconStreamFromIcon(this.getIcon("HomeIcon"));app.addToolButton({cName: "Home", cExec: "app.alert('Test Message')", cEnable: "event.rc = (event.target != null);", cTooltext: "Home Screen"});I suspect, Acrobat fails to access the C:\Test folder to create a PDF out of the icon file for some reason. Please, advise!Thank you in advance!
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.