『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Hi...i changed some buttons position using (.rect) function, so the buttons is controlled with other buttons to make them go up and down or right and left, are there anyway to restore the original position for the buttons! that was created first time before moving them ? , thanks for help
Is there a way to add a resource by a script? (Not by the UI)It doesn't has to be with javascript!
I'm using the setAction to enter js for specific fields (see example below) I already have On Blur actions that exist for some of these fields that I do not wish to overwrite.... how do I add to an existing On Blur without overwriting?var reqFields = new Array("Text1", "Text2");for (i = 0; i < reqFields.length; i++) { this.getField(reqFields).setAction("OnBlur","test();"); }
I created an editable PDF. The PDF contains an image on which to insert/delete signs "x " or checkmarks. Can you help me?? Thank you.
Hi Great Developers...Actually I Started building form (Acrobat Pro DC) and adding Drop down list and i need to dynamically let the user to add list of emails manually so i insert (Add Button) and (Delete Button) to Add items or delete items to list, for the Adding items Button i wrote the following (my drop down list name is "EmailList" :Add Button JavaScript (not working) :var oFld = this.getField("EmailList");var cEntry = oFld.getItemAt(oFld.currentValueIndices,false);oFld.insertItemAt(cEntry , "s", 0);and for Delete items Button JavaScript (working code) : var f = this.getField("EmailList");f.deleteItemAt(f.currentValueIndices);now the problem is the Add Button JavaScript is not Working! , please help me if it can be done, thanks in advance
Hi,I'm using Adobe acrobate dc.I have three checkboxes in my pdf-document.They are namned: checkbox1, checkbox2 and checkbox3I wish the following to happen:-When checkbox1 is selected, checkbox2 and checkbox3 also become selected.-When checkbox1 is deselected, checkbox2 and checkbox3 also become deselected.I'm more than a beginner to this with javascript, so please keep this in mind whenexplaining or giving me a working javascript.Thanks/Dennis
It appears that although Adobe says that Acrobat is compatible with the new Mac OS High Sierra, there is a growing list of issues when it comes to Acrobat JavaScript. The other day I found that the transparent option for colors is unavailable in the color dialog boxes, and is known to accompany High Sierra upgrades. Today I find that exportAsFDF( ) in various scripts is throwing a GeneralError: Operation failed.The things that I am finding defective are making it very difficult to work on scripts. I tried to work around this by deactivating my Acrobat DC in the Mac environment, and activating it in the Windows-under-Parallels environment, but it seems the same problems persist either way, apparently attributable to High Sierra.I'm on the verge of rolling back to Sierra but hoping for some assurance that there is reason to believe these issues will be resolved quickly. I would appreciate any insight or hope that the experts on this forum might offer on this subject.Thank you.
I require some help writing a javascript for a pdf form. I have a dropdown menu listing all 12 of our Committees. What I would like to do is when someone selects one of the committees from the dropdown menu a code assigned to a specific committee will automatically appear in another text box.Example:they select "Executive Committee" from the dropdown boxthe code for Executive Committee is "561"the code 561 will automatically appear in a separate textbox Could someone provide me with step by step instructions and the javascript I should use?
Hi Team Is there is any option to access create inventory from preflight menus using java script or pluginThanksBala
Hi,I've read an earlier discussion about disabel checkboxes but the discussion was to advanced for a rookie like me,so please, in a very beginner-friendly way, please explain with a javascript how to do the following:(In Adobe Acrobate DC I'm doing a fillabe form.)There are three checkboxes named: checkbox1, checkbox2 and checkbox3.I wish the following to happen:When checkbox1 is checked:then checkbox2 and checkbox3 become disabled (by disabled I mean the checkboxes become not checkable/not clickable) andalso at the same time checkbox2 and checkbox3 become unchecked if they were earlier checked.Thanks/Dennis
Hi,Please i want to know if there a way to inherit field font from another field (in Acrobat Pro DC) .. not just setting the font to the field, because i have full embedded font inside my form in Other language than english (Arabic) and i want the english text field to inherit font from another field (Ar --> En) or Vise Versa, so the statment :this.getField("GenManagerAr").textFontmaybe is not the perfect one to use!, any tips please ? thanks in advance
I have an annual subscription. I tried to convert a 15mb pdf file to excel. Both from Android + Adobe Reader and Windows +10 Chrome. In both cases I keep receiving the message "Conversion failure". I tried Adobe Support Chat. They are able to help and suggested posting the problem here. Can anyone help? Even a cursory search reveals that the problem is pretty common, perennial for many years, and still not solved by Adobe. OCR disabling etc. do not seem to work.
I just purchased a new Brother MFC-J885DW printer, and all the drivers are up to date with that printer, it is brand new and I triple-checked this. My PDFs are printing blank. I checked if there were Adobe updates required, they are up to date. Help!
I just purchased Adobe Export so I can convert a PDF whose contents can't seem to be copied and pasted into Word the old school way. I've tried three times and I get a "Conversion failed" message. Obviously, this is not what I planned to spend 20 euros. Anyone any idea what could be wrong? Surely, if Adobe can only convert documents I could copy and paste myself, this would have been a totally unnecessary investment and I'd feel conned as a result....
hello, I have conga updating fields on the my pdf template. After conga, the JavaScript on the template should execute on the conga updates. Conga will update 3 check boxes and the java script should use the conga updates to update the 3 check boxes.
Hello all,I'm currently in the process of creating a form with multiple different form fields and I only want certain fields to populate, based on what action the user selects from the primary field. I have been using the following script: if (this.getField("Status Change").value == "Enter Value"){event.target.display = display.visible;}else if (this.getField("Status Change").value == "Enter Value") {event.target.display = display.visible;}else{event.target.display = display.hidden;}This script does exactly what I need it to do, but since there are a bunch of different form fields in this document, I have to manually add this script to each form field under Calculate > Custom calculation script. I am looking for an easier way to do this if possible. Thanks!
Hi (Acrobat CC)I've become stuck on an issue. Please excuse me, I'm a designer not programmer, and have struggled to find a solution.I have created a form which contains an 'on page open' javascript to fill a field with the following:var today = new Date();this.getField("Today").value = "GCF-01-" + util.printd("mmddyyyy", today);this.getField("Today").readonly = true;this performs the task I require, but I want this field 'locked' when populated, so that when the form is opened again the original date remains rather than being updated.Would someone be able to help please?MTIA Steve
Hi allI started learning javascript for acrobat but when i read some Acrobat JavaScript API Reference from Adobe i feel that is not the right place to start to develop my skills, so i need some advice to help me going to the next level, any ideas, resources paid or free its ok, thanks in Advance.
Hello,What on earth am I missing here?I don't think foo and baa and being outputted correctly with the appropriate backslashes (escaping?).when executed I need the calculate command to be applied as:"Calculate","AFSimple_Calculate(\"PRD\", new Array (\"hx\", \"rx\"))");above the represents the incrementing number that starts at 1, it is stored in the variable [inc], seen below.var targetArray = new Array("t1","t2","t3","t4","t5","t6","t7","t8");for (i = 0; i < targetArray.length; i++){var targetFields = this.getField(targetArray);inc = i + 1;var foo = "\"\h" + inc + "\"";var baa = "\"\r" + inc + "\"";targetFields.setAction("Calculate","AFSimple_Calculate(\"PRD\", new Array (foo, baa))");};Is it because foo and baa are not being pointed to their values from the 10th line?Thanks Everyone!M
When I used the following javascript , It was displaed "NotAllowedError".- this.createDataObject('output.csv', "TEST");- this.exportDataObject({ cName:'output.csv', nLaunch:'2'});I am looking many web-site , I find that I must buy something option.Is it right ?What should I buy just to do this? Or Are there anyway to do this ?Best Regards.
I have developed a pdf form with various checkboxes in Acrobat Pro. In one section, the response to a question is a YES (The form field is CBY) or NO (The form field is CBN)checkbox. How do I require at least one of the checkboxes to be checked before submitting the form. In another section, I have a checkbox for OTHER (The form field is Check Box18) with a space to enter text in Text32 (The form field is Text32). How do I require a text to be completed if the 'Other' checkbox is checked.Please provide step by step since this is foreign to me. Thanks.
created a shipping form with drop down box of ship to names but want to auto populate the facility name, address, phone etc based on whose name i select.. looked at alot of the info on java scripting this and just still confused,, can some one really spell it out and make it simple. i cannot load additional sofware due to system being admin locked down so have to work within adobe acrobat.. thanks
I have an alert in document-level that opens if a certain button is not hidden and then when that button is hidden, the alert doesn't open. So that works fine but when I tried adding a second alert, I get issues. What I'm trying to accomplish is there are two parts to a pdf form (PART I and PART II). If part 1 doesn't have a button hidden, then an alert will pop up when the document is opened. After part 1 has been digitally signed, the button will hide and that alert won't popup anymore but a second alert will pop up if part 1's button hidden AND part 2's button is not hidden. Once part 2 has been signed, part 2's button is hidden and no more alerts should pop up.It all works up to the last part. The second alert still pops up even though both buttons are hidden. Here's my code:var VerifyPartI = this.getField("Verify PART I");var VerifyPartII = this.getField("Verify PART II");if (VerifyPartI.hidden == false){if(app.alert("Inputted text",2,1,"T
How do I reference a text field in a javascript calculation, example: var HR = (55-20); event.value=Math.pow(HR,0.54); Where 55 references a Field name?
すでにアカウントをお持ちですか?ログイン
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
申し訳ございません。このファイルは、ダウンロードしても安全かどうか、内容を確認中です。数分後にもう一度お試しください。
申し訳ございませんが、当社のウイルススキャナは、このファイルをダウンロードすることは安全ではないと検出しました。