Forum Discussion
ChrisPim-7dc640
8 years agoCommunity Member
impossible to set a variable to (blank) using JavaScript from an external source?
I am having problems setting some variables outside of Storline 360 and reading them in so they can be identified.
Boolean variables and number variables work fine.
But it is text variables - pr...
OwenHolt
7 years agoSuper Hero
Have you tried declaring a variable in JavaScript without assigning a value and then setting your SL variable = to the empty JS one? Something like:
var s = new String();
window.GetPlayer().SetVar('C1Q1', s);