『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the power of Acrobat SDK through our community.
新着順
Everything works fine the first time. The second time it runs but the dialog doesn't open and the scripts begins using the second PDF.
Is there a way to create spot colors (and separations) from a PDF file that is CMYK? This is for the 2016 version of Acrobat Pro DC
I'm trying to get Acrobat to pre-populate a date field with today's date. I have placed the following code in the "Page Open" section:var f = this.getField("Date");f.value = util.printd("mm/dd/yyyy", new Date());Date is the field name. The format matches the format for the field. When I open the document I get the following error:"Invalid date/time: please ensure that the date/time exists. Field [Date] should match format mm/dd/yyyy"The date appears in the field with the proper format. Any idea why I'm getting the error?
I have a script that uses the methods:this.getPageNthWord and this.getPageNumWords, I have it search the whole page for a zip code and then hold that value, is it possible to define a smaller area than the whole page for the script to search?
How do I insert 6 other pdf documents into a different open pdf file using javascript? All the files are in the same directory/
Dear Experts,Two questions: I was wondering it it is possible to create a HTML form with LiveCycle to have a field where the end user can insert a video. Also, is it possible to have a Geo-location field also on the same form? (So the user can 'stamp' their location). I can see third party software on the web alluding to this - and wanted to know if it is possible to use JavaScript to enable this to be built. PS I'm a novice - which is probably apparentMany thanksKind regardsKevin
For example, if someone chooses the first headline, is there a way for the text box below to produce the definition or statement?#1 - Sustain and Improve InfrastructureMaintain, renew, and improve the District’s infrastructure through effective asset management.Additionally, is there a way for text to populate on multiple pages throughout a document. For example, if I want someone's name to populate on multiple pages and they only have to document their name once on the first page, is there a way where the document can pick up that information and populate it into "field" elsewhere.
I generate several large PDF files and would like to delete any page within these files that contain a certain phrase and then save the new file.
In Acrobat, when I choose the option "livreto" to print my book, it only print like a magazine, but I need to print like a book. I think I need to download some extra plug-in. Can you send it to me?
I have a script which loops for a total of 8 words.The fourth word can be separated by a space in some instances or a carriage return (Paragraph mark) in other instances.The script is not working, if anyone can help modify the highlighted part of the script for the OR OPERATOR that would be most appreciated.numWords = this.getPageNumWords(0);for (var j = 0; j < numWords-1; j++){ckWords8 = this.getPageNthWord(0, j) + ' ' + this.getPageNthWord(0, j + 1) + ' ' + this.getPageNthWord(0, j + 2) + ' ' + this.getPageNthWord(0, j + 3) + '\n' || ' ' + this.getPageNthWord(0, j + 4) + ' ' + this.getPageNthWord(0, j + 5) + ' ' + this.getPageNthWord(0, j + 6) + ' ' + this.getPageNthWord(0, j + 7);
I've been tasked with locating software that allows us to digital sign documents to submit to various agencies. I've been unable to determine if Adobe's product meets the FIPS 180-4 standard that we need to comply with. I did see in the standards information it meets the 186-4. Can anyone provide any references on the 180-4 standard in regards to Adobe's software complying? I apologize if this is a stupid question. However, I am not very familiar with either standard and want to make sure I can provide a recommendation based information I can cite. Thanks.
How do I convert PDF with fillable fields to HTML?
I've found a few conversations on validating but can't find any written resolutions other than "oh hey, I fixed it".The code I use to lock the doc fields is:var r = app.alert("Are you ready to lock this document?",2,2); if (r == 4) { // 4 is Yes, 3 is No for (var i = 0; i < this.numFields; i++) { var fname = this.getNthFieldName(i); this.getField(fname).readonly = true; // makes all fields readonly }}A script I found to check validation looks like this:// These are the required fields on the form.// Populate array with their names.var RequiredFields = new Array(3);RequiredFields[0] = "Captain";RequiredFields[1] = "Equipment";RequiredFields[2] = "Date";// These are the alert messages shown when a required field is empty.// Populate array with messages.// Make sure there's one message for each required field.var alertMsg = new Array(3);alertMsg[0] = "Please enter the
Before there where a pipette tool in Acrobat, but now I can not find it. Do you know where it is gone.
I have been getting (and ignoring) this alert in Word 2016 and finally Googled it. It appears to be linked to an Adobe add-in with the filename linkCreation.dotm that was installed with Acrobat DC. This Microsoft website recommends deleting linkCreation.dotm. Before I delete it, I would like to know more about this file. http://answers.microsoft.com/en-us/mac/forum/macofficeinsider-macword/compile-error-in-hidden-module-link-using-word-for/11c6764c-a527-4db1-ad35-08154331efacHere are my questions about linkCreation.dotm• what is its purpose • why did Adobe add it• what did Adobe think it would do for me• will cause any issues in Acrobat DC if I delete it from the Microsoft system filesIf I have to pick between Acrobat and Word running correctly, guess who wins...My specs, because someone will ask: JaneACI, ACP
Hello,I have a user at my company that just got Adobe Acrobat DC standard.He his reporting that he cannot mark up a PDF with objects like arrows and lines. He sent a screen shot, to show the OBJECTS area to be greyed out.He thinks he needs the Pro version to get these features.Is this true, or is there something we are missing? not doing? etc?thanks!
I have a product that opens up html documents in a new tab on the browser and then sends a simple javascript command to print the document.We are looking to move away from this approach, and would like to generate pdf's that then automatically print out.So this question is simply part of a scoping exercise, and apologies if I am asking in the wrong place. So, 1) Is it possible to embed some basic Javascript into a pdf template that we have automatically filled in, so that when the document is displayed in a browser, it automatically sends the print command to the browser?And if so2) Is it possible for us to attach (merge?) 2 or 3 product sheets to this generated template, so that with one print command I can print out the completed template and any required product sheets rather than having to open X tabs, one for the template and one for each product sheet that is required.Thanks
I've purchased Acobat a few years ago for an older computer and did download only so I have no disc. Can I get it on my new computer somehow?
Why am I getting a Syntax error 7?var Red10=this.getField ("Red10").value;var N36=this.getField ("N36").value;var N37=this.getField ("N37").value;var P28=this.getField ("P28").value;var L30=this.getField ("L30").value;(function (){if (P28)>=(N36)&&if (P28)<=(N37)&&if(Red10)>=(L30)event.target.fillColor=color.yellow;})();Thanksdkm
Two projects:1) Create database based on info accumulated from Acrobat forms.2) Also use JavaScript to take current forms to next level.Is there anyone out there interested in the project? If interested, please email me at [moderated] and let me kow your qualifications.Thanks!
When i am installing acrobat pro for PC, everything goes well but when it is close to finishing, at 99% a run time error pops up and force close the installation every time. Any one with the same experience and was able to solve it? Please share, thanks
My system is windows 7 64bit. I am using Adobe Acrobat XI Pro Version 11.0.14. When ever i try to update it it fails and says error 1328. It says "Error 1328.Error applying patch to file C:Config.Msi\PT9991.tmp. It has probably been updated by other means, and can no longer be modified by this patch. For more information contact your patch vendor." any help would be awesome.
I searched this forum, tried the suggestions, uninstalled and reinstalled Adobe Acrobat XI Pro and I'm still getting the Error 1328. How can I get this resolved?OS: Window 7Acrobat XI Pro
Hi,I have question about PDF structure or JavaScript. I have page with graphics object like this:q 0.999985 0.999985 0.999985 RG /a0 gs 0.5 w 2 J 0 j [] 0.0 d 3.25 M 40 980.602 1920 -941.387 re S QIn my task I used graphics for easy vector interactive maps. Is there way how to insert “variable” because I would like make small changes in map and map is too big. It is possible used multiple copies of graphics with small changes but why. I would like change fill color (0.999985 0.999985 0.999985 RG) or text contain. My idea is prepare array with constants and during javascript set position in array and in graphics used this reference.Thank you.
While using the save as function, instead of getting a file explorer window I get a blank window. Just started today, it worked fine yesterday. Can anybody help?
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.