『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the power of Acrobat SDK through our community.
新着順
The general idea of the project is to manage to make one little change and after that the document not seen as modifyed when you go to file/properties/description. I try exporting it in word or powerpoint and after i cnvert i as pdf..Then is not seen as modified but the creator and application is deifferent. THis pdf is made with oracle aplication IT tool and if you use word this is going to change,,,,if you copy the pdf whole bcause everything is the same is being modifiyed...I 'm willing to pay 300 euros if you can get the job done. Thnak you very much for your time! 🙂
We have a questionaire that's a form built on Acrobat. We want to be able to score the document based on answers on that form, or check marks in a box. So, when client answers on questions 1,2,3..10, if A on question one, award 5 points, C on questions 2, 4 points, and so on. How would we go about doing that? Even if someone can point me in the right direction to learn myself, I would greatly appreciate it.
Could someone please explain to me how to make a conditional drop down on a PDF form? For example if I have more than one categories like Fruit, Vegetables and then I would like the subsequent field to only show the options that fall within the previous fields options like Apple, Banana, Pear, Pineapple if you choose Fruit and Celery, Carrot, Beet, Pea if you choose Vegetable. Is this possible?
I have a number of OFT files that I want to embed into a PDF file. I want the user of the PDF file to be able to select the appropriate OFT file and open it. The OFT file then automatically populates a email in Outlook.Thanks for your help!Jim Momsen, CPT
I have looked but have not found this question and I am quite stumped. I am creating a form that provides a summary of our services and costs. If a client requests that our documents be sent via overnight delivery, we add an $8.00 handling fee. On our form, we show the cost of overnight shipping. Next to that entry, the form says "+ $8.00" The box next to that is what I am concerned with. I need an expression to make it show $0 when there is no request to send docs via overnight delivery, but when overnight delivery is requested, for it to show the sum of the cost of overnight delivery, plus 8 bucks. HELP!
El adobe x pro puede crear formularios pdf que una vez creado pueda insertar una foto? Necesito crear un pdf donde el usuario rellene el formulario creado y dejar un recuadro que cuando lo pinche se le abra el explorador de archivos y pueda subir su foto y esta se adjunte al pdf de manera visible y que funcione en varias plataformas pc, android, ...
Hello guys, I've been tryin to use the code of Karl Heinz to replace pages between two PDFs using excel. Unfortunately, it doesn't work. All it does on my system is save the first pdf under a different name without having exchanges any pages.Here is the code: Sub Button1_Click() Dim AcroApp As Acrobat.CAcroApp Dim Part1Document As Acrobat.CAcroPDDoc Dim Part2Document As Acrobat.CAcroPDDoc Dim numPages As Integer Set AcroApp = CreateObject("AcroExch.App") Set Part1Document = CreateObject("AcroExch.PDDoc") Set Part2Document = CreateObject("AcroExch.PDDoc") Doc1.Open ("C:\temp\Part1.pdf") Doc2.Open ("C:\temp\Part2.pdf") ' Insert the pages of Part2 after the end of Part1 numPages = Doc1.GetNumPages() If Doc1.InsertPages(numPages 3, Doc2, 0, Doc2.GetNumPages(), True) = False Then MsgBox "Cannot insert pages" End If If Doc1.Save(PDSaveFull, "C:\temp\MergedFile.pdf") = False Then MsgBox "Cannot save t
I don't know why, but the question I wrote earlier has been treated as spam. I will shorten the question text and post it again. When saving with FDF, I want to save with a file name that is a concatenation of some field names in the form and the save date and time. First, I tried writing the following code in a text field. The file name as expected is displayed. var Pink = this.getField("PINK"); var Blue = this.getField("BLUE"); var FNAME = util.printd("yyyymmdd-HHMM-",new Date())+Pink.value+"-"+Blue.value+".fdf"; event.value = FNAME; And then I created a button and created the following code. I deleted the last line above and added the following. I don't want to be treated as spam again, so I'll just list only one. I'm actually trying out more code. But those was all a failure. Because I want to let the user choose where to save the file, the save window must be opened. this.exportAsFDF({cPath:cPath + FNAME}); Act
The question is the same as the subject. Is it possible to hide or show certain pages according to certain conditions ? Of course using JavaScript.
I routinely combine several PDF documents into a single PDF. During the combine process, bookmarks are created, however the zoom levels apparently vary according to the source documents. I have the default set to FitPage, however this does not seem to filter down to the bookmark when combining the PDF. I also use an Action created under the Action Wizard to perform some other modification to the combined file including a java script to change the bookmark, however, when I run the java script for the bookmarks, it only changes the first one.Java script: [this.zoomType=zoomtype.fitP;]Is there a way to select all of the bookmarks to set the zoom level?
Greeting All, I'm currently trying to create a print button using JavaScript that prints out pages given the page numbers in a field value. Example:Field Value: "6, 7, 15, 30, 32, ..." - This field value changes based on the user answers in previous fields. Print button prints pages 6, 7, 15, 30, 32, ... Currently copying the field, to the print dialogue box manually, but wondering if there there was way to do all this in 1 button. Any advice is greatly appreciated.
I am often working with multiple PDFs open at a time. If I work on one, leave it open and unsaved, and open another PDF I get an error window that says 'Adobe Acrobat has recovered one or more documents that were not saved properly before Acrobat was shut down. Click Yes to open the recovered documents. If you click No, your changes will be lost.' The files are still open. Acrobat didn't recover anything, as far as I know. Acrobat was not shut down, the files are still open and in no danger of being lost. This error window is annoying and pointless. Can I please, please, PLEASE, PLEASE, PLEASE turn this error off somehow?
Hi Team,I have just joined to Adobe community. I have one small business case and i need community help to sove it.We have 5 invoices in 5 different PDF. and one covering letter of invoice in other pdf file.Invoices PDF file namesA.pdfB.pdfC.pdfD.pdfE.pdfCovering letter pdf file name - Z.pdfSo, we need to add the covering letter in all 5 invoices in one GO. (Insert/combine)Output file would be like as below.A+Z.pdfB+Z.pdfC+Z.pdfD+Z.pdfE+Z.pdf ThanksRajesh Arya
A simple question. Is there a method to copy the value of a field to the clipboard?
Does writing all the code in each field, or writing a document-level function and writing it, change the overall processing speed of the document? Does (1) and (2) below change the overall document processing speed? For example, suppose there are about 20 fields that use the same calculation. And suppose it's a bit longer code. (1) Write the same code in all fields.(2) Write a document level function and use it. Obviously, (2) is the safest and easiest way to write code. Is there any difference between (1) and (2) above? Of particular interest is how PDF JavaScript uses memory. I've heard that generally global functions use a lot of memory, so it's better not to use too much.
Issue: The document cloud SDK for viewing PDF files doesn't seem to work in Internet Explorer 11 and Brave browser. Link: https://t.co/cENwldMAqLI am not sure if this is an issue with the SDK itself or if it's the issue with the browsers in question.Request some Adobe expert to assist me on this. I'd really appreciate it. Thanks
I am trying to create a set of flashcards to take a user to a random question and then another button to take the user to the answer. I have a PDF document with alternating questions and answers, about 400 pages in total. Any help would be appreciated.
I've found and tried some similar questions in this forum and they just don't work. I think it's because I don't understand correctly. When saving with FDF, I want to save with a file name that is a concatenation of some field names in the form and the save date and time. First, I tried writing the following code in a text field. The file name as expected is displayed. var Pink = this.getField("PINK"); var Blue = this.getField("BLUE"); var FNAME = util.printd("yyyymmdd-HHMM-",new Date())+Pink.value+"-"+Blue.value+".fdf"; event.value = FNAME; And then I created a button and created the following code. I deleted the last line above and added the following. Some are listed below, but all are actually just one line of code. I'm actually trying out more code. But those was all a failure. Because I want to let the user choose where to save the file, the save window must be opened. this.exportAsFDF({cPath:cPath + FNAME}); this.exportAsFDF({cP
At the start, the fields on the below screenshot are all hidden apart from the Term box.The script below sits in the custom validation field of the term box and adds ticks and makes visible certain fields if a term of under 2 is entered. It does differenet tick boxes etc if a term of 2 or over is entered. There is also a mouse up action that ticks all boxes if C is ticked. This all works perfectly.....What I would like to do, but for the life of me cannot work out what I need to add, is for all the fields (except the term box) to reset to hidden if the term box is either blank or someone types 0. if ( !this.getField("checkbox_c").isBoxChecked(0)) {if ( event.value < 2) {this.getField("checkbox_a").checkThisBox(0, false);this.getField("checkbox_b").checkThisBox(0, true);this.getField("checkbox_c").checkThisBox(0, false);this.getField("checkbox_a").display = display.hidden;this.getField("checkbox_c").display = display.hidden;this.getField("SubsPerMth").display = display.hidden;th
I am using Acrobat Pro DC. I would like to create custom stamps based on a stamp we have to use in the shop. The stamp requires a live signature and date. Is it possible to create a custom dynamic stamp that would load an image of a persons signature with the current date?Thanks
Hello everyone I am trying to add a button to a toolbar using plugins and I want it to have a custom icon.I found in the SDK the following code snippet: //Declare an AVToolButton objectAVToolButton MyButton = NULL; //Create an AVIcon objectAVIcon myIcon = (AVCursor)LoadBitmap(gHINSTANCE, MAKEINTRESOURCE(IDB_BITMAP1)); //Create a new buttonMyButton = AVToolButtonNew(ASAtomFromString("MyExtn:MyButton"), myIcon, false, false); When I try using this in visual studio, it shows me the error "identifier gHINSTANCE is undefined"I have included the "PIMain.c" file as well , and as the SDK says that gHINSTANCE is an instance of object HINSTANCE, I can also see this object declaration in PIMain.c file. Can anyone suggest what could be going wrong here?Thanks
Dear Adobe support Team..I have been trying to create Javascript TimeSheet calculation and I know this must have been possibly asked but I am having two issues1. Every time I click on the cell it pops up saying : "The value enetred does not match the format of the field[Wk1_Thurs_HoursWorked]" .2. I can not able to perfreom the subtraction of HRS Worked - Breaks (they are in decimal format).I really appreciate this help as this is urgently needed for an hospital system.
Hi,I'm very new to working with forms and javascript so please bear with me. I've got two dropdown lists with export values used for simple calculation. (i.e.: event.target.value = this.getField("12Round").value; in a separate text box)Both of the dropdown lists have three options: None, One, and Two with export values of 0, 2, and 4 respectively. The issue I have is that both are dependent on the other.Example: Take a box with two lids that can have two different sets of openings; Round or Square. When the dropdown choice comes up, the quantity outputs for each field work fine, however (2) of each dropdown can't be chosen. Conditions that work are: (1) of either type, (2) of one type, or (1) of each. Is there a way to have the dropdown box selections (freeze/ change colour?) as soon as the maximum is reached between both of them? Thanks!!
Hallo Community,wer kann mir helfen?Ich habe eine Dropdown-Liste (Name: Drop1) mit den Optionen:Auswahl1 (Exportwert=1)Auswahl2 (Exportwert=2)Auswahl3 (Exportwert=3)und eine Textbox (Name: Text1).Bei den Eigenschaften der Dropdown-Liste habe ich unter Format ein benutzerdefiniertes Formatierungsskript eingefügt: if (this.getField("Drop1").value==1){this.getField("Text2").value = "Bla"}if (this.getField("Drop1").value==2){this.getField("Text2").value = "Blub"}if (this.getField("Drop1").value==3){this.getField("Text2").value = "Bling"} Dieses Skript bewirkt, dass je nach Auswahl aus der Dropdown-Liste ein entsprechender Wert in der Textbox angezeigt wird:Funktioniert einwandfrei.Jetzt möchte ich die Textbox gegen eine weitere Dropdown-Liste (Name: Drop2) ersetzen, die je nach Auswahl aus Drop1 2 Optionen zur Auswahl anzeigt: Wie muss der Code aussehen und wo muss er eingefügt werden (bei Drop1 oder Drop2? Als benutzerdefiniertes Formatierungsskript oder als ben
Hello everybody,I created a form from an Excel sheet. Acrobat has badly named many fields. I don't want to rename them all by hand. Instead I want to "read" the original fields, create a new one with a different name in the same position and then delete the old one.I would like to test this in 12 fields (there is one on each of the 12 pages of the form). When creating the form, they were named as follows: Name / Name_2 / Name_3 / ... / Name_12.To do this, I tried the following code in the console: for(var i = 0; i < this.numFields; i++){ var fName = this.getNthFieldName(i); if(fName.indexOf("Name") !== -1){ var f = this.getField(fName); var fCoords = []; var fPage = (f.page + 1); fCoords = f.rect; this.addField(("Name." + fPage), "text", f.page, fCoords); this.removeField(f.name); fCoords.length = 0; } } It works as it should on 10 pages.Only on page 1 (.page 0 / .name: "Name") and on page 10 (.page 9 / .name: "Name_10") not. On page 1, the field is on
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.