Create text highlight annotations in multiple colors

Q: How can I quickly highlight various text in different colors? A: By default, select highlight text tool will  highlight text in Yellow. To change the color, you will need to click on the color picker from the toolbar. However, this can be time consuming if you have to highlight text in multiple colors. Instead, we […]

Read More

Sending email with PDF form data file using the submitForm action

Q: How can I send email that includes the form data file using the submitForm action? A: PDF Studio supports using submitForm as a Javascript action to send form data by email. The form data is sent as an attachment. Below is an example showing a button with submitForm action. 1. Create a Push Button 2. Right […]

Read More

Setting all fields in a PDF form to Read-Only using Javascript

Q: Can I set all fields to Read Only using Javascript so that they can’t be modified? A:  YES, PDF Studio supports setting form fields to read only (preventing modification) through JavaScript. Below is an example showing a button with JavaScript action to set all fields within a document to Read only. 1. Create a […]

Read More

Set form fields to the same size

Q:  If I have 2 form fields, how can I set them to the same size? A: You can use PDF Studio alignment tool to adjust the size of form fields. In order to set your form fields to the same size, follow the steps below: Go to Forms -> Create/edit forms Select the form fields that you need to resize […]

Read More

Flatten annotations and form fields when sending a PDF document

Q: When I use the Email function to send a PDF document, can I flatten annotations and form fields on that document without making any changes on the original document? A: Starting in PDF Studio 12, you can automatically flatten annotations and form fields on the PDF you’re sending via email. This can be important when sending PDFs […]

Read More

Sample JavaScript to create a popup menu using app.popUpMenu

Here is sample JavaScript to create a popup menu using the app.popUpMenu method. This sample PDF contains one button and one text field. When user clicks on the button, a popup menu is displayed with 3 options: opt1, opt, opt3. When the user selects an entry in the popup menu, the value is set into […]

Read More

How to make a PDF form non-editable

Q: Is there a way to make an interactive PDF form non-editable and make sure that fields data on the form can not be changed? A: You can make a PDF form non-editable by either using Document Permissions (Method 1 below) or by flattening the form fields (Method 2 below). Method 1: Use Document Security […]

Read More