Unlock the power of Acrobat SDK through our community.
Nyligen aktiv
Where can I download adobe 8 standard?
Hello,I work in the legal field and we like to use Acrobat to perform bates numbering. An issue I've had for a while now is when a PDF contains images of varying dimensions, a single font size bate number doesn't always scale to the image as we would like. A standard letterhead images looks perfect with a font size of, let say, 12. When the next image is an ultra high quality photo with a huge dimensions size, a 12 pt font size is impossible to read when the image is scaled to fit in Acrobat. When the next image is a logo with very small dimensions, the 12 pt font size is monstrously large and most often does not fit when printed across the image.I'm fully open to Java, VBA, or other scripting if necessary. I know I would be able to determine the proper viewing font size which could scale with images when viewed on a monitor. I wrote a little script to use on another program which I could use to drag and drop a folder of single page tif/jpg images onto an exe which would export a delim
I was wondering if there was a way to trigger the 'Remove Hidden Information' feature that Acrobat has through JavaScript. (I'd like to run this selectively on only documents which contain certain information, which is why I'm hoping to use JavaScript rather than the Action Wizard.)If anyone has any thoughts on this or workarounds, I'd be grateful. Thank you!
I am trying to create Acrobat pro DC PDF's with automated table of contents. I need to create reports of project files, each sub-folder needs a table of contents that links to the individual files. Is there a way to automate this process?Also, is there a way to have the pdfs I combine update when the source file changes? I can get Word to do this, but cannot figure out how to get acrobat to do the same or even import the linked files from word.Thanks in advance for any insight!
I have a few text fields. Is it possible to type into TextField1 and when that field is full, to jump to the next text field (TextField2) and continue typing automatically. Then when that field is full, jump to the next (TextField3) and so on. Is there a javascript to do this? Can someone show me please? I need to have it done by Sunday night. Thanks so much, guys.
I need to set a PDF file limit to be 5 MB. Is there a way to create this restriction? Is there a code I can insert into the actual uploads icon to set individual attachment file size limits in Adobe Acrobat Reader.
if (event.value=="VD") event.target.fillColor = color.gray; else if (event.value=="OD") event.target.fillColor = color.ltGray; else event.target.fillColor = color.transparent;
Is there anyway to start a saved "Action" in Acrobat Xi from VBA?In acrobat 9.0 I was able to create a batch process and using send keys (not really happy using sendkeys, but it was the only way I could get this to work), to kick off a Batch Process.I can't seem to recreate this in Acrobat 10 and up. Send keys no longer works as the Tools have no hot keys.Can I use the SDK to call a previously saved action?
The documentation says to use the config.js file. I can't find a path for this. I tried app.getPath("user","javascript"); and got an error. I'm running Acrobat Pro DC continuous release on a Windows 10 machine.I can find the app js file, but Adobe doesn't allow me to save my scripts there.I need to save to the folder-level to run a Net.HTTP request.Thanks!
I am trying to make a form that uses an input field (Estimated Sales Price of Current Residence) to calculate the Guaranteed Homesale Program value, which is Estimated sales price of current residence x .15. But if the Estimated sales price of Current Residence is more than $750,000, then I want Guaranteed Homesale Program field to equal 0. I tried the following but an getting errors.var n = this.getField("Estimated Sales Price of Current Residence").value;if (n < 750000) {event.value = ("Estimated Sales Price of Current Residence * .15");}else if (n > 750000) {event.value = "0";}
Is it possible to use adobe javascript to print a PDF without a dialog box popping up? I have seen suggestions thatpp.interactive = pp.constants.interactionLevel.silent;can work but it doesn't seem to work for me. I get the errorNotAllowedError: Security settings prevent access to this property or method.App.beginPriv:83:Field 3:Mouse UpThanks
I am creating a form to fill out that will have numerical values corresponding to a measurement value entered into them. I'd like to be able to add a mouse click event to these form fields that would allow the inspector to have a red outlined transparent circle around any values that exceed the tolerance specification for the value being entered. Can anyone help with this?Thanks in advance
Hi,I have been trying to extract certain set of tables that contain the transactions and the portfolio value in my monthly Portfolio statements. I tried to convert the entire PDF document with export feature in acrobat dc, but the problem i faced was that it converted the document in a very terrible formatting which is gonna take more time if i was to use it. Right now i have to manually copy data from this PDF statements and there are hundreds of them.Can someone please tell me if there is a way without using any third party software, i can extract only these tables from these statements.Statement details are as follows:1. It has tables with the names of 'Account Holding','Account Activity Details', 'Account Summary','Product Summary', 'Income Summary','Realized Gain/Loss Summary'. Underneath these tables are the relevant data in accordance with the headings.2. There are text like dates , such as 'April 1, 2015 - April 30, 2015' and on the top left and likewise on the top right the 'A
As part of a FrameMaker based publishing system that takes XML files then outputs PDF and optionally Word files, we have to improve the quality of the Word output. The previous process used FrameMaker's RTF output, but the results were not good enough without significant post processing. In an attempt to give the customer what they need I found that Acrobat's PDF output was good enough, so all we need to do is automate the process.My developer created a folder level JavaScript that converts the PDF file which almost does what we need. However it does give an error dialog which may or may not prevent the export of the Word document. Here is the JavaScript:/** * trustedPrint function: Exercise the print function in the privileged context * * @param doc The Doc object of the target document * @param pparam The PrintParams object containing print settings */trustedSave = app.trustedFunction(function(input) {app.beginPriv();try{var rs = util.readFileIntoStream(input);var path = util.string
Hi thereI have a strange behaviour with word finding.I want the word finder to ignore spaces betwween letters, along with punctuation marks.On some texts it does, and I get a whole 'sentence' like :"list of authorized codes"On some constructs it doesn't work and returns indiidual words.Example: "A/CODE 134 FAILS" returns as separate words. I can try to reconstruct, but it's a lot of work.I have played with the character types table, with some sucess, but incomplete.Any clue? If I use PDFEdit (and how),,will II have a better result?ThanksChristian
I currently use the stamp below. I need the date in the middle to always be editable or it could be Todays Date. This is a hand stamp I cropped and made into a custom stamp.
I've built a custom dialog that's rendering fine. I emulated some code I found here in the forum, but I'm getting the following error:TypeError: this.getElementById is not a functionPresumably I need to replace the "this.getElementById" with some other mechanism to return the value of the radio button selected.Here's the code as it currently stands:var oDlg ={ description: { name: "Save document to which folder?", elements: [ { type: "cluster", name: "Choose a folder", elements: [ //{ &
I have some code in Access 2010 VBA that reads records and creates a single PDF from multiple linked PDF's with bookmarks. This code works fine:<<<< CODE begin >>>>>Private Sub BuildDatabook_Click()On Error GoTo Err_BuildDatabook_Click Dim sqlStr As String Dim rst As DAO.Recordset Dim vFiles() As String Dim iNrOfFiles As Long Dim iNrOfIncorrectFiles As Long Dim sPDFFileName As String Dim sPDFBookMark As String Dim sNewPDFFileName As String sNewPDFFileName = "\\sample\" & Me.Order_Id & "\Data_Book\10000_" & Format(Now(), "YYYYMMDDhhnn") & ".pdf" iNrOfFiles = 0 iNrOfIncorrectFiles = 0 sqlStr = "SELECT * FROM TABLE WHERE Order_ID = '10000'" Set rst = CurrentDb.OpenRecordset(sqlStr, dbOpenDynaset, dbSeeChanges) Do While Not rst.EOF sPDFFileName =
I need a adobe acrobat javascript for text not be start with hyphen.
Hi, I have a document with 120 similar text fields + 20 dropdowns. There is mainly two simple action Javascript + 1 format script per field. I have a button to reset all fields and it takes up to 20 seconds on a regular performing computer. The action scripts weren't absolutely essential so I've tested the document without them, but nothing changed in the time it took to reset. Also, when I open the document, it takes quite a while for all the fields to appear. What are the reasons that can make a document so very slow? Do I have too many fields? Are there other reasons that maybe I could correct? Thank you. I have Adobe Acrobat Pro DC.
I am using JavaScript to Identify whether or not a field is filled or empty. Depending on the results, It will assign variable to fill in the rest of the form. I cant seem to figure out what I am doing wrong. I have tried .isNull , .rawvalue, etc..... Any help would be appreciated.This is what I have so far.// Automatically Populates the Team Technician to the rest of the document once the field is populated on the Mileage Sheet and sets variables to predefined values;var team = this.getField("Team").value;var lead1 = this.getField("Lead1").value;var team1 = this.getField("Team1").value;event.value = "";if ((team.value !== null || team.value !== "")&&(lead1.value==null || lead1.value=="")){ event.value=team;}else if ((team.value == null || team.value == "")&&(lead1.value!==null || lead1.value!=="")){  
I am trying to figure how to print a measurement total to the console. I am currently using the measurement tool to make various measurements. For exmaple I have 3 measurements with markuplabelA and 2 measurements with markuplabelT. I am wondering if there is a way to print combined totals from markuplabelA to console
Hi,How can I make the fill color of the following field blue? I tried "fillcolor: color.blue" but it did not work. { type: "static_text", &nbs
Hi,So I have a field called "striInitDocNum" defaulted to 1 as shown below:global.DocNumAction ={strInitDocNum:"1"}The code then inserts a space before this default value:var dlgInit ={"DNum": " " + this.strInitDocNum}However, the user may remove this space in the form if they want to set to a different value from 1 to 2, for example: toHow can I make it so if the user decides to enter a different value than the default, the space in the field is maintained such they cannot delete it? This matters b/c the preview field (not shown) ends up also having a removed space and then it shows as "Exhibit2" instead of "Exhibit 2"Thanks.S
Hello at work I use the measurement tool quite often and was wondering if there is a way I can create something that will return the a totals of multiple measurements in the PDF. Any info is much appreciated. Thank you
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.