Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
I have a pdf photo album. Can someone tell me the easiest way to place jpeg images into the album? Do I have to convert each and every jpeg to pdf? I want to give the album to my friend which only use the Acrobat Readers and they don't have any way to convert the images to pdfs. What can I do? Can someone suggest a solution? Thank you all.
I want to call a Javascript function when a PDF opens or loads. Or when I click this Layer button.How do I do it? Thanks in advance!
Using Adobe Acrobat Pro XI, I am working on a medical form form notifying our medical team of new patients. Upon completion of the form, I am trying to set it up to use a button to submit the saved PDF form and send it to our medical team in an email (we use MS Outlook across the organization). I've found multiple scripts that get me close to what I'm looking for, but I'm trying to accomplish this task with the following parameters: Email To: "medical_team@outlook.com"Subject Line: "Patient Notification Form - [LastName, FirstName Rank]"Attach as: PDFBody / Message: "Please find the attached Patient Notification Form for [LastName, FirstName Rank] attached."Form Field Names: - Last Name: Pull from form field "Patient_Last_Name" - First Name: Pull from form field "Patient_First_Name" - Rank: Pull from form field "Patient_Rank" Any help would be greatly appreciated!
I am using Acrobat Javascript API to run a color conversion operation (this.colorConvertPage) but there is no option to mimic all the configurations available in the Color Convert dialog.For "Preserve Black" I can use the preserveBlack option from colorConvertAction object. However, there is no option on colorConvertAction to do what "Promote Gray To CMYK Black" does.Using just Preserve Black all DeviceGray objects are mapped to rich blacks on CMYK, but using Promote Gray To CMYK Black does what I want, no rich blacks.Any ideas?
I have a simple task (of exporting and saving pages of a pdf as specific names) that is repeated and id like to be able to automate somehow through JS. I am trying to enable the console using this guide: https://acrobatusers.com/tutorials/javascript_console But find that the checkbox for "Enable JavaScript debugger after Acrobat is restarted" is not there. See my screenshot. Is that only for PRO? What am i missing here? (Windows 7 - and i am at my office) Thanks in advance!
Hi All,We have multiple customers that they are having issue with Adobe Acrobat Professional 10.1.2. Version.Portfolio Option is not working on all the customers machine.When we they try to convert Excel files to PDF Portfolio, its getting failed.Can some one help us to resolve this issue. please help!!!RegardsAmol
I want to search a multi page pdf for specific text "87 Main" and delete those pages which have that text.Search needs to be Whole Words so as not to delete pages with "187 Main".
Hi... I've recently installed Acrobat Pro DC (Team subscription) on a workstation in my office. I've since noted 12 different executables that appear to be related to the product that have attempted to access the network or internet. The environment I support requires that I understand why executables are running, especially when those executables are attempting network access. I contacted tech support, but was given the answer that they don't know what these individual applications do and they had no resource to find out (I'll refrain from expressing my frustration over this answer).I have either discerned or learned from Google searching what several of the executables' functions are. However, I am left with several unknowns, and most of these didn't show up until a week or more after Acrobat was installed:C:\Program Files (x86)\Common Files\Adobe\AdobeGCClient\AdobeGCClient.exeC:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\AdobeGCClient\customhook\gccus
Hi,I am looking for the C# function to extract the XML from the XFA data in a program. I can test the result manually in Acrobat but I have a lot of file to do that...On the AcroPDDoc class there is a GetJSObject function but I can't find what I can do with it in C#.Is it the good function ?
Hello,I am using OLE Automation C++ APIs for Inter-Application communication.I want to get the selected text in PDF and apply annotation to that text.For this purpose, I created the CAcroPDTextSelect object as below:CAcroPDTextSelect *textSelect = NULL;if (!textSelect) { COleException e; textSelect = new CAcroPDTextSelect; textSelect->CreateDispatch("AcroExch.PDTextSelect", &e);}Then I am calling the function GetNumText with the object textSelect as below:long numText = textSelect->GetNumText();However, execution of this function gives error : Access violation reading location 0xCDFAEB2C.When I did some debugging then I came to know that object m_lpDispatch = 0x00000000 <NULL>Am I missing something while initializing things?Please help!Thank you in advance!Regards,Navnath
This code is not working like I think is should, some times it over writes the values in the dropdown field and other times it drop the values down 2 spaceseach "ASAValue1 -> ASAValue16" is a Dropdown Field, with a possible Dropdown Field name of CSk1 -> CSk23I don't see these app.alert come up either:app.alert("We are in the CareerSkills Function ASAValue : " + ASAValue, 3);app.alert("We are in the CareerSkills Function CSkASAValue1 : " + CSkASAValue1, 3);TotalSkillsAdjustment Field is from 0 -> 7var ASAValue = this.getField("TotalSkillsAdjustment").value; app.alert("We are in the KeyStroke CareerSkills ASAValue : " + ASAValue, 3); var ASAValue1 = "CSk" + (ASAValue + 1); var ASAValue2 = "CSk" + (ASAValue + 2); var ASAValue3 = "CSk" + (ASAValue + 3); var ASAValue4 = "CSk" + (ASAValue + 4); var ASAValue5 = "CSk" + (ASAValue + 5); var ASAValue6 = "CSk" + (ASAValue + 6); var ASAValue7 = "CSk" + (ASAValue + 7); var ASAValue8 = "CSk" + (ASAValue + 8); var ASAValue9 = "CSk" +
I want to create a text annotation on a PDF page.For this I need to get LPDISPATCH object from GetBoundingRect.As it comes under the Object PDFTextSelect, I need to create CAcroPDTextSelection object.However, I am not able to create that object.How can I create object of CAcroPDTextSelection?Regards,Navnath
Installing adobe acrobat pro XI on a new computer but getting a message that a "qualifying" product is not installed. Adobe acrobat pro XI is installed on my computer but is not listed as a qualified product from the drop down. The message says that mu serial number is valid, but no qualified product is downloaded.????
When I open the vb.net samples of acrobat cd sdk, the acrobat objects are not defined error is shown
Hi,Been trying to change layer visibility using script: PDF is created as interactive PDF in InDesign cs6 with 3 layers, with the first set in InDesign to visible, second layer default set in InDesign to not visible, third layer which in InDesign when exporting as interactive PDF automatically is exported with no control over it (Guides and Grids), can in Acrobat Pro DC be set to not visible. Using a script from Try67 from this forum (Can I remove a layer using Javascript? ) I modify to name the second layer "background" to become visible instead of the default first layer, and all else to be hidden.var ocgs = this.getOCGs();for (var i in ocgs) { if (ocgs.name=="background") ocgs.state = true; else ocgs.state = false;}If I open the PDF on a Windows desktop, works perfectly. Upon opening, the first layer and third layers are not visible, and the second layer ("background") is visible.The problem:If I upload sa
I am trying to format a paragraph generated by an action button in a Text Field..the javascript is as follows:this.getField ("Text1").value = "Chief Complaint\n" + salutation + patient + " is inquiring about utilizing orthotic bracing for " + pronoun + " current conditions; " + pronoun + " chief complaint at the time of this assessment is: " + location + " pain.\n" + "\n" + "Medical History\n" + "Medical History findings taken during the intake portion of this assessment include: " + this.getField("hpi").value + "\n" + "\n" + "Subjective Notes – Information Reported by Patient" + "\n"+ "On a 1-10 pain scale " + salutation + patient + " describes " + pronoun + " pain as being at a level " + this.getField("dme.pain-level").value + ". " + salutation + patient + " " + location + " pain has been constant for " + this.getField("dme.length-of-pain").value + " months.\n" + salutation + patient + " chief complaint is " + location + " pain, which is associated with a level " + this.getField("dme
Hi,everytime I try to install CS5 or CS5.5 on the new OS X Sierra System it says, I should eject the image. Is it possible to install it with the Terminal?
I could really use some help from some kind soul out there. I have been racking my brain trying to learn this and scouring the forums/internet and have come up empty handed. I have been trying to figure this out for the last 3 months on my own with no success. Could someone please help me?I have two folders: folder "A" and folder "B".On any given day they will both have multiple PDFs in them. The number of PDFs will vary from day to day and week to week, but the number of PDFs in both folders will always match on the same day.i.e. Monday folder "A" could have 15 PDFs and thus folder "B" would have 15 PDFs. Tuesday it could be 3 PDFs in each folder. Friday it could be 1,000 PDFs in each folder. Regardless of the day, there will always be the same number of PDFs in each folder.I am currently running/using Adobe Pro 8 (not my decision, out of my control/authority) and due to the limited functionality I have to find an alternative/creative way to achieve an end result via a script. At leas
I have made one form which requires validation before signing....... everything is working good........ clicking validation button pops up a message about which fields need to be filled (if any require fields are not filled by user)..Now i want to ask is it possible in pdf form that instead of pop up message..... the fields which are not filled by users are highlighted in red there itself instead of a popup message (bcoz the formatting of pop up is very bad and i am not able to format the popup mssg.. they come up very messy).
Hi,Using Acrobat Professional DC, wondered if it is possible to create a script to get the name of an object for example as an event target (for example, on entering a page?).If I can get an object's name, then possibly I could add a script to change its fill color or some other property?Am learning scripting in Acrobat, have been reading the scripting API, correct syntax, and would appreciate any help to get an object's name based on an event.Thank you in advance.Stephen
Hello,I want to call a function from .api plugin.For example, If I created a plugin to open a PDF document in Acrobat or Acrobat Reader then I want to call that function from other application(might be written in c or java etc).Can you please tell me how can I achieve this?Thank you in advance!Regards,Navnath
HelloI am trying to write a simple script that will populate a text field based on another drop down field's selection. I'm getting an error but I have copied the code from somewhere and tried to make it my own with little luck. Please advise? I am adding this as a calculation script.var selectedContact person = this.getField("Contact person").value;if (selectedContact person=="Person A") event.value = "+ 44 123 456 7890";else if (selectedContact person=="Person B") event.value = "+ 44 123 456 7890";else event.value = "";I'd like to repeat the code on a "Contact Email" field where based on the selection in "Contact person" the email address is prefilled. Any help is much appreciated.
I have a Custom Stamp that I want to use in the Actions area. can thuis be done.
i am making a form .. in which following items has to go to the dropdown menu: Z80.0: Family history of malignant neoplasm of digestive organsZ80.1: Family history of malignant neoplasm of trachea, bronchus and lungZ80.2: Family history of malignant neoplasm of other respiratory and intrathoracic organsbut the problem is..... we have very small space for dropdown to accomodate such long text.. so we decided to just put the codes...... so my question is:is it possible that while pulling down the menu it shows full name.... but after selection the value is set to the short form...like Z80.0 , Z80.1 after selection but while selection full name is visible..
Hello All,I am in the process of developing a pdf form that will contain approximately 30 combo-boxes of employees names. I am looking to have all 30 combo-boxes reference one listing for their values as the list may be frequently updated and I do not want to have to update each of the 30 combo boxes every time a change needs to me made to the employee listing. I am looking for some input on how I can accomplish this easily. My thought was javascript or something may work. Thanks in advance for your help!
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.