Forum Discussion
GatikDev
2 years 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
2 years 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.
Related Content
- 11 months ago
- 10 years ago
- 2 years ago