These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Dynamic Stamp in Windows 7

dennisjoven
Registered: Feb 19 2011
Posts: 4
Answered

Hi! I created a dynamic stamp in Acrobat 9, and trying to save it in my personal folder in Windows 7, but I cannot make it work. The Java variable script does not change the user ID, date and time. Can you give me the path where it should be saved in Windows 7? Thanks!

try67
Expert
Registered: Oct 30 2008
Posts: 2398
Accepted Answer
/C/Users/_USERNAME_/AppData/Roaming/Adobe/Acrobat/10.0/Stamps

- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com

dennisjoven
Registered: Feb 19 2011
Posts: 4
Hi! Thanks for your help. However, I do not see this path directory on my c: drive.
gkaiseril
Expert
Registered: Feb 23 2006
Posts: 4307
Have you used the JavaScript debugging console to run the following script:

try {
var userStamp = app.getPath("user","stamps");
} catch(e) {
var userStamp = "User has not defined any custom stamps";
}
console.println(userStamp);

You can replace "stamps" with "root" to see the user's application settings folder. If a stamps folder does not exist for the user, you can create one in the user's root folder.

George Kaiser

try67
Expert
Registered: Oct 30 2008
Posts: 2398
It's possible the folder is hidden. Change the folder options to show hidden files/folders.
Of course, you will need to replace _USERNAME_ with your actual username...

- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com