Forum Discussion
SteveFlowers
13 years agoCommunity Member
Example files: Generating a certificate from Storyline
This example demonstrates how you can take user input and generate a certificate for printing. Any Storyline variable or score can be used to generate the output. The file and file add-ins are both ...
AshleyW
12 years agoCommunity Member
By using this code:
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();
if(dd
document.write(today);
I managed to get the date to appear. Now the problem is, it's appearing instead of the background.
I'm very new to scripts, anyone know if there's a way these two things can live in harmony?