can you find the date using wick editor?
Wick Editor uses JavaScript, so you just need a JavaScript date object.
Try this: create a textbox using the text tool in Wick, and give it the name “dateText”.
Then in your frame’s default script, copy-paste this:
currentDate = new Date();
dateText.setText(currentDate);
           
           
           1 Like
         
         thanks for the info!
           
           
           1 Like
         
         