Forum Discussion
PaulOConnor-98e
5 years agoCommunity Member
Execute JavaScript trigger not working
Hi
Hopefully someone can help, I’m experiencing some strange behaviour with an execute JavaScript trigger in Storyline 360. If I publish and test the appropriate slide ('details' slide in attached...
darrenheath-4e3
5 years agoCommunity Member
I think the error is in your JS in the 4th slide. There is a missing + the line
var jslmsString = jsM + '/' + jsD + '/' MISSING + HERE jsYYY + ': ' + jsCourseName + ': '+ jsScore+'%';
try this:
var jslmsString = jsM + '/'+ jsD + '/'+ jsYYY + ': ' + jsCourseName + ': ' + jsScore +'%'
;