Unlock the power of Acrobat SDK through our community.
Recently active
I have an adobe form that needs to be signed off by the employee, manager, divisional head and HR and should all be mandatory fields. My problem is that I am unable to make these mandatory for each separate person as they use the form and then submit it to the next person. i.e. employee fills out the forms and is required to sign their name and date (mandatory) before submitting this to their manager, when the manager received the form they are required to sign their name and date (mandatory) before submitting this to the divisional head?
I have a field that populates a date when the form is created. I dont want it to repopulate every time the PDF opens after that.My code:var f = this.getField("ExamDate"); f.value = util.printd("mm/dd/yyyy)", new Date());How do I do the null check?
I have the following in a folder level script in a privileged context:this.exportAsFDF({aFields: ["txtTP.Agent.Broker", "txtTP.Agent.BrokerFullName", "txtTP.Agent.Address", "txtTP.Agent.City", "txtTP.Agent.State", "txtTP.Agent.Zip", "txtTP.Agent.BrokerNo"], cPath: "" + parentPath + agentsFolder + fdfbroker});This works as intended EXCEPT that it is exporting values from several other fields ( examples: "txtTP.Agent.FirstName", "txtTP.Agent.LastName") that are not included in the intended array. These other fields do have the same non-terminal parent "txtTP.Agent" but my understanding is that the array should limit the export to only the named fields. I can work-around this by first resetting the excluded fields, but that shouldn't be necessary. I cannot see that a parameter is missing whose absence is causing these other fields to be included, and would appreciate any advice to correct this.Thank you.
I'm trying to create a fillable form where there are two circle shapes and a line of text next to them - somewhat of a timeline checklist. I'd like my team to be able to change the color of the circles from white to either red, yellow or green - preferably via a drop down. If drop down isn't available, that's fine, but I need another solution BESIDES making color-filled comment shapes. These are checklists that we'll be customizing many times a week so we need to make it as user-friendly as possible. This is a closeup of the template that needs to be a form with editable colors:And this is what it should look like once edited, as a deliverable:
Hi, I am not sure if I am going to able to explain this very clearly. I have 2 dates in a formA request date and a Due date. I want the form to make sure the due date is after the request date, and put an error message if it isn'tAny Ideas?ThanksSally
Hi all,I have been trying to get the 'adobepdfsilent' example to work without any success. When i run it it jams up in the print process routine 'PrinttoAdobePDF'.if i rem out the 'createnowindow' and 'windowstyle properties I see the printer dialog and can click through it but if it's left in silent mode it just stops. I'm assuming it's actually waiting on something. Private Sub PrintToAdobePDF(ByVal InputfilePath As String) 'Prints InputFilePath to the AdobePDF printer. 'Since we just gathered all this info programmatically, 'this function assumes the file is present, that it has an 'associated application and that the current user has print privileges. 'Define properties for the print process Dim pProcInfo As New ProcessStartInfo pProcInfo.FileName = InputfilePath&n
I have a form and one of the text fields is called BPI am tryning to figger out a way to have an alert =, if the BP (Blood Pressure) is >=160/100 an alert will pop up "High Blood Pressure!"and if the blood pressure is <= 90/60 an alert will pop up "Low blood pressure!"please any hlep
I just bought Adobe Acrobat Pro DC, and i can not find the 24 digit serial number. I can only find 2 different 19 digit codes, but it will not accept them in the student redemption? Where can I find the code?
I found a PDF document containing a really complex code (at least from my point of view) where all the fields contains both "OnFocus" and OnBlur" the following action:If(handleEvent!=undefined)handleEvent(event);And the rest of the code is placed on a document level (more or less 15'000 lignes).One part of te code is producing a readable barcode into Acrobat Reader. But I always thought that wasn't possible (grey rectangle on Reader, but readable only with DC).Due to the complexity of the code, I am totally unable to understand how everything works.As only the part regarding the codebarre routine interest me, is there, to your knowledge, an example of code freely available (even pay) able to produce a datamatrix (2d) readable and printable with Reader ?Thanks in advance for your advices.
I was wondering if it is possible to have a Javascript tool panel that will "float" and allow the user to still navigate the pdf? I am wanting this panel to only display on page 2 of my document. I would also love if it could collapse or minimize out of the way. Not sure if it is possible.Any help or guidance would be much appreciated!Here is an example of one of the buttons I would like to have on the floating panel.var ocgSchematicArray = this.getOCGs(this.pageNum);var getButtonName = this.getField("GROUND WIRES");for ( var i=0; i < ocgSchematicArray.length; i++) {if ( ocgSchematicArray.name == "Black (Ground)")if (ocgSchematicArray.state == true){ocgSchematicArray.state = false;getButtonName.buttonSetCaption("GROUND ON");}else if (ocgSchematicArray.state == false){ocgSchematicArray.state = true;getButtonName.buttonSetCaption("GROUND OFF");}}Also I would like to note that this will be delivered to a user online so folder level will not be accessible to me for security reasons.I am
I'm not familiar with coding languages at all, but I'm trying to make a conditional equation on an Acrobat form. This is what I've pieced together by looking at other forums. Could I have someone fix whatever is wrong with it? Please. There are just the 3 values from the "size" field that return one of the 3 values for the "size mod" field.if (Size = "M") { Size Mod = "0";}else if (Size = "L") { Size Mod = "-1";}else if (Size = "S") { Size Mod = "1";}
I am brand new to all of this and I am trying to write a simple script to export the data in a PDF to an XML file.When trying to create a new script all I get is a box that pops up saying GoTo then once I click this it asks for a Line Number and that's as far as it goes. I have read that this should open the JavaScript editor and it does not.Any help would be appreciated. Thank you.
I have created an Action script to place an X in text fields on page 1 if a corresponding check box is ticked which is located on other pages of the document.The pdf file has multiple text fields on page 1 with the name of the text field beginning with C1.In the rest of the document there are multiple check boxes with the name of the check box beginning with C1.There are the same number of text fields and check boxes.If the first check box is ticked, then the first text box on page 1 should then have an X in the field.If the second check box is ticked, then the second text box on page 1 should then have an X in the field etc.I am unsure how to capture the check box as a variable into the text field, if anyone can provide assistance that will be most appreciated.for (var i = 0; i < this.numFields; i++) { var fname = this.getNthFieldName(i); var f = this.getField(fname);if (fname==null) continue;if ( f.type == "checkbox" && fname.substring(0,2) === "C1"
I'm using this script that when opens doc to the first page then automatically goes to the second page. Works fine, but the first page has text on it I would like to be able to read but the doc goes to the second page so fast there isn't enough time to read the text on the first page. What I need help with is how to change this script that would open to the first page (say for 5 seconds) then go to page two? Can someone tell me how to do this? Thanks.Here's the script I'm using and have it in the doc level: if(this.getField("Counter").value>3) {this.getField("Counter").setFocus();}I tried to change the "3" to "5" (or higher) but nothing seems to work.
try67,Many thanks, indeed.And how do I calculate the difference between two dates. For example:Date of admission: 03/25/2010Date of hoe: 02/10/2018I want the text field to appear: xx years, xx months, and xx days
What I am trying to do is check 1 box if radio group 1 is selected as male and the radio group 2 is selected as Yes while checking a different box if radio group 1 is selected as female and radio group 2 is selected as yes. I need to do multiple scripts throughout my pdf for various sets of check boxes. The check boxes are valued as 1 so as to sum up to a total at the bottom of the form.
editing script for a pdf form and ive never done this before. so i got values that were hidden to be visible like my manager wanted, but i need these values to be hidden when only one dropdown item is selected.
I have an invoice with a section that includes a "Tax" field. I have a simple equation in this field that calculates the tax based off the amount listed in the "Total" field. The equation simply reads: "Total * 0.0825"However, I want to be able to select a checkbox called "TaxExempt" that will make the value in the "Tax" field be "0.00". I've read every forum, but can't find specific solution for this problem. Help!
Folks,I have a selection box with the following items to select: Low, Medium and High. I also have a text box where I want the following to appear.When selecting the item "Low" in the check box, the text box should read "Level 1: Contract manager performs Local Investigation"When selecting the "Medium" item in the check box, the text box should read "Level 2: Operational manager conducts research in the contract"When selecting the item "High" in the check box, the text box should read "Level 3: Contract Director / Independent Investigation"Is there a possibility?
I need to create an interactive dialog box that allows the user to select an image to be loaded as an icon into the stamp just before placement. Is this possible? Or can this be accomplished without a dialog box?
The built-in Acrobat toolbar icons have hover effects like this:where the highlight icon turns yellow when you hover over it with the mouse. Is there any way to accomplish this with custom add-on buttons? I didn't see anything in the documentation for app::addToolButton()...
I am trying to create am IMAP Windows Service and attach an event to the OnReceivingDataStream of a email server such as google. This part I have figured out already. The idea behind this is that Adobe Sign has a way to auto email when a document comes in signed. I want to embed hidden fields inside the document that have folder paths and a unique ID so my service knows how to choose which site and what folder to push the signed document to. I saw in the Rest Client API (echo sign) there is a way to pull the form fields off the adobe object. My issue is I have a byte array for a file. I need code to convert that byte array to the adobe sign object so I can get fields off it. I know I can use the rest api and just search for the signed docs; but, my plan is to be able to do this in real time and not have to schedule a search.
Hello All or should I say anyone interested,Being completely new to the use of JavaScript I did some research and located a script I could use for a button in a form I created that basically selects all of the checkboxes within it as a workflow enhancement for the end user. I works beautifully on a PC or Mac within Reader however when the form is opened on a mobile device also within Reader the button does absolutely nothing. Is this a compatibility issue with mobile platforms? Or will the script require some tweaking to work in both environments?See script below:var fn = new Array();fn = ["Power", "Flex Fit Ergo", "Wheel Steering", "Pushing the Cart", "Probe Ports", "USB Ports", "RJ45 Network", "External DVI", "Monitor", "Probe Care", "DVD Burner", "Remote Service", "Insite", "Live Assist", "New Exam", "Entering/Changing", "Search/Create", "Probe/Application", "2D Gain/ Active", "4D/Multi-D", "2D/MM", "Zoom Knob", "Quick Apps", "Trackball Button", "Measure/Caliper", "Layout Button", "
HiI have created a form for producing formal Certificates of Conformity and I need to record each one when it is printed. Is it possible to create an instruction to write certain form field values to an Excel spread sheet register when the document is printed? I've tried digging around the forums for this kind of subject but haven't found anything.Thanks in advanceChris
Hi,I intend to use a form where the affiliation of the therapist or make a visa in a field that is in front of his name. This signature was made through the acrobat adobe pen and not a digital signature. This form is used on a tablet. My problem is that I need to count these signatures. I wanted to know if there is a possibility of summing these signatures in a specific field. I hope you help me.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.