Ask a Question related to Adobe Indesign Windows, Design and Development.
-
Dane_Thomas@adobeforums.com #1
Short Date Stamp - Solution (JS CODE)
I have been wanting a datestamp code for some time in InDesign.
I found a post on this forum that gave me a long date (while this isn't automatic, it allows you to select a insert point and then double click on the script from the pallet).
The code that was previously posted gave a long date format ie.Wednesday, June 9 2004
the code for this (for reference is):
//DESCRIPTION: Insert date at insertion point.
today = new Date();
myDateString = today.toLocaleDateString();
myParts = myDateString.split(" 0");
if (myParts.length != 1) {
myDateString = myParts[0] + " " + myParts[1];
}
app.selection[0].contents = myDateString;
//End Code
I wanted a short date format so I can up with this:
//DESCRIPTION: Insert date at insertion point.
today = new Date();
month = today.getMonth()+1;
year = today.getYear();
day = today.getDate();
if(day<10) day = "0" + day; if(month<10) month= "0" + month ; if(year<1000) year+=1900; app.selection[0].contents = (month + "/" + day + "/" + (year+"").substring(2,4)); //End Code
Hope this helps some people.
Dane_Thomas@adobeforums.com Guest
-
Date and Time stamp on photo: how to remove
I took some pictures in Europe this summer with my Coolpix 3100 and for about 20 of them had the date and time stamp turned on (printed in Orange).... -
Time/Date Stamp on Note
Is there a way to turn off the time/date stamp on the Notes feature in Acrobat 5.0? -
Please explain this very short bit of code for me?
Simple question. I don't understand what this code is saying, and can't find anything like it at PHP.net I'll admit I haven't looked really hard. ... -
Best Way to Remove/Blend Date Stamp on Picture?
I have some pics that have the camera's date and timestamp on them (in red in the lower right hand corner). What is the best way to remove these... -
Date and Time stamp
Without knowing what code/expressions/setup you're using, I would guess that the references on the Win 95 PCs are missing some library. Open up...



Reply With Quote

