Last active
June 29, 2020 17:10
-
-
Save animoplex/827c92bbab54fdadeaf6f3920c280136 to your computer and use it in GitHub Desktop.
Output Current Date & Time - After Effects Expression by Animoplex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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