Try these Two-line Dynamic Exhibit Stamps

I received a lot of positive correspondence after I created and posted a set of Dynamic Exhibit Stamps in my blog article Add Dynamic Exhibit Stamps in Acrobat using a free stamp set.

If you followed the instructions in the article, a new, dynamic stamp was installed in the Comment and Markup toolbar.

When you use the stamp, Acrobat . . .

  1. Asks you for the case number:
  2. Ask for Exhibit Number dialog
  3. Stamps it on the document
    Stamp on the document

A number of lawyers pointed out that they need to stamp more than just the exhibit number.

David Masters, author of the book “The Lawyers Guide to Adobe Acrobat“, emailed me this:

In Colorado, our courts expect exhibit stickers to indicate Plaintiff’s or Defendant’s and have the case number on them.

The job then was to create a dynamic stamp which asked for two lines of input. More importantly, the stamp should be able to be customized.

Mission accomplished and delivered in this blog article!

Once applied, a stamp looks like this:

Example of two-line exhibit stamp

Read on for:

Credits and How it Works

Many thanks to JavaScript guru Karl Heinz Kremer who provided the original sample code and posted it to his blog. I added some additional stamp variations and renamed the stamps so that you can use these stamps along with my original set.

One great thing about Acrobat is that you can add functionality using the JavaScript scripting language. Adobe publishes a free Acrobat JavaScripting guide if you want to geek out yourself!

Download the File

ExhibitandCase.pdf (97K PDF)

Installation

You must install the file in order for it to work. Here’s how:

  1. Quit Acrobat
  2. Place this file in the Acrobat Stamps Folder
  3. Restart Acrobat

Stamp Folder Locations for Acrobat 9
You will need to copy the stamp file into the appropriate folder on your computer. Below are the locations for Acrobat 9. The stamps should work with Acrobat 8. The installation locations for Acrobat 8 will be similar, but you’ll need to figure that out on your own.

Mac OSX
/Users/USERNAME/Library/Application Support/Adobe/Acrobat/9.0_x86/Stamps

WinXP
C:\Documents and Settings\USERNAME\Application Data\Adobe\Acrobat\9.0\Stamps
_
Win Vista_
C:\Users\USERNAME\AppData\Roaming\Adobe\Acrobat\9.0\Stamps

Using the Dynamic Two-line Exhibit Stamps

  1. Choose View> Toolbars> Comment and Markup
  2. Click the Stamp Tool
  3. Click the Stamp tool on the Comment and markup toolbar
  4. Choose the Exhibit Stamp Category
    New stamps that are added
Note: If you did not install my original exhibit stamp file from my last blog article, you won’t see the first two options. Check out my original post if you want them.Three Kinds of Stamps I created three new two-field stamps: 1) Black text, clear background 2) Black text, solid white background 3) Blue text, clear background
  1. Choose a stamp and click to place it on the document
  2. A window opens. Type in some text in the fields:
  3. Fill in this window with case and exhibit number info
Tip: Keep the Case Information text on the clipboard and paste it into the stamp window.
  1. The stamp will be placed on the document.
  2. Exmaple of 2-line stamp

Customizing the Stamp

The instructions below are for Acrobat geeks. If you are pretty good with forms and not scared by a little bit of code, you’ll be OK.

How does this thing work?

The stamp file (ExhibitandCase.pdf ) is a four page PDF. The first page includes some instructions. The following three pages have some “special sauce”:

One of the pages of the PDF looks like this:


http://blogs.adobe.com/acrolaw/ExhibitandCase.pdf

Making a change in the Stamp

Using the directions below, you can make some minor changes to the existing stamps. I’ll also tell you how you can create additional stamps and add them to the set. Make a backup copy of the stamp file (ExhibitandCase.pdf ) first.

These instructions are for Acrobat 9.

  1. Open the ExhibitandCase.pdf you copied into your Acrobat stamps folder.
  2. Click the Forms button and choose Add or Edit Fields.
  3. Add or Edit Fields
  4. Acrobat moves to Form Edit mode. The Fields panel will open on the left side of the window:
  5. Fields Panel
  6. The Fields panel lists all the form fields in the document.

Changing a Border and Background

The border_element field is a simple field with a border that provides the background for the stamp. Here’s how to change it.

  1. Open the ExhibitandCase.pdf you copied into your Acrobat stamps folder.
  2. Click the Forms button and choose Add or Edit Fields.
  3. Select one of the border_element fields from the Fields panel
  4. Right-click and choose Properties
  5. Field Properties
  6. The Field Properties window Opens.
    Click on the Appearance Tab.
  7. Text Field Properties
    You can easily change the color of the border, change the fill, or even pick a wacky border.
  8. Save the file.
  9. Quit Acrobat and then restart to see your changes.

Changing the Font and Style for the Case Number and Exhibit Number

The CaseNumField and ExhibitNumField fields can be adjusted to change the typeface appearance of the Case Number and Exhibit Number of the stamp.

  1. Open the ExhibitandCase.pdf you copied into your Acrobat stamps folder.
  2. Click the Forms button and choose Add or Edit Fields.
  3. Select any of the CaseNumField and ExhibitNumField fields from the Fields panel.
  4. Right-click and choose Properties.
  5. Click on the Appearance tab
  6. Field Options
    You can change the font, font size and font color. If you have to have purple exhibit numbers, you can!
  7. Save the file.
  8. Quit Acrobat and then restart to see your changes.

Changing the Label on the Exhibit Stamp

The Stamp labels are generated by the JavaScript which is attached to the CaseNumField. The default labels are “Case” and “Exhibit”. You can change the default labels by editing the script.

  1. Open the ExhibitandCase.pdf you copied into your Acrobat stamps folder.
  2. Click the Forms button and choose Add or Edit Fields
  3. In the fields panel, select one of the CaseNumField ‘s.
  4. Right-click and choose Properties.
    A) Click the Calculate tab
    B) Click the Edit… button
  5. Calculate Tab of field properties
  6. The JavaScript Editor window opens.
    Click the Go to . . . button
  7. Click the Go To button
  8. Enter 59 in the dialog box and click OK Enter line 59 to go to it
  9. The Case label line is highlighted. Change the word Case to a the different text you would like for the label. .
  10. The line to change. Orange text is the stuff to change.
Note: The \n is a line break. Be careful not to delete any quotation marks or the script won’t work.
  1. Click the Go to . . . button again and go to line 62.
  2. Change the Exhibit label to the text of your choice.
  3. Click OK.
  4. Click Close.
  5. Save the file.
  6. Quit Acrobat and then restart to see your changes.