The certificate still reads %Name% and %Date% instead of my input.
- I would double check that your variable names in Storyline are in the same case as in the document template ("name" vs. "Name") otherwise you are referencing completely different strings.
%Date% i expected to work automatically.
- Storyline does not have a system variable for date, so there's no reason why it would work automatically.
You can use JavaScript to get the current date. Here's a guide to JavaScript date object:
https://www.w3schools.com/jsref/jsref_obj_date.aspFor example, for the simplest implementation, you would do something like this:
let player = GetPlayer();
let today = new Date();
player.SetVar('Date', today);
Is there a way to customize a loading scene instead of opening a seperate tab with the Cluelabs credentials?
- There is not.