Forum Discussion
VanessaWylie
9 years agoCommunity Member
How to insert current date variable into a "customised certificate slide".
Hi there,
I have created a certificate looking slide at the end of my course. I have added in variables for the learners name, their score achieved, I am just missing the date variable to be popul...
Jürgen_Schoene_
Community Member
no - nothing special for Review 360
here is a working example (with modern Javascript)
player = GetPlayer();
var date = new Intl.DateTimeFormat('en-us', {
year: "numeric",
month: "long",
day: "numeric"
}).format();
player.SetVar("SystemDate", date);
result:
https://360.articulate.com/review/content/6166e558-462b-4a16-a506-0ecb1d507221/review
SammSchmidt
2 years agoCommunity Member
thanks got it working!