Forum Discussion
BastiaanTimmer
10 years agoPartner
Articulate Storyline: Export to Google Drive
PREVIEW | SOURCE
On the Articulate user days in Utrecht (2015), we held a session about exporting Articulate Storyline variables to Google Drive (Spreadsheet). This export is achieved via...
ElyseMarshall
5 years agoCommunity Member
Hi,
I used this method and got it working well when I published for LMS and ran it from my computer. However, I then tried launching it through Scorm cloud and the variables are no longer being added to the google spreadsheet.
Does anyone know why this may be happening ?
- ElyseMarshall5 years agoCommunity Member
I have now fixed this issue.
If anyone is having the same problem, it was that scorm was blocking the import of the JQUERY library.
In this section, try using https for the script url as shown below and it should work.
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.src = 'https//code.jquery.com/jquery-1.11.0.min.js';
script.type = 'text/javascript';
head.appendChild(script)