Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
Hello, I need help with a form i am putting together and am very new to javascript.If the age entered in box1 is 70, i would like the value in box4 = "Too Old" or "0" and if age is 15, then box4 = "Too Young" or "0". If the age is between 15&70, then calculate box2.value multiplied box3.value.Basically, in MS Excel, my formula is =IF(OR(Cell1>70,"Too Old",Cell1<15,"Too Young",Cell2*Cell3)Thank you.
I have a pdf document that does not contain any date. When I print the document I want the current date to print. I am looking for instructions to do this. I've found previous versions that suggest adding a text field and some javascript using the “document will print” feature under “document processing”, but I can’t find accurate/detailed instructions for it to work with Acrobar pro dc. I’m not familiar with scripting.
HI all,I receive the following message after editing an existing PDF.The document could not be saved. The file may be read only, or another user may have it open. Please save the document with a different name or in a different folder.This occurs whenever any edit is made and the document is definitely not being used by anyone else and I do not want to create a new document.Any help would be appreciated.Thanks,John
hi, I'm working on a form with several check boxes. There is a section in particular that I would like it to auto check a box in this way:When Checkbox A, B and C are checked Checkbox D would automatically check and when checkbox D is checked Checkbox A, B and C would also auto check.i found this code online but its only working for ONE box, tried to make adjustments to it but its not working. Any help would be appreciated. Thanks var v = event.target.value;var f = this.getField("Checkboxb");f.value = v;
If my user enters a number that starts with zero, the zero disappears once they click out of the field. I need for the zero to stay. For example, they enter 09876, only 9876 showsThis is the script that I have so far in it. . var desiredLength = 9; // the number of digits the user should enterevent.rc = true;if (event.value && event.value.length!=desiredLength) { app.alert("You must enter exactly " + desiredLength + " digits."); event.rc = false;}
Hi, Can someone please help me , I have 10 fields which are populated with measured data.The data can be positive or negative, but not greater than -10 or +10If the data being measured is put into any of the fields, is less than or = -10 / + 10 then I want to populate another field with "pass"but if the data being put into any of the fields is greater than -10 /+10 then I want to populate the other field with "fail"This is measured data,microns so can be positive or negative.Many thanks
Hi guysI'm trying to force printing with document+comments with a plug-in as I want to replace the print command.If I want to print silently, it's OK thru javascriptIf I show the print dialog, the user may change the setting, my PDDocWillPrintDocInMode notification will reflect that.If the mode is wrong, how do I cancel the whole print process?ThanksChristian
Hello.I'm trying to use OLE Automation for Acrobat Reader in my application on VFP. There are no problems anywhere, but I came across a question that I can not find the answer to: How do I programmatically get Acrobat Reader to enter the "Read Mode (Ctrl-H)" mode?AdobeApp = createObject ('AcroExch.App')AdobeDoc = createObject ('AcroExch.AVDoc')AdobeDoc.open (AdobeFileName, '')AdobeForm = createObject ('AFormAut.App')AdobeFields = AdobeForm.fieldsAdobeApp.ShowAdobeDoc.BringToFront ()? go into Read Mode (Ctrl-H)Thanked in advance for help
Hi guys, I'm currently using the following script for my day // get the date from the "Date1" var d = new Date(this.getField("Date1").value);if (!isNaN(d.getDay())){switch (d.getDay()){case 0: event.value = "Sun";break;case 1: event.value = "Mon";break;case 2: event.value = "Tue";break;case 3: event.value = "Wed";break;case 4: event.value = "Thu";break;case 5: event.value = "Fri";break;case 6: event.value = "Sat";break;default:event.value = ""; }}else{event.value = "";}My problem here is that for exemple.. today the 28th says TUESDAY not Wednesday... I'm extremely confused. Any ideas?
I need to integrate Successfactors with Adobe DC using SDK. Please suggest if this is possible.
Siempre introduzco las mismas secuencias de comandos JavaScript en los documentos PDF de acrobat.Es decir, en cada documento PDF, tengo que añadir los scripts cargar_municipios y validacion_general.Me gustaría poder hacer esto automáticamente, para no tener que hacer siempre lo mismo en todos los formularios.pdf Un saludoMuchas gracias
Trying to deactivate Adobe Acrobat XI Pro on my old computer so I can install it on my new computer. The Adobe instructions say to sign in, go to Help and select Deactivate. When I sign in and go to Help, there is no option on the drop down menu that says deactivate. How do I transfer my existing license to my new computer?Marge Sedlak
I am fairly new to creating forms via Acrobat. This form is a questionnaire meant to be distributed to many different clients. I haven't had any issues creating it, and it looks fine, I'm just encountering one major issue. I'm trying to insert a dropdown (i.e. Business Unit) ... Upon choosing a business unit from the dropdown, I would like that to reveal a new dropdown with options shown based on the user's previous selection. (i.e. Business Unit 1 only shows NY, NJ & PA as the choices, whereas choosing Business Unit 2 would reveal CA, NV & AZ....etc) I believe I have written the correct javascript to execute an action like this, however I do not think I am putting it in the right place or understand where the right place to drop this is. If someone could help walk me through this, and verify that I am headed in the right direction - any help would be MUCH appreciated! Thank you
I am using the following code to check that the percentage total does not exceed or is under 100%. When I reset the form I get the pop-up 8 times, one for each calculation. What do I need to add to stop the app.alert when the form resets and all values are now zero (under 100%)?if (event.value>100) app.alert("The total cannot exceed 100%.");if (event.value<100) app.alert("The total must equal 100%. Please continue entering.");Thank you for your help!DP
Hi, I have a drop down menu and want to link the subjects from it to .pdf attachments in document. Bsically when I'm calling the items in drop down menu it's triggering to open the attached document. I've created the JS code for the single button: this.exportDataObject({ cName: "Doc_1", nLaunch: 2 }), and trying to make the same with drop down menu. Can someone help me with that?
i have one dropdown menu, with 3 values123and one fill text box.now if user click 2 option then cout++fill box +1 +2 +3 . . .e
I'm creating a pdf that will show the same stats for different subcontractors. I would like to have all the subcontractor names in a drop down menu. When a subcontractor's name is chosen, a layer will be turned on that consists of a text field with the sub's stats.All of the different subcontractor text fields will be located in the same place on the pdf, each with it's own layer. So that when a sub is chosen his layer is made visible and all of the rest are made invisible, until their name is chosen on the drop down menu.Can this be done by adding script to the custom validation window under the drop down menu's properties section? If so, does anyone know what that script would be?
I have a form that I need to enter percentages assigned for one to four people, the total cannot exceed 100%. Each field checks the field above it, adds the percentages, and an error message pops up if the total is over 100%.Example 1:Person 1 25% [under 100%, proceed to next field]Person 2 25% [under 100%, proceed to next field]Person 3 25% [under 100%, proceed to next field]Person 4 35% [over 100%, error message "Total cannot exceed 100%"]Example 2:Person 1 25% [under 100%, proceed to next field]Person 2 80% [over 100%
Exit Code: 7Please see specific errors below for troubleshooting. For example, ERROR: DW003, DW006 ...-------------------------------------- Summary -------------------------------------- - 0 fatal error(s), 2 error(s) ----------- Payload: Adobe Acrobat DC 15.10.20056.0 Acrobat DC/Acrobat DC Installer.pkg_15.010.20056 -----------ERROR: DW006: Apple Package failed to install successfully.ERROR: DW003: Third party payload installer Acrobat DC/Acrobat DC Installer.pkg failed with exit code: 1-------------------------------------------------------------------------------------
Hi,For some reason, the dialogue window is appearing too big and users are unable to see all the fields in the dialogue window. My solution was to add a scroll to the dialogue window or reduce the size of the dialogue window? Can you tell me how to do both? I looked in API but it appears to only relate to a scroll for a field box, not the dialogue window.Using Acrobat Adobe X ProThx.Sue
I am needing a process that can automate the Adobe search function and highlight/draw a box around found matching text in an existing PDF. The red boxes in the image are how native Adobe handles it in the installed client. I'd like to have this handled in the background from a web UI triggered process. I am building an application in Oracle Application Express (browser based UI) however am willing to utilize a Javascript or Apache server solution to achieve this solution.
Nel debug di VBA le variabili di AcroExch.App e di AcroExch.AVDoc non sono visibili
Hello Everyone,The code below works perfectly on Adobe Acrobat Pro DC, I'm wondering if there is any way to have this code to work on Adobe Acrobat Reader DC. Any support would be greatly appreciated !var Field1 = this.getField("Field1").value;var Field2 = this.getField("Field2").value;var doc = this.createDataObject({cName: "Your Sequence.txt", cValue: "Please use the sequence from Field1 + " to " + field2});this.exportDataObject({cName: "Your Sequence.txt", nLaunch:2});Kind Regards
I made a PDF form with the email bottom and it's work very well but the problem is after the employee fill the form and send it to my email I get it in my cell iPhone but it's empty so I want to know if I can get it as image. I read about JavaScript but I don't understand this language so I need just the code to put it there. I want when the employee press the paction button it's save it as image after that send it in my email. thank you
Hi,I can't find the download of Adobe 8.1 SDK...I am using the 8.1 3D version, and I have to find its SDK!Thanks
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.