Hello, I am trying to write a script that will be executed when document is printed. This script has to say something like printed this on from . Is there a simple way to achieve this? Users will have readers only on their machine.
thanks
Kb
Hello, I am trying to write a script that will be executed when document is printed. This script has to say something like printed this on from . Is there a simple way to achieve this? Users will have readers only on their machine.
thanks
Kb
Type the following code:
var msg = "Printed this form."
app.alert(msg);
Note that what you see in quotes can be edited to reflect with the message you want to display.
When a user prints your form an application alert dialog box opens reporting the message.
ted
The author of numerous books on Acrobat, Photoshop, Illustrator and the Adobe Creative Suite, and an international speaker on Adobe Acrobat, Ted Padova is a well-known PDF guru.