Forum Discussion
OwenHolt
4 years agoSuper Hero
Passing Variable Data Between Storyline Blocks in Rise (a guide)
Did you know that you can use the computer's local storage to pass data from one Storyline block to another one within the same Rise course? Well you can and all it takes is a few simple lines of Ja...
OwenHolt
Super Hero
I haven't taken time to fully debug but one thing I noticed is the use of spaces in your JavaScript before the open parenthesis. This will break your code.
For example: var name = player.GetVar ("TextEntry") ;
Should be: var name = player.GetVar("TextEntry");
Try eliminating all of the extra spaces in your code and test it again.
LindsayMaisel
3 years agoCommunity Member
Owen, thanks for sharing this is awesome. Didn't even know this was possible.