『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the power of Acrobat SDK through our community.
新着順
How do I get a total number of check boxes? They are named:Check Box 1.0 - 1.9Check Box 2.0 - 2.9Check Box 3.0 - 3.9Check Box 4.0 - 4.9Check Box 5.0 - 5.9
I have a form i hand out to participants in our event, this form has a unique id field that is increasingly changing to identify a particular participant with their form number, i print this form regularly, instead of manually inputting the numbers each time before printing them, i need a way i can send the form to print, and it will automatically change the serial numbers (incrementally) per print directly from my acrobat form. Any idea how I can do this? Thanks!
Export a PDF to jpg in command line? any documents or url or video for that? please help. Thank you
EDIT: Nevermind. I got the PretonSaver app to work how I need it to. This issue is resolved. I'm using an Acrobat plugin called AutoMailMerge from Evermap to merge Excel data into PDFs and print them. The plugin developer says it calls a generic black box print command from the plugin and that the plugin has no control over print settings, yet when I try to run actions created with his plugin not all the settings stay the same as my last used print settings. In particular the "save ink/toner" feature is unchecked when running actions with his plugin, but if I manually print something with it on then run a generic print action from Acrobat the save ink/toner feature stays on. It seems to me this is a problem with his plugin, but he is insisting it is not.I tried buying a program called PretonSaver, which is an ink/toner saving program that sits between the printer que and the print dialog box from Acrobat (or whatever program you are printing from). You basically tell it what amoun
Designing a program to slim down paperwork.Dynamically creating a form to select which paperwork to combine.FROM FOLDER LEVEL SCRIPT:function addGenerateButton() { var g = myDoc.addField("Generate", ....); g.setAction("MouseUp", "myButtonAction();"); } function myButtonAction() { .... }How do I do this? Should I do this? Is there a better way to do this?
This is a very basic question about PDF form specifications. I discovered one feature.It is for making multiple copies of a field. It can use to create multiple vertical and horizontal fields.If I use it the new field name will be appended with ".1". For example, if I copy 3 fields "A",the original field name will became to "A.0" and new fields name became "A.1" and "A.2". Is this only just a way to distinguish field names?Or is there another reason? Because this looks like a sort of array.
I would need to put raw chemistry formulas in dropdown lists or values in scientific notation, it is therefore necessary for these two notations to access the superscript and subscript notations. CH4 is not CH4 and even worse when writing 1.7.103 and 1.7.103! Are there escape characters or encodings for the items in the dropdown fields? Thank you.
I don't know how to judge when the value of the field is Infinity.Is isFinite cannot be used ?If not, how can I determine it?
I'm struggling to work out a simple script to calculate the total cost after a specific number of units are added, but remain at base cost for the first 3 units. For instance:Cost of 1st Unit = $475 (Base cost.)Cost of 1st Unit + 2 Additional Units (Total of 3 Units) = $475 (Same cost as base cost.)Cost of 1st Unit + 3 Additional Units (Total of 4 Units) = $525Cost of 1st Unit + 4 Additional Units (Total of 5 Units) = $575etc. The Excel formula that gives this result is: =475+MAX(0,4-3)*50 Of course, that works in Excel, but not Acrobat. The JavaScript code I've attempted is: var ffcondo = Number(this.getField("FFCondo").value); var pgcountcondo = Number(this.getField("PGcountCondo").value); if (pgcountcondo == "") event.value = ""; else event.value = (ffcondo+(pgcountcondo-3)*50) <= 475 ? 475 : (ffcondo+(pgcountcondo-3)*50); Unfortunately, the results I get with that JavaScript code are unreliable. Sometimes the result is correct; more often
I have 100's of pdf each having different client name on the 2nd line of the pdf. I want to be able to rename the file name with that client's name. is there a javascript I can execute in action wizard or any simple way out? Thanks in advance.
I am trying to develop a plugin with same functionality on both windows and Mac. We have already integration key we got from adobe for windows , can i reuse it for Mac. Thanks
Hello I am setting these checkboxes programmatically in Excel and on first pass they are set. However when I reopen the document after saving they are not set. I was wondering is there a way to set them and keep them set the way I programmed them to be. Code adapted from:https://myengineeringworld.net/2013/10/read-and-write-pdf-forms-from-excel-vba.html 'All checkboxes to checkedobjJSO.GetField(strFieldNames(22)).Value = 1objJSO.GetField(strFieldNames(23)).Value = 1objJSO.GetField(strFieldNames(24)).Value = 1objJSO.GetField(strFieldNames(25)).Value = 1objJSO.GetField(strFieldNames(26)).Value = 1objJSO.GetField(strFieldNames(27)).Value = 1objJSO.GetField(strFieldNames(28)).Value = 1objJSO.GetField(strFieldNames(52)).Value = 1
Perhaps this is a basic question about an array. And I'm sorry, this is a question to all that how to write code as an answer. I have no experience writing code for arrays. I have read various descriptions about arrays, but I am not sure how to realize it with PDF in front of me. ==== I would like to know the following cases.The First PDF file has fields with the following contents. This is a list of equipment maintenance replacement parts.Parts to be replaced are lined up at regular intervals. Actually, there are more items both vertically and horizontally, but it is like this when simplified. There are over 100 pages. From left to right ("Field Name")Time Unit / Cumulative Time / Implementation Date / Part Name / Selling Price "TU1" "CT1" "ID1" "PN1" "SP1" "TU2" "CT2" "ID2"
たまたまクレジットカードが使えなかったので、決済まで進んでませんが、支払いを要求されるポップアップが出ます。現在adobeのヘルプセンターが稼働してないようなので、どなたかご教示頂けますと幸いです。
I just got my fingers on javascript and my first step was to create my own form by adapting the example file in this tutorial:https://acrobatusers.com/tutorials/js_list_combo_livecycle/index.html#In the example the masterlist contains three information: assembly, parts and price.The partslist in the second dropdown depends on the assembly selection in a first dropdown. The Price shown depends on the selection in the second dropdown.What I'm struggling with is that I need a fourth information, lets call it "color", in the masterlist.How do I have to extend the masterlist or is the idea tottaly wrong? Just adding the additional infromation in brackets obviously doesn't work at all.example from the tutorial:var oAssemblyParts = { Chasis: [ ["-","None"],["Rear Bracket",205.95],A hint in which direction to work would be great. Thank you all.
Hi All, The Javascript inside my submit button will be posting a http url. But we have firewall rules in the webserver that would redirect this url to an IDP's url which is https for user authentication. Currently I do not get any response back and the submit button just hangs. Do we have any workaround for this?Thanks,Sailesh.
Dear Forum,How can I know the template reference from which a page has been spawned ?Is there a page status available that can be used with javaScript ? Use case1) I spawned a page from "Template_01", and this new page it the page number 102) I would like to determine, starting with the page 10, that this page comes from the Template_01 Thank your in advance.
I am trying to create an online form that once you click the submit field the information entered to the form on the PDF is locked or not editable once it is emailed to the person to receive it.
Hi,Can I made guides in acrobat whit javascript?
Hey everyone, I am most certain this is a simple if statement, but since my java knowledge is pretty outdated, I need some help. I am creating an interactive pdf and I need to validate the form. I am using dropdown menus for the most part and I need a script to check to see if the default selection is still present. If so, I need a prompt to highlight the dropdown menu that still has the default value present. Can anyone help?Thanks!- G
Hi,I am working on an Acrobat Plugin using the C++ SDK for Windows.I've implemented a toolbar as part of the plugin. Part of the plugin actions is compute and time intensive. The compute intensive task is now part of a background thread, however, I cannot interact with the document while the toolbar is active. I believe this is because the right and left click action of Adobe are associate with the DoClickProcType callback My question is the following:Is there a way to release the right and left click to the default tool so that the user can interact with the document using the usual tools (select, pan,. etc...) while my plugin does background work? Things that I have tried but didn't work:Registered the plugin window application using WinAppRegisterModelessDisable my plugin, and its toolbar and set the default tool using AVAppSetActiveTool(AVAppGetDefaultTool(), true). This seems to return the select tool (the arrow icon is highlighted in the toolbar area, but I can't right
HiI am updating a .NET MVC C# Web application for a client.The requirement is to allow customers to upload a PDF which we will securely store on AWS and then get the word count and character count for that PDF for later processing (language would be a nice addition).I have looked at Acrobat XI SDK but I am unable to run any of the examples because I only have Adobe Reader installed.So my questions are:For this small requirement should my client be looking to purchase an Acrobat license or would a Datalogics product be better?Which Acrobat product would be best?Would an Acrobat license cover the development, UAT, and production environments?
Hi, I need to create a claim form but struggling with the java script to display the correct info.1. The text box must display the amount being paid."Type1" is a drop down menu with 6 selections, how do I add the other 5 options information in the script? This is what I was thinking:If ("Type1" = "PPC") then ("Text8" = "$120")or If ("Type1" = "APT") then ("Text8" = "R950") 2. I need to calculate the total amount for each currency in the 11 text boxes. What would the script be? Thank you in advance for your help!
I have 7 radio buttons groups. PD.Q1 to PD.Q7 Each one is Yes or NoI have two text fields. PDW.Warning1 and PDW.Warning2.Each one is hidden by default. My objective is to show these warning text boxes based on the result of the radio buttons. The intent is that if any of the radio button groups are selected "Yes", then the warning will appear, regardless of its 1, or all 7. If all of the radio buttons are selected "No", then the warnings will remain hidden.I wrote this in the calculations of one of the text boxes, and it works, but it has issues.It shows the hidden warnings, but its a "sequencial" process, meaning when a user checks the first yes, then the second no, it shows, then hides the text boxes.I need the warning to remain after a "Yes", and only hide when all radio buttons are "No". if(!event.source || (event.source.name = "PD")){var nHide=(event.source.value=="Yes")?display.visible:display.hidden;this.getField("PDW").display=nHide;
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! 🙂
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.