getting current date

Moderators: Disciple, zlovatt

Post Reply
iyadooz
Posts: 6
Joined: March 16th, 2009, 4:15 am

hi all

im working on this project that need to index each movie i render with the current date ...is there a script i can write to an empty txt source layer to get the current date (day,month,year) automatically ....please help ?? :(
Dan Ebberts
Posts: 320
Joined: June 26th, 2004, 10:01 am
Location: Folsom, CA
Contact:

Some variation of this Source Text expression should get you there:

D = new Date(Date(0));
"" + D.getDate() + "/" + (D.getMonth()+1) + "/" + D.getFullYear()


Dan
Post Reply