『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
I get this message from Acrobat Pro, whwn I will creae an Acrobat document from Word:%%[ ProductName: Distiller ]%%%%[ Error: invalidfont; OffendingCommand: definefont; ErrorInfo: .notdef --nostringval-- ]%%Stack:/Font-dict-/TTE56t00%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%%%[ Warning: PostScript error. No PDF file produced. ] %%The Word-document has text and fotos in a table and some af the lines and fotos are missing after the convertion.
Hi, I recently had my CAC card updated and now I cannot digitally signe any military PDF documents. I get the following error message: I recently had my CAC updated and now I cannot digitally sign any military PDF documents. I was able to sign documents before today. Any assitance would be greatly appreciated.
Hello,I developed a plugin for PDF manipulation functions by adding a new menu item under Edit menu.It is working fine in Acrobat Pro XI but it is not loading in Acrobat pro DC.I am using:1. Acrobat Pro DC(2015-Classic)2. Operating System - Windows 7NOTE: According to my observation, first time when I installed Acrobat DC, my plugin was working fine. But when my trial version completed, I reinstalled it now and it is not working now. For the case, If I did something wrong in the code, to check this, I placed a BasicPlugin from Acrobat Plugin SDK. It is also not working for Acrobat Pro DC.But both are working fine for Acrobat Pro XI.Please help!Thanks.
Trying to install Adobe Acrobat Version 7.0 on a new PC running Windows 7. Getting the error message - "Warning 20225. Adobe Acrobat7.0 was unable to create a new item. Adobe PDF Port & Printer. The Adobe PDF printer may be unavailable."any help appreciated
I'm trying to convert a Word document to a PDF, but I get this error message saying that additional files need to be downloaded and that I need administrator privileges to download those files. This is my personal laptop so of course I'm the adminstrator. I did a Quick Repair of Microsoft Office 365, that didn't fix it. So I did an Online Repair and that still didn't fix the issue. I downloaded Acrobat from their website, and I have the 7-day free trial. I waited until it updated with the free trial before trying to use the conversion tool. Is there something else I need to download or am I just screwed and can't convert files?
I've created a series of forms in Acrobat Pro that the Javascript works works only some of the time, or stops working, or works differently on different platforms.Created and tested in Acrobat Pro on my computer, but also Acrobat Pro on MacBookPro, Windows 11, and using Acrobat Reader on all platforms. All software has Javascript enabled.The simple form only has 1 recurring script attached to 8 similar fields to change the field color depending on the value of what's in the field. It works initially, then make any other changes to the form (no other Javascript) and save again... then the field scripts (sometimes) stop working when testing or opening it again to fill. Sometimes they don't work at all, even though nothing from those fields has changed. I thought maybe saving a version that is Reader optimised (Save as Other -> Reader Extended PDF -> Enable more Tools) might work, but it's just as unstable as with Acrobat Pro.The finished form is intended to be used as a templa
Hello hello everyone,(First of all, I'm truly sorry for my poor english and thus, for this question badly written, I'm not an english speaker)(Second, I already tried to find an answer by searching through the forums but I didn't find anything that was of any help with my pretty poor abilities to understand Javascript (and I already asked my question in the french version, which didn't give any result))Here is the issue I'm facing :A series of checkboxes whose number associated (I suppose the value?) must be transferred in a text area when checked. Problem “bis”, I don’t understand javascript and the many examples I’ve found on the forum about similar issues, hence I can’t ‘translate” them to my particular situation. More precise description: I have a series of checkboxes (in an interactive PDF form that I make with ADOBE ACROBAT PRO), each one represents a certain number "1", "2", "2024", etc. => in fact a code in a list of work risks. The risk "Fall" has the code "1", the "chemica
I'm just trying to create a mailDoc on Mouse Up for a submit button and I'm encountering a syntax error:var sendForm = app.alert("Are you ready to submit to " + ProgramManager + "?",2,2,"Program Manager Submission");if(sendForm) == 4) {this.mailDoc({bUI:true,cTo:ProgramManagerEmail,cSubject:"Incident Report Submitted",cMsg:"A new Incident Report has been submitted.\n Please sign it and return it to the sender."});}elseapp.alert("Please continue with the form"); I'm getting syntax error 3: at line 4. I'm hitting a wall, so I'm open to suggestions. ProgramManagerEmail is a variable that is set from a drop-down to select a user. That populates an email address in ProgramManagerEmail. Thank you,~ David
hello can i know some steps to help me to add my own plug in to adobe
I have experimented a lot using viewState function this.viewState.toSource();var refView = eval(viewState.toSource());refView.pageViewZoom= 5;refView.pageViewY = 1500;refView.pageViewX = 800;this.viewState = refView;this.viewState.toSource(); but it is going haywire and is not able to focus on the page at the X and Y coordinates. I have tried page scroll also and there is no description in the manual. Your help is very much appreciated.
The lineFileRef source = FileRef.CreateFromStream(stream, "application/vnd.openxmlformats-officedocument.wordprocessingml.document");seems to run indefinitely. Witihin stream is a docx file. This seems to only be an issue while using docx files so wondering its an on going issue, I'm using the wrong media type or something else. Thanks
Hello, I tried to set up some conditional formating on a PDF form and am hot sure where it went wrong. Here's what I hoped to achieve: I configured three check-box field "Check Box5.0.0.0", "Check Box5.1.0", and "Check Box5.2.0.0", and I want the three box to be filled with green, red, and purple if they're checked individually. I confugured them to run a Javascript, with Mouth Up as the trigger, and the code is below: if(event.target.value != "Off") this.getField("Check Box5.0.0.0").fillColor = color.yellow;else this.getField("Check Box5.0.0.0").fillColor = color.transparent; I edited the form on MacOS and it seems to be working, but when I later open it up on a PC, it behaves really strange. Same thing happened when I opened it on a differnet Mac. Once I checked another box, it'll clear up the color for the previous check-box. Not sure where I got it wrong. Thanks!
Hi. I'm trying to write a script for incorporation into a custom Action that can run on a batch of files. The goal is to add a watermark in the upper right-hand corner of all pages with:Line 1: File ID = [file name without extension]Line 2: Page # of 30 For example, for a pdf named 'MyFile.pdf' that contains 30 pages, the script would add the following text in the upper left corner of each page: File ID = MyFilePage # of 30 where # starts at 1 and increments by 1 on each subsequent page See draft script below. As written, it only adds the watermark to the first page of the pdf. I've successfully created scripts to do each line of the watermark independently, but can't seem to figure out how to accomplish both into a single script. Any suggestions are very appreciated! for (var p = 0; p < this.pageNum; p++); var cMyText = "File ID = " + event.target.documentFileName.replace(/\.pdf$/i,"") + "\nPage " + (p+1) + " of " + numPages; event.target.addWatermarkFromTe
Why setTimeOut not working?This is my script: var p=0;var link_info="";function processPage(){if (p < 10){link_info += "page:"+p;p++;app.setTimeOut(processPage, 1000);console.println(link_info);}else{event.value = link_info;}} processPage(); Result output: page:0undefined
Hello all,I've just finished refreshing my iMac to clean up the macOS and have run into a problem with an existing XCode project. The code is based on one of the Samples that comes with the Acrobat SDK and I did have it working previous to the wipe and reinstall, but now I'm getting an error at the end of the compilation. There appears to be an Adobe shell script that runs at the end of the process to copy the compiled Adobe Acrobat plugin over to the /Users/<username>/Library/Application Support/Adobe/Acrobat/DC/Plug-ins directory. But I'm getting an error "Sandbox: ditto(50711) deny(1) file-read-data /<path to Desktop>/XCode-PDF-Plugins/PluginSupport/Samples/tech360AODAtool/mac/BuildResults/bin/debug/<pluginName.acroplugin" : Operation not permitted What I'm surmising is that somewhere in the past I updated a setting to allow XCode permission to read from the Desktop and write to the ~/Library directories. Any thoughts on what I need to do here to allow
I am creating a form that adds amounts for a total. I want to create a check box (BOX1), that when checked, puts a specific dollar amount in another text box (#4) which is then added to other amounts to create a total for purchase.
I have an 'assessment' document that also includes a 'report' template that is generated once the assessment is completed. The report has number fields duplicated from the assessment. I want to round up the numbers on the report up to closest 5, but have the fields on the assessment remain as the number input by the user. Is there any way of doing this? My thought at the moment is that the duplicating fields will need to be removed and number fields with calculation script added. Hope this explanation makes sense and thanks for help.
Can i create an Add-in for Acrobat Reader? (something like Office Add-ins in visual studio) for example, i open a pdf file with Acrobat Reader, i want to add my custom button in the Reader in order to perform a specific action. using C# and .Net Core 6Is it doable?
Hi, I have created a privileged function "executeSave" to save a document by the saveAs() method. I can't access folders at the folder level (but that's not important right now), so I put the function definition in the privileged Action context.// privileged function declaration var executeSave = function( cPath, cConvID, bPromptToOverwrite, bCopy ){ app.beginPriv(); saveAs({ cPath: cPath, cConvID: cConvID, bPromptToOverwrite: bPromptToOverwrite, bCopy: bCopy }); app.endPriv(); } // inserting a privileged function into app.trustedFunction() app.trustedFunction(executeSave);I put all this code into the privileged Action context and named the action executeSave. I restarted the Acrobat application and inserted code into the button in the form to call the "executeSave" function// call "executeSave" from button MouseUp event executeSave( "/C/Users/Uzivatel/OneDrive/INPUT/myExportFile.ps", "com.adobe.acrobat.ps", false, true )Here is a screen shot of how I inserte
I'm trying to show the Export Value of a dropdown instead of the selected option i.e. the user selects BLACK but the export value of BLK is actually displayed. I can find lots of discussions on how to pull the export value and display it or use it to trigger another response in another field and I can usually tweak my existing JavaScripts when I need something new but I cannot seem to wrap my head around this!This is my latest (failed) attemptvar f = this.getField("eyes");if (event.value == "Black - BLK")f.value = "BLK"I'm using Acrobat PRO DC.Any help is appreciated,ThanksMeabh
I sent an eSign document to three different signers. It says it has been completed, but I can't find it! I see the document, but none of the signatures show. Can anyone help me find it?
Hi, Do you have PDF to DOCX converter using command prompt?We saw the API option but we want to do it localy.
I what to sign with different customers with Adobe e-Sign from my web application.I have unique Name, Address ... etc.The document has to signed for both of sides : Customer and mine.What the best way: 1. Create widget from Adobe eSign interface and pass parameters to the document through API from my Application? (Didn`t find how to pass attributes in my document) 2. Create template from Adobe eSing API and pass parameters to the document through API from my Application? (Didn`t find how to pass attributes in my document) 3. Create document with all necessary fields, convert in PDF, upload with eSing API, and send through the authentication process with eSing API? (Didn`t find how to create e-sing secificaton fields, wich will be recognized by the process)My be other process I the best?
I am talking about New Acrobat as described here:https://helpx.adobe.com/ca/acrobat/using/new-acrobat-experience.htmlIn a prior version of that page, there was a note about it not supporting 3rd party plug-ins. It wasn't very polite about that either; it just crashed with the plug-in installed but didn't if it was removed. It also runs fine with the plug-in in the regular mode. The current version of the above linked page describing the new look doesn't mention the lack of 3rd part plug-ins. It was very prominently mentioned before and has now been removed, so my assumption was/is that they think it is fixed. What makes this especially bad is that when you get an update including it, it is enabled by default, so all users get the crash. I am now wondering if this was addressed and there is something I need to change in my plug-in the support the new look.
Hi,I just received this spam email below. I clicked on the PDF, and then another screen appeared asking to "Restart Adobe". I did NOT restart Adobe. I am submitting this to Adobe so you are aware of this scenario. Thank you kindly. Best Regards,Steve ==================== Here is the email I received. I removed my email address. ====================== -----Original Message-----From: Jeanine Llorca <h4872744@gmail.com>Sent: Monday, November 20, 2023 12:33 PMTo: skargas@gmail.comSubject: Payment Received - [Product/Service] Purchase Dear ___________ We are writing to confirm the successful receipt of your payment for your recent [Product/Service] purchase. Here are the payment details: ==============================
すでにアカウントをお持ちですか?ログイン
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
申し訳ございません。このファイルは、ダウンロードしても安全かどうか、内容を確認中です。数分後にもう一度お試しください。
申し訳ございませんが、当社のウイルススキャナは、このファイルをダウンロードすることは安全ではないと検出しました。