Forum Discussion
DorothyStark
12 years agoCommunity Member
exporting variables to be read in a Google docs spreadsheet
I've seen Tom's helpful screencast on how to embed a Google docs form into a Storyline project. However, what I want to do is a little different. I'd like to be able to export the values of about...
SherriSagers-ca
4 years agoCommunity Member
Tracy's links are no longer valid so I'm trying to cobble things together using the YouTube video she links to above. Is there a new "script.src" link we should be using?
- SherriSagers-ca4 years agoCommunity Member
I got it to work! Here's the first JavaScript that needs to be executed at the beginning of the Storyline file:
var head = document.getElementsByTagName("head")[0];
var script = document.createElement('script');
script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js';
script.type = 'text/javascript';
head.appendChild(script);
- BeccaLevan4 years agoCommunity Member
Awesome Sherri! Happy you got this to work, and so kind of you to come back and share it with the community!