Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
I have exactly the sam problem, and have tried the create form and then turn into a stamp, has anyone had anyluck, i am a Document Controller and need to stamp electronic documents with my own created stamp this is desperate now as the number of electronic documents clearly outweighs the number of paper
Copy link to clipboard
Copied
Hi Adenjo,
While you cannot have interactive elements in a custom stamp "after" it is placed on the PDF, you CAN have a dynamic stamp with fillable elements like text fields, check boxes, etc that you would fill in "before" you place the stamp. A tutorial and downloadable sample "Dynamic Stamp Secrets" is available at acrobatusers.com
http://www.acrobatusers.com/tutorials/2007/02/dynamic_stamp_secrets
When you download that example (place it in your stamps folder) and select one of the stamps a dialog will pop-up that asks you for the information to fill in the stamp. Fill in the dialog, hit OK and the stamp is placed on the PDF with that info ( such as approved, accetped ,etc) in it.
For check boxes and other interactive elements you need to create a custom dialog since a simple text field is all you get with the built-in response boxes in Acrobat. Custom dialogs can be easily created with a plugin for Acrobat "AcroDialogs." Using AcroDialogs you can create a custom dialog with just about all interatcie elements (check boxes, dropdowns, radio buttons, etc).
This setup is used by lots of companies now and people love it (at least the ones we've helped with this solution anyway). Once you've got the stamp file created all you have to do is install it in the Acrobat stamp folder for anyone who needs to use them- create once, use by many.
Hope this helps,
Dimitri
WindJack Solutions
Copy link to clipboard
Copied
Hi Everybody,
I read this post and here are my comments
The Article "Dynamic Stamp Secrets" by Thom Parker, http://www.acrobatusers.com/tutorials/2007/dynamic_stamp_secrets/ was really helpful but you need to read it very carefully to accomplish but you are asking.
Few key points to know about Dynamic Stamps (these were mentioned in many posts by Thom Parker)
Dynamic stamp can accept the user entered information while placing the stamp, b ut once the stamp is placed you can not go back and change anything in the stamp. Your best bet will be to delete the stamp and place a new one with required information. This may be due to the legal reasons or whatever but this is the fact.
Having said that, it doesn’t mean that dynamic stamp has great lot uses. I was able to create dynamic stamps with user input data and checkboxes, radio buttons etc. I created these stamps for Document Control for drawing numbering and approval. If you need more information please let me know.
Copy link to clipboard
Copied
Were you ever able to create a stamp that inserts logos (icons into it)? Thanks!
Copy link to clipboard
Copied
Hi gdifronzo,
Yes, you can include logo images on custom stamps. If the logo is the only thing on the stamp, just Create a new stamp and use the Browse for File button to select the image file with the logo.
Hope this helps,
Dimitri
WindJack Solutions, Inc
Copy link to clipboard
Copied
Thanks for your answer, Dimitri. It's really nice to hear that it can be done.
I'm using the following code...
var cAsk = "Enter Exhibit Number" ;
var cTitle = "Exhibit Number: ";
if(event.source.forReal && (event.source.stampName == "#eNVzyyEc8k0TPW34bdjlxB"))
{
var cMsg = app.response(cAsk, cTitle);
event.value = cMsg;
event.source.source.info.exhibit = cMsg;
var a = this.getField("Sign");
a.buttonImportIcon()
}
The user enters the exhibit number and then should be able to browse for an icon to be shown in the button "SIGN". This works if I have the stamp pdf file open. However, when I close it and try to stamp a file, it does not ask the user to select an icon. It only ask the user for the exhibit number. Any ideas why this is happening and how I can make this work? Even if I have to open the stamp pdf file in the background to make it work.
Copy link to clipboard
Copied
Code in a stamp file operates in an odd context. There are all kinds of restrictions
on what a script can and cannot do. Importing an image into a button
is unfortunately not somthing that can be done. At least not from the stamp script.
However, Acrobat always loads a new copy of the stamp file whenever the stamp is placed. This means that you can write a folder level script that modifies the stamp file and then either call the menu item or place the stamp directly using the "doc.addAnnots()" function.
Thom Parker
The source for PDF Scripting Info
pdfscripting.com
The Acrobat JavaScript Reference, Use it Early and Often
http://www.adobe.com/devnet/acrobat/javascript.html
Then most important JavaScript Development tool in Acrobat
The Console Window (Video tutorial)
The Console Window(article)
Copy link to clipboard
Copied
Thanks for your response! I am afraid creating a folder level script is beyond my knowledge but certainly will look into it and appreciate your help.
Copy link to clipboard
Copied
can someone give an example of the code used to put in the checkbox function? It seems like there are a lot of people that would benefit from this information. I know that skumar88ca mentioned that he had done it before. Could you please enlighten us a little more.
Copy link to clipboard
Copied
You can only do it if you fill in the check-box BEFORE the stamp is applied.
Afterwards, it's no longer possible.
Copy link to clipboard
Copied
yeah thats perfectly fine.. i just need to know how to make it do that. if you need to discuss further,
email to aaaah_bees (at) hotmail.com
Copy link to clipboard
Copied
Hi regularflavor,
Custom dynamic stamps have been coming up more and more lately- people in many industries want fields, checkboxes, pulldowns, company logos, etc to replace rubber ink stamps. Creating them is not a trivial task and requires some basic understanding of how stamps work in Acrobat. If you are interested in learning how to develop custom dynamic stamps, you may want to consider a membership to www.pdfscripting.com We've been adding lots of content on stamps over the last couple months- sample stamp files, a full series of articles with step by step instructions, and a new training video on how to copy dynamic features between stamp files.
http://www.pdfscripting.com/public/department53.cfm
It's not free, but is the most comprehensive set of content available on custom dynamic stamps for PDFs.
Dimitri
WindJack Solutions