Skip to main content
Participant
April 5, 2020
Answered

dynamically fielded time an date

  • April 5, 2020
  • 2 replies
  • 7262 views

hey you can make a text box / filld
that automatically update the date and time for example every time you save
so you can see in print what time the file is updating
second best is one that just updates even when loading the file

This topic has been closed for replies.
Correct answer Mario Arizmendi

Her yo can find a script to do that

http://fashionclassroom.com/blog/illustrator-script-to-add-a-date-and-time-to-your-file

However, for the more automated and unattended way I have used for very long years, a plugin called Tag72a which works so well, just save your file, and its done, not too expensive.

Here you can find it 

https://rj-graffix.com/product/tag72a-plugin/

 

 

2 replies

Mario Arizmendi
Mario ArizmendiCorrect answer
Legend
April 22, 2020

Her yo can find a script to do that

http://fashionclassroom.com/blog/illustrator-script-to-add-a-date-and-time-to-your-file

However, for the more automated and unattended way I have used for very long years, a plugin called Tag72a which works so well, just save your file, and its done, not too expensive.

Here you can find it 

https://rj-graffix.com/product/tag72a-plugin/

 

 

Participating Frequently
February 5, 2023

do you have a script to change the date formatting from Mon-Day-Year to MM/DD/YY?

femkeblanco
Legend
February 5, 2023
var date1 = "Mon-Day-Year";
var temp = date1.split("-");
date2 = temp[1] + "/" + temp[0] + "/" + temp[2];
alert(date2);
Ten A
Community Expert
Community Expert
April 6, 2020

If you want to manage event-triggered action, you need to make a plugin and CEP extensions.
However, It is possible to create a script that saves or prints after creating a time stamp.

TheBondenAuthor
Participant
April 22, 2020
thanks but how do you do
know well that you have to make a script but where then and it is not already there