『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the power of Acrobat SDK through our community.
新着順
I am making a form in LCD ES2........ somehow i am stuck at a point.I have a form in which i need another pdf form to be embedded / attached so that when the user click certain checkbox / radio then he has to filled the embedded form..........i.e. if he chooses the desired radio button /check box he should be able to click the embedded form which will open it and he can fill embedded form and it should automatically saved in the first form.......Is this possible.............Note : I don't want user to upload form...... i want me while making the form in LCD embed or attach the second form in the first form so that user can access. it...Thanks in advance.
I'm very, very new to JS: I want 2 fields in a PDF (Calc B & C) to auto-populate with calculated data based on another (Input A), or remain blank if there isn't any value.My problem:Input A = 10Calc B = ((("Input A" * 1000)^(2/3))*10.1)/10000Calc C = ((("Input A")^0.75) * 70) + 30I've tried so many combinations of calculations and it either doesn't do anything or give me any number of syntax errorsI though that the entire field entered as:((Math.pow(this.getField("Input A").value*1000, (2/3)))*10.1)/10000would work but it doesn't do anything! Please help! Is there a way to create an empty "Calc B" if "Input A" is empty?Thanks in advance!
I want to create a PDCollection.In sdk 9.0 i use as fallow PDDoc newDoc = PDDocCreate();PDCollection pdCollect = PDDocCreatePDCollection(newDoc);...it's okbut when i use sdk > 9.0PDDocCreatePDCollection will return error.it's come an error : error Parameters
Hello,I am making a form in Adobe Acrobat Pro in which i want to reset a Text Field to value 1 whenever the Date is changed.I have two Text Field : Text1 = Date field this field auto-populates the current date when the file is openedText2 - this field has to be reset to "1" every time the date is changed.Like if the form is opened today eg. 23/09/2017 ... i can enter any number in Text2 and save it................. but if the file is opened next day..... Text2 should be reset to 1 then on 24/09/2017 i can enter any number in text2 and save it..... but when again on 25/09/2017 if i open the file text 2 should be reset to "1".Thanks in advance.
So I am making a relatively simple form with multiple fields, and one of those fields is an image field. It works perfectly on my Windows setup where I'm building the report. When I send it to my iPad, everything works except for the image field. I've tried changing the type of input (Mouse Up, Mouse Down, Focus), but it doesn't seem to matter. I've also opened the PDF in the mail viewer, adobe fill and sign, and adobe reader, but still it doesn't work. The specific reaction to tapping on the field is nothing except for in adobe reader, where it at least highlights the field, but never prompts to input an image or file.I'm beginning to think that this functionality doesn't work in iPads due to the buttons using JavaScript. Can someone help me figure this out?
I'm using Adobe Acrobat Pro DC. I have four fields [amIN0, amOUT0, pmIN0, and pmOUT0] that will auto-populate the Hours Worked field.My times are formatted to h:MM tt. I need the HoursWorked results to display 7 hours and 30 minutes as 7.50 NOT 7.30 And 8 hours and 30 minutes should display as 8.50 NOT 8.70I'm using a simplified notation (amOUT0-amIN0)+(pmOUT0-pmIN0). Please help. Thank you.
On page 1 I have an address box... City, Province, Postal code, street addressOn page 2, if user checks box, the fields from Page 1 populate the address box on page 2I put this JS in the MouseUp of the checkboxWhen I check the box, in the fields on Page 1, the field text is replaced with [object Field]I found this on this forum, Checkbox is named sameaddress. The fields with the 2 are the fields on Page to, to get the text from Page1if (getField("sameaddress").value!="Off")this.getField("StreetAddress").value = this.getField("StreetAddress2");this.getField("City").value = this.getField("City2");this.getField("Province").value = this.getField("Province2");this.getField("PostalCode").value = this.getField("PostalCode2");
I am creating a PDF Form in Acrobat Pro DC. I have a list of over 40 items that I want in a drop down list that, when chosen, causes specific fields to appear or disappear. I am already using the code shown below, but the validation section of the drop down properties states that my validation code is too long and cuts me off at just over 1100 lines. Here are the questions that I can't find an answer to:Is there a better way to: 1. create the drop down or 2. create the validation or 3. use a better form field option so that I can have this many items but still have it work in the file? Everything must be part of the PDF file itself with no outside data source. Maybe I'm just dreaming.Here is what I've been using and it works great, but takes up too many lines of code once all 40 items are entered.if (event.value == "Judge") { this.getField("Murray").display = display.hidden; this.getField("Hunn").displ
I'm fooling around with document-level actions and can't seem to get it working. Below is my code:var didSave = function(){ console.println("saved!");};this.setAction("DidSave", didSave);This is the error that I get in the console:TypeError: this.setAction is not a function47:Folder-Level:App:will_save.jsUsing Acrobat X Standard. Any help you can provide is appreciated!
Out of utter frustration and exhaustion, I'm posting an open ended question, hoping to get in touch with someone from adobe to further discuss this issue.I've been tasked with supporting a legacy application that uses Winforms to host an Acrobat 5 fillable form. We have hundreds of pdf fillable forms with javascript logic, emphasis on *hundreds*, therefore we are heavily invested in Adobe. (However, if we can not find a satisfactory solution to our issues we will be moving away from the Adobe platform).The application basically presents the user with a fillable pdf, the user can fill out the pdf and save the results. Very straight forward. However, I'm finding it exceedingly difficult to upgrade and support our code to use the newer versions of Adobe and newer ways of saving the user choices. We are tired of wasting hours and hours pouring through Adobe's voluminous documentation, that never really gets to the point nor provides answers to basic developers quest
Ok, I've been searching for 3 days on this answer, but everytime I change something I break my form again.I have 4 text boxes:Two with Currency variables. In the 3rd box, they need to subtract in.In the 4th box, it needs to display Over/Short/BalancedI've got the form working with just that information. My problem is that if the first two boxes are blank, the other two need to be blank. Or in otherwords, if a calculation hasn't taken place, Box 3 & 4 need to remain blank till Box 1 & 2 are populated.In Box 3 for the Calculation Script, I've got this:event.value = ( this.getField("Actual_Cash_in_TCR").value - this.getField("TCR_Reported_Totals").value );In Box 4 for the Calculation Script, I've got this:var n = this.getField("Amount").value;if( n > 0) event.value = "Over";else if ( n < 0) event.value = "Short";else event.value = "Balanced";Where am I messing up, what needs to be added and where?Adobe Acrobat Pro DC 2015.006.30355 for Windows.
Hello,I am trying to add a script to prompt a user for 3 pieces of information. This information will change for every user that wishes to open and print the document. I also need to apply this to numerous (currently about 2,000) documents, and that number will increase as our engineers generate new blueprints. I know 2,000 is a lot to process at once, but if I could batch this into groups of 100 or so that would still make things much easier than doing a single document at a time. I am unable to download any third-party software to accomplish this so I am looking for a solution within Acrobat Pro XI. I have created an action with the action wizard that uses document javascript, then saves the newly watermarked file to the local user computer. I have tried performing this as a batch with multiple files, but I am require to re-enter the script with each document.Is there a way to do this and apply it to multiple files only having to copy and past the
Hi All,Good Day. I need to make 4 page document into 2 page like below. The width will be twice before moving the page 4 into 1Source Final The below coding Is I wrote for Indesign.var myDoc=app.documents[0];var mywidth=myDoc.documentPreferences.pageWidth;var myheight=myDoc.documentPreferences.pageHeight;var myX = (myDoc.pages[0].bounds[3] - myDoc.pages[0].bounds[1] ); var myY = (myDoc.pages[1].bounds[3] - myDoc.pages[1].bounds[1] ); myDoc.documentPreferences.pageWidth=mywidth*2;myDoc.viewPreferences.rulerOrigin = RulerOrigin.PAGE_ORIGIN; app.activeWindow.transformReferencePoint = AnchorPoint.TOP_LEFT_ANCHOR;myDoc.pages[1].pageItems.everyItem().move(myDoc.pages[1], [-myX,0]); myDoc.pages[2].pageItems.everyItem().duplicate(myDoc.pages[1], [0,0]); myDoc.pages[3].pageItems.everyItem().duplicate(myDoc.pages[0], [-myX,0]);&nb
helloI am an educator who is engaged in the online tutorial industry have some ideas to carry out but I wonder that if it is possible or not..I want to build a online e-book platform that can achieve the following purpose by any Acrobat technologies or features : 1.a website that offers the member registration, then they can access the PDF e-book content, using the online reader to display the e-book.2.by using the online reader to display the ebook, they can use PC connected to the projector to lecturing the e-book content on site to audience.3.in the mean time of lecturing to audience, they can make annotation on PDF e-book to show the underlying point of the content. (just like the scene of Acrobat Reader DC annotation tools )4.the most important thing is that the online annotation can be saved in member personal history for the next time he open the same PDF e-book again then he can see the annotations he made for the next lecturing scene.I do not know any programming language but
Hello, I have created a fillable form that requires digital signatures before saving. I'd like to use a JavaScript, through a submit button, to save the completed form to a specific drive location and include the current date in the file name. This would help prevent users from saving over the existing form, as well as, identify the form submissions with in the drive location. Any help with the script would be most welcome. Thanks!!
Hello everyone,im new to using JavaScript and could really need some help. I´ve created a form in Adobe pro and what i want is the following: If field "Comment1" contains any text user is enforced to pick a choice from drop down menu "R1" and "L1". Is it best to use validation script for this? Or calculation script? I got over 100 rows that i want the same function in, they are named: Comment1, R1, L1; Comment2, R2, L2; Comment3, R3, L3; And so on.. I hope this post makes some sense,Thanks in advance, Adrian
need help
We downloaded the sdk and we've installed Acrobat DC Professional.We looked at the IAC FillFormCS example project in this folder: sdkDC_v1_win\Adobe\Acrobat DC SDK\Version 1\InterAppCommunicationSupport\C#Samples\FillFormCSFillFormCS references these two .dlls:We removed the references to the two Interop.xxx.dlls and tried to re-add them but they are no where to be found (as you can see in this screen shot):So, where are the .dlls to make the SDK examples work?
How do I convert PDF document to XML using acrobat SDKPlease provide any links in this regard Remove header/footer from pdf, PDF’s are not tagged pdf and header footer size is also not fixed across multiple documents. Remove Table of content from PDF.
I am looking to expand on another calculation script I am using for counting check boxes.My PDF Document has a series of questions with which a "Yes" "No" or "N/A" option can be checked. The check boxes are named in the following format:Yes.Q1, Yes.Q2, Yes.Q3...No.Q1, No.Q2, No.Q3...Na.Q1, Na.Q2, Na.Q3...This is what I am using in order to count "Yes" answers on the checklist in a field below:var nSum = 0;var aCkFlds = this.getField("Yes").getArray();for(var i=0;i<aCkFlds.length;i++){if(aCkFlds.isBoxChecked(0))nSum++;}event.value = nSum;This works great for that. I want to expand the script for another field in which it will add the "Yes" and "No" in order to get a count of all "Applicable Items" in the checklist.Any assistance would be appreciated.
Hello,My PDF is passed accessibility through Acrobat but when running it through PAC I have stumbled across an issue I can not resolve been doing extensive research but can not the error is..."f or uf key missing in file specification dictionaries"Can anyone tell me how I can resolve this by editing PDF in Acrobat so that it will pass in PAC Checker.Would be great if I could get some help.Thanks everyone!Mike
Is there a way to check a pdf using javascript to see if it has a stamp in it?
I have a dropdown list of various equipment models with a text box beside it that shows the equipment rating. How can I make the equipment rating automatically populate based on the equipment model? The equipment models and their appropriate ratings are listed below.Equipment ModelEquipment Rating (kW)SE3000A-US (240V)3.00SE3800A-US (240V)3.80SE5000A-US (240V)5.00SE6000A-US (240V)6.00SE7600A-US (240V)7.60SE10000A-US (240V)10.00SE11400A-US (240V)11.40
So I have a form that I want to count the number of times a value has been checked with a value greater then 1. For example:So I have a calculation to add the values for total number of SEVERITY. Create values for the checkboxes. Now I need a formula or script for the number of symptoms that above a 0 for Vestibular Symptom NUMBER.Any thoughts??I also have another list off 22 that I will need to create something similar.ThanksJason
Before, I had installed Acrobat professional 9.0, and in the console window I saw messages of built-in start script and, of course, some error if it occurred, but now I have installed Acrobat Pro 2017, and in the console window doesn't appear anything message or error. I have select, in Javascript preference, the next options:- Enable Acrobat JavaScript, Enable JavaScript debugger after Acrobat is restarted, "Show consoles on errors and messages",
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.