『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the power of Acrobat SDK through our community.
新着順
Hi,I have created a user form with Livecycle designer 8.It is a xfa form in pdf format.I want to extract the form field data when user uploads the form at client side using javascript or angularjs. Didn't found any solution yet.
I have a form with multiple signature fields and multiple dropdown lists (all lists have same values " " {Space (acting as blank)}, Yes, No). I want to prevent a signature from being added to PrepSign1 if DropDown1 & 2 are not set to either Yes or No. Below is a sample of my form. I have a total of 8 signoff's for each level (Prep/Reviewer).
I'm using C++ for building our Adobe Plugins. I want to disable one of the toolbar buttons when the document is opened in protected mode and until we click on "Enable All Features".We are using this call AVToolButtonSetComputeEnabledProc(cabinetButton, ASCallbackCreateProto(AVComputeEnabledProc, &CabinetEnabled), NULL); to enable/disable the button.I'm checking for Active Doc in the call back CabinetEnabled using AVAppGetActiveDoc()AVAppGetActiveDoc() is returning null when the pdf is opened in protected mode until we enable all features where as its not null when opened in Adobe DC.Is there a way that we can figure out if the document is in protected mode. ?Thanks in advance.
Hello,I would like to create a program which converts 3d files to PDF 3D.I am really flexible. It can be with any version of Adobe Acrobat program, and in any language.The point is that I wouldn't need to open the 3d file with the Adobe Acrobat Reader, and save it as PDF.All has to be Automatically!Thank you!!!
I am trying to create javascript to populate a field (FieldText2) with a dollar amount based upon whether or not checkbox1 (2 hours) or checkbox2 (4 hours) is checked multiplied by the dollar amount that is entered by the user in FieldText1.I've made multiple attempts but cannot get the javascript to work. Thank you.
Hello,I am administrator in our company and I have problem/question.Although I disabled all online features using the Configuration Wizard, Reader DC and Acrobat DC still ask for proxy credentials until the users enter their data + check box 'save it'.Why does the Reader asking for the credentials and for what?Most users don't know what "proxy credentials" are although they use them every day at the internet browser - sad but true.And this circumstance causes error tickets. I am tired to say: "just enter your 'internet credentials' " >.< Is there any way to stop this prompt ?Thank you,Philipp
Hi,So I am working within Adobe Acrobat Pro X on a Windows 7 machine. I have an action wizard which has 2 tasks - shrink the pdf to avoid overwriting of content and java script which applies label to document (via annotation). The problem is sometimes the labeled documents are saved and sometimes they are not. I can't figure out why. Today my colleague was unable to save the files after using this action wizard and sent the files over to me. Interestingly enough, I was able to label and save no problem. This happens intermittently. I have been trying to find a solution and this seems to be a known adobe bug. Is that true? Could it be anything else? I tried making sure Preview Pane is not on, etc.
Hi allI am trying to map one specific colour to white in a pdf, and I can't for the life of me find anything that I can use. From what iv'e readit seems that javascript is the better option for manipulating acrobat dc, but I have zero experience with it, applescript, quite a bit, soI was thinking id just call the javascript in my apple script.The colour I am trying to map is Keyline and I am wanting to convert to White, the colour keyline is made up from C0 M100 Y0 K20and converted to spot.Could some one please give me some infor or a snippet of javascript or applescript that I can add to the rest of my code please.thankyou.tell application "Adobe Acrobat" activate tell active doc repeat with i from 1 to count of pages tell page i set {L, T, R, B} to media
Hi all.I'm trying to display a "TotalFee" field that needs to return the fees for sitting some exams plus some optional tutorial sessions.I have two checkboxes called "Exam1" and "Exam2". Candidates can select either or both of these checkboxes.For each selected exam, a fee of $90 needs to be added to the total (so $180 if both boxes are checked). I'm thinking I need to use two hidden numeric fields with a preset value of 90 in each, and then refer to this field if the associated checkbox is selected (unless there is an easier way to do this).There is also a numeric field called "TutorialSessions" that allows the candidate to enter the number of tutorial support sessions they want to book into before they sit either exam. This is an optional field.If a number is entered in the "TutorialSessions" field, it needs to be multipled by 90 to obtain the total cost of tutorial support which is then displayed in a "TutorialFee" field.Finally, the "TotalFee" field needs to sum the total cost for
Hello all - new to the forum. I have a 14,000 pg. (and growing) document, each page has a printed page(document) number in the upper right hand corner. Since the document number is always in the same place on the document, I would like to build a script that would enable me to use Text Recognition and then put the pages in order per this printed number.There is a possibility that each page/document number might appear twice in the file (one customer copy and one shop copy) and some numbers could be skipped altogether. The finished document might look something like this 1,1,2,3,3,5,6,7,7,8,10,10...ect...These documents are returned to me in a random order and I would like to be able to scan them as they come in and "feather" them in to the existing document in order per the document number.Thanks in advance for any thoughts on this issue.Chris
I have 6 fields with property value and 6 related % Ownership, then a grand total field. My intent is to take property_1 x ownership = value, do the same for the remaining 5 properties, then add all resulting values for a total property value based on % of ownership. I first entered script below with only one property (without the surrounding ()'s, and it worked fine, then I added the (), copy/pasted the same script & updated the names. When I inserted the remaining properties, it doesn't work. (Note, in the example below the calc would be $300,000 X 59% = $177,000). Where did I mess up on the script? Thank you so much ~ Michelleevent.value = ( this.getField("MarketValue").value * this.getField("Ownership").value ) + ( this.getField("MarketValue_2").value * this.getField("Ownership_2").value ) + ( this.getField("MarketValue_3").value * this.getField("Ownership_3").value ) + ( this.getField("MarketValue_4").value * this.getField("Ownership_4").val
I have 3 columns of check boxes. All 3 columns total up the amount of checked boxes selected at the bottom into 3 separate fields #yes #no and #N/A. For the sake of this question lets say they total to 11,2,0. Now i need to get a percentage based on the yes column (85%) in another field.Im having a hard time figuring out how to calculate this.thanks
I have Acrobat Standard and Outlook 2013. I want to write a sub that opens up an attachment, invoke Adobe's OCR, and runs a regex test for a string pattern. I have this working to a degree, if the PDF is already OCR'd, I just open the attachment with Word and run the regex test against Word's .Content property which searches the entire document. If it's NOT already OCR'd, I tell the sub to save the PDF as a Word doc and then perform the same action but that has less than desirable results. Is there any way to invoke OCR without converting to another format and then run the regex test against the entire document? I can't even use sendkeys because there's no way to use the keyboard to get to the Recognize Text menu -__-Here's a sample of my codeFor i = myItems.Count To 1 Step -1Set myItem = myItems.Item(i) For Each atmt In myItem.Attachments If Right(atmt.FileName, 3) = "pdf" Or Right(atmt.FileName, 3) = "PDF" Then &n
Good day,does anyone know how to convert a Binary file (BIN) to a Temporary Binary (1) File (BN1). I know this is old school but we have operating systems that read BN1 files, therefore I have to convert a BIN file to BN1 format.Apparently the BN1 format is a software component of Adobe Reader by Adobe Systems.BN1 is a temporary file that belongs to Adobe Reader, a freeware tool developed by Adobe to view, print and share files in Adobe's proprietary PDF format.[Moved from the Lounge (which is where you can "connect with your peers" from across all of Adobe's products for conversations that don't directly relate to help and support) to a product-specific support forum - moderator]
I have a form with a bunch of questions and then options Yes, No, NA. You can select a checkbox under each answer and then at the bottom i have a box that totals each column into "#Yes" "#no" "#NA". I have used the same script in ALL THREE boxes but only 2 (Yes and No) work. The NA column shows no number total.var total = 0;for (var i=1; i<=20; i++) {if (this.getField("Yes"+i).value!="Off") total++;}event.value = total;var total = 0;for (var i=1; i<=20; i++) {if (this.getField("No"+i).value!="Off") total++;}event.value = total;var total = 0;for (var i=1; i<=20; i++) {if (this.getField("Na"+i).value!="Off") total++;}event.value = total;
How do I calculate the quantity (2) by the cost ($10) and (discount)? For example, (2*$10.00)*(1-15%)
I am using latest version of Adobe Acrobat DC on Windows 7 64 bit. Everything is by default like I made the only changes at the provided video.The problem is when I highlight any next in the pdf, usually in the previous version of Acrobat the icons for Cut or Copy are going to be "active"(dark grey), when some text is selected and not active icons(white gray), when there is no selection. In the latest version of Acrobat this icons are white gray and not active when the text is selected. For me there is obvious problem between the icons Copy Cut and Paste, when there are on the toolbar.Please, follow the link at acrobat bug test - Vidme Please, it's there anything which I do or that's bug? I don't have the same behavior with oldest version of Acrobat.
Hello everybody,i tried to a button in an Adobe Acrobat pdf form with javascript to automate the saveas function with the file name from a textfield.I did a lot of research in the internet and found many examples and help postings so I know that I need folder level scripting because of security functions from adobe with the actual version of the reader.folder level script:myTrustedSaveAs = app.trustedFunction(function(vDoc,path){app.beginPriv();var myPath = "/C/Users/***username***/Downloads/test/" + "text1Value.pdf";vDoc.saveAs({cPath: myPath, bCopy: true, bPromptToOverwrite: false});app.endPriv();});button script:var text1Value = this.getField("Objekt").value;event.target.myTrustedSaveAs(event.target);When I trie this scripts with the adobe reader it allways say "TypeError: event.target.myTrustedSaveAs is not a function" and I can't get that running.Maybe someone can help me get this running thank you for every help!
Hi !I have a problem for VBA.I was reading PDF's property by VBA using Acrobat Reader XI.But after I updated Acrobat to Acrobat Reader DC, I can't read the property.Can somebody help about this?I want to know how to1) Open property by Acrobat Reader DC. I am using now => Private Const WM_COMMAND As Long = &H111 PostMessage hApp, WM_COMMAND, &H1788, 0&2) Close the property window I am using now => SendMessage hDlg, WM_COMMAND, vbOK, 0&3) Close the application I am using now => SendMessage hApp, WM_COMMAND, &H1791, 0&Best regardsKawa
I have set up a couple of kiosks at my work to help people fill out forms faster. But as I found out the hard way many people who come in are very computer illiterate so I added a help buttons on each page of the form that links to a short video for each page. But the following prompt always shows up."Launch FileThe file and its view application are set to be launched by this PDF file. The file may contain programs, macros, or viruses that could potentially harm your computer. Only open the file if you are sure it is safe. If this file was placed by a trusted person or Program, you can click Open to view the file."There is a check box that says "Do not show this message again" but that only applies until the form is closed and reopened. I believe this is a trust issue, is there any way to turn it off on my kiosks or to make a javascript that will be universally allowed on my kiosks? I have a silent save javascript that circumvents the trust issue on my kiosks and I'm looking for someth
I'm creating a user form using Livecycle designer.Here i'm not able to implement cascaded dropdownlist using javascript. I'm using ODBC dataconnection for data binding.Able to bind all data in respective dropdowns but don't know how to use cascading.I followed this link LiveCycle ES2 * Adobe LiveCycle Designer ES2 but is is not working.
I need to prepare a stamp with data from a database dynamically. Please advise the best way to achieve this in XI Pro. Thanks!
Acrobat Pro DC: I've created a fillable form (with required fields which have error messages if they are "tabbed through"). After I return to and complete one of these fields, the tabbing sequence returns to the top of the form, instead of resuming from where I am. How can I make the tabbing resume from the current location?
Hallo,ich möchte gern in einem Textfeld ein Datum nach dem Schema "ddmmyyyy" eingeben und anschließend nur mit der Jahreszahl im javascript weiter arbeiten.Kann mir hier jemand weiter helfen? Irgendwas scheine ich zu übersehen dabei.Mein Textfeld ist aktuell auf Datum mit der entspr. Syntax eingestellt.//I would like to enter a date according to the schema "ddmmyyyy" in a text field and then only work with the year number in javascript.Is anyone able to help me? Something I seem to overlook.My text field is currently set to date with the corresponding syntax.
Calculation results in a zero which appears in the field. My form will be used for both online and hand-written completion. I am K with keeping the 0 when viewing and/or completing online, but do not want it to print Is there a validation script?
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.