Forum Discussion
GatikDev
30 days agoCommunity Member
Issue with Web Object Data in Storyline - Need Help Saving Input Values
Hi everyone, I'm working on a small storyline project that involves some complex calculation, which I've built using JavaScript and HTML. I've embedded these as web objects within Storyline. The...
AlexMilyaev-f86
30 days agoCommunity Member
To pass variable values from the web object to Storyline, use this code:
window.parent.GetPlayer().SetVar("nexttrigger", nexttrigger);
To pass variables from Storyline to the web object, use this code:
nexttrigger = window.parent.GetPlayer().GetVar("nexttrigger");
Change 'nexttrigger' to your variable.