Unlock the power of Acrobat SDK through our community.
Actividad reciente
I am trying to develop a web page where I want to upload a PDF file from a web page, get the values of its fields then render them into the web page fields using JavaScript. I started with the following code but I can not get the value of the PDF fields. May I ask for a sample code on how to do this <html><head><script src="jquery-2.1.4.js"></script><script src="jspdf.min.js"></script></head><body><input type="file" id="file-id" name="file_name" onchange="ExtractText();"><!-- a container for the output --><div id="output"></div><script>function ExtractText() {var input = document.getElementById("file-id");// Insert get doc field code herevar doc = new jsPDF(input.files[0]);}</script></body></html>
Good god, this is inconvenient. I'm on a high speed cable line with a very good computer. Movies download in seconds. Why do I suspect I'll have to fix a bunch of crap that's being installed? This is horrible.
Hi, I am a learner of adobe plugin SDK. I am developing acrobat plug-ins with the latest acrobat SDK The following problems were found during the test: a) The plug-in cannot generate files to the computer. It has permission protectionb) Crash occurs when the plug-in copies multiline text. If I turn off the protection mode, I won't have the above two problems. I found this information https://helpx.adobe.com/acrobat/kb/protected-mode-troubleshooting-reader.html What is the most reasonable solution? Look forward to your reply
Hi, I'm trying to create a script that will change the fill color of a text box depending on the value. The text box is formatted to numbers only, with no decimals. The text has transparent fill and border by default and will be empty by default. The desired behavior is if text box value = 0, 1, 2, or 3 then change fill color to red and border color to blue. If blank or > 3 then fill and border color should be transparent. The problem I'm having is that if the text box is blank, it applies the red fill color/blue border color. I have the trigger as On Focus and again On Blur, trying to account for what our staff may potentially do when working with this document. My company has ADOBE ACROBAT STANDARD DC. Any guidance would be appreciated! My code so far:var nRemSup = this.getField("Rm Supply text box 1").value;var fld = this.getField("Rm Supply text box 1");if((nRemSup < 4) && (nRemSup >= 0)) {fld.fillColor
Hi, I am working on a 5 page document that has a checkbox located on page 1 for supplemental information if needed. When CB is selected, it makes template visible. How do I add to the code to put it in the next page (page 2) of the document and not go to the end? Below is the code that is currently in the checkbox. I have searched multiple support threads and tried varies ways to add npage, but seem to be unsuccessful. I am not a JS guru by all means. Any help would be appreciated, thanks in advance! if(event.target.value!="Off"){this.getTemplate("Extended").hidden=false;}else{this.getTemplate("Extended").hidden=true;}
Hello everyone, I would like to automatically add the document name to the footer of an Adobe PDF form. I use the Adobe Acrobat Pro version from the Creative Cloud. Is there a solution here? its possible With an JavaScript Code? Thank you Bastian
Hi, I need to add footers in over 1,000 documents that will contain the documents file name plus page numbers. Can I do this and how? I downloaded the Javascript but not sure how to use it.
How do I access the properties of a selected field with an app level script?
How can I edit or change my digital signature?
Can my wife share my account in order to use Lightroom and Photoshop on her computer? If so how? Thanks, Graham
Hello, I am having so much trouble calculating the time between the "clocked in" and "clocked out" times. I need this total under the "total hours". If someone could please help me figure out the first row under "recorded shift," then I can copy & paste the rest.
i have this error with the following code. What can i do SyntaxError: missing : after property id 95 at line 96 var FormRouting = { return: 'cancel', DoDialog: function() { return app.execDialog(this); }, bchk1: false, bchk2: false, bchk3: false, bchk4: false, initialize: function(dialog) { var dlgInit = { Chk1: this.bchk1, Chk2: this.bchk2, Chk3: this.bchk3, Chk4: this.bchk4, }; dialog.load(dlgInit); }, commit: function (dialog) { var oRslt = dialog.store(); this.bchk1 = oRslt['Chk1']; this.bchk2 = oRslt['Chk2']; this.bchk3 = oRslt['Chk3']; this.bchk4 = oRslt['Chk4'];
Hi all, I am trying to wite code that will show process monitor. This is sample code in Abobat core API Reference. static ProgressMonitor progMon; static void* monClientData; progMon = AVAppGetDocProgressMonitor(&monClientData); if (progMon) { ASText str = ASTextNew (); ASTextSetEncoded (str, "Please wait until the end of process!", ASScriptToHostEncoding(kASRomanScript)); progMon->setText(str, monClientData); //progMon->size = sizeof(AVOpenSaveDialogParamsRec)*10; if (progMon->setDuration){ progMon->setDuration(100, monClientData); } if (progMon->setCurrValue){ progMon->setCurrValue(50, monClientData); } if (progMon->beginOperation){ progMon->beginOperation(monClientData); } } it is working fine. It displays a dialog in the lower right corner of the page pdf. Now I want to change the size and location of its display center page of documents. How can I accomplish this? Im using visual c++
I have a table of records that contains a field named "LeafType". The values in the LeafType field are either "Leaf (young)" or "Leaf (old)". I have an Acrobat Form with a 2 button radiobutton Group named "LeafType". One button is named "Young", and the other button is named "Old". How would I write a javascript to set (select) the appropriate button if getField('LeafType').value == "Leaf (young)" , or when getField('LeafType').value == "Leaf (old)"?
AcrobatStandardの12ヶ月版を¥18179で購入し、2021年12月21日からActivateして使っていた。最近(2022/3/6)、未だ使用期限中なのに RichMedia機能が使えなくなり、「請求に問題あり」のコメントが出る。12ヶ月の前払は済んでいる。RichMedia機能が使えなくなった理由と、使えるようにする方法を以下にメールで、日本語で教えて欲しい: email : agamemnon_jp@yahoo.co.jp
HelloI am using Adobe 11 pro, and creating pdf portfolio files of emails within Outlook 2010.For some random reason, some of the portfolio emails are in a very tiny font (smaller than 6) while others pop up as a normal sized font. When viewing the email it's not an issue since there is a zoom tool, but this really affects printing as the fonts are tiny, and cannot be adjusted in the finished portfolio file when printing (imagine 5 pages of emails shrunk down to a single page).The scale option is of no use either.Does anyone have a solution or recommendation?Regards,B
The content of pages shift to next page while exporting from pdf to docx using adobe pdf service api - export api leading to increase in number of pages in docx format compared to pdf. Is there a way to maintain the content in the same page while converting from pdf to docx. #Adobe SDK and Node Js#ExportPdfToDocx
Often I take a snapshot of a PDF and paste it into the body of an email.I just received the Adobe DC Pro subscription version and I cannot find a snapshot tool or if a similar function is available.Is there a Snapshot tool or equitable solution in Adobe DC Pro?Please and thank you.
Hi Team,How to set the New window setting in Open in Dropdown in Adobe acrobat.
Ich möchte in Acrobat DC zahlen in wörter umwandeln deutsche version hat jemand ein passendes Script?
I have a row of "Yes" checkboxes numbered 1 through 58 and a row of " No" checkboxes 59 through 116; they currently have a 2 Text Boxs at the end with a JS in each column to calculate the total of all yes and all no. I realized you could check both yes and no boxes for each question asked. How do I set up the form to check yes or no and keep the JS to calculate each column?
I have a large PDF document, over 900 pages, with a large number of links throughout the document (~1,000) for:Page View links; andWeb Page reference links. Is there plugin available to extract a list of these links, along with their properties/actions, for the following reason(s): verify that a link has an action associated with it (i.e. Go to a page view, Open a web page, etc.); and/orverify that a link is connected to the correct page view, within the document.Example: My cover page currently has 70 "page view" links. I would like to efficiently see what pages those links are linked to, without having to view each individual link and its properties. This would quickly show me links that have no actions and allow me to verify my links are correctly linked to their designated page views.
I have a current subscription to Adobe Acrobat Pro DC but when I try to edit a PDF I get the "Learn More" box. This takes me to a link to subscibe to Pro DC and when I log in it says I have DC, and I still can't edit a PDF......
I have an application server which generates Invoice and automatically sends it to the customers,i wants to add Digital Signature on invoice format (Invoice format is created in SQL) so my application support engg is requesting for the API Access of Adobe to integrate Adobe E-Sign system and generate Signature before sending invoice to the end user.please help me what i have to do
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
¿Ya tiene cuenta? Iniciar sesión
¿Aún no tienes una cuenta? Crea una cuenta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.