Skip to content

Instantly share code, notes, and snippets.

@animoplex
Last active June 29, 2020 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save animoplex/827c92bbab54fdadeaf6f3920c280136 to your computer and use it in GitHub Desktop.
Save animoplex/827c92bbab54fdadeaf6f3920c280136 to your computer and use it in GitHub Desktop.
Output Current Date & Time - After Effects Expression by Animoplex
// Output Current Date & Time - Created by Animoplex: www.animoplex.com
// Output the current system date on your computer via a text layer.
// Full Tutorial: https://www.youtube.com/watch?v=I-Acdl_l9G0&t=886s
d = new Date(Date(0));
day = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
date = d.getMonth() + 1 + "/" + d.getDate() + "/" + d.getFullYear();
day[d.getDay()] + ", " + date
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment