Forum Discussion
SunilDhakad
2 months agoCommunity Member
ExecuteScript its not working after reload/refresh in trigger.js
Hi, We have recently upgrade the storyline latest version (Build 3.92.33293.0) and we seems some changes in javascript. Earlier we had only user.js file to each slide script calling for jump on othe...
SusanDiana
2 months agoCommunity Member
I think the issue because the latest version runs your script inside another function. Which means your variables and functions are scoped to only be available inside that function. A solution to work around this is to create/assign them in the window scope. So something like this:
window.myFunction = function(){
// ... your function
}